123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- <template>
- <view>
- <sub-tabnav :tabs="tabs" @change="changeIndex" :selectIndex="selectIndex" :scrollTop="scrollTop"></sub-tabnav>
- <!-- #ifdef MP-WEIXIN -->
- <view class="" style="background: #ffffff;">
- <uni-search-bar @confirm="search" :focus="false" placeholder="请输入搜索内容" v-model="searchValue" @blur="blur" @focus="focus" @input="input"
- @cancel="cancel" @clear="clear">
- </uni-search-bar>
- </view>
- <!-- #endif -->
- <view v-if="selectIndex==0" class="mt15" style="margin:30upx 30upx 0 30upx;box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.04);">
- <home-banner :banners="banners"></home-banner>
- </view>
-
- <sub-tabvs class="pt5" v-if="selectIndex==1 && typetab[1]" :tabs="typetab" @change="changetype" :selectIndex="selecttype" :scrollTop="scrollTop"></sub-tabvs>
- <sub-tabvs class="pt5" v-if="selectIndex==1 && addddtab[1]" :tabs="addddtab" @change="changeadddd" :selectIndex="selectadddd" :scrollTop="scrollTop"></sub-tabvs>
- <sub-tabvs class="pt5" v-if="selectIndex==1 && yeartab[1]" :tabs="yeartab" @change="changeyear" :selectIndex="selectyear" :scrollTop="scrollTop"></sub-tabvs>
-
- <sub-tabvs class="pt5" v-if="selectIndex==2 && type2tab[1]" :tabs="type2tab" @change="changetype2" :selectIndex="selecttype2" :scrollTop="scrollTop"></sub-tabvs>
- <sub-tabvs class="pt5" v-if="selectIndex==3 && type3tab[1]" :tabs="type3tab" @change="changetype3" :selectIndex="selecttype3" :scrollTop="scrollTop"></sub-tabvs>
- <sub-tabvs class="pt5" v-if="selectIndex==4 && type4tab[1]" :tabs="type4tab" @change="changetype4" :selectIndex="selecttype4" :scrollTop="scrollTop"></sub-tabvs>
- <view class="pd20_15">
- <block v-for="(value,key) in listData" :key="key">
- <view class="box pd16_15 flex alcenter mb16" style="position: relative;" @click="detail(value.id,value.lx)">
- <image mode="aspectFill" class="tuan-product-l" :src="value.img"></image>
- <view class="btn-mini" style="position: absolute; top: 40upx; left: 280upx; border-radius: 10upx;font-size: 18upx;width: 60upx; height: 36upx;" :style="getBtnStyle">{{value.lxname}}</view>
- <view class="tuan-product-r pl15">
- <view class="ft14 ftw600 cl-main text-over2">{{value.name}}</view>
- <view class="mt16">
- <text class="ft12 cl-orange">会员价</text>
- <text class="ft12 cl-orange">¥</text>
- <text class="ft16 cl-orange ftw600">{{value.vipprice}}</text>
- <text class="ml15 ft12 cl-notice text-line">¥{{value.price}}</text>
- </view>
- <view class="mt16 flex space alcenter">
- <view class="ft12 cl-notice">{{value.updatetime}}</view>
- </view>
- </view>
- </view>
- </block>
- <uni-load-more :status="status" :content-text="contentText" />
- <!-- <uni-pagination title="" @change="onPageChange" v-if="total>pageSize" show-icon="true" :pageSize="pageSize" :total="total" current="1"></uni-pagination> -->
- </view>
-
- <!-- <dialog-login v-if="showLogin" @loginYes="loginYes" @closed="showLogin = false"></dialog-login> -->
- <!-- <com-footer model="tuan"></com-footer> -->
-
- </view>
- </template>
- <script>
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- export default {
- components: {
- uniLoadMore
- },
- data(){
- return {
- banners:[],
- vipLevel:0,
- isLogin:true,
- showLogin:false,
- datasa:[],
- dataconfig:[],
- searchValue:'',
-
- tabs:[
- {name:'全部'},
- {name:'视频'},
- // {name:'音频'},
- // {name:'小说'},
- // {name:'壁纸'},
- ],
- selectIndex:0,
- scrollTop:0,
-
- type2tab:[],
- selecttype2:0,
- type2id:'',
-
- type3tab:[],
- selecttype3:0,
- type3id:'',
-
- type4tab:[],
- selecttype4:0,
- type4id:'',
-
- typetab:[],
- selecttype:0,
- typeid:'',
-
- addddtab:[],
- selectadddd:0,
- addddid:'',
-
- yeartab:[],
- selectyear:0,
- yearid:'',
-
- type:'',
- keytext:'',
- listData: [],
- total:0,
- pageSize:10,
- last_id: 0,
- reload: true,
- status: 'more',
- contentText: {
- contentdown: '上拉加载更多',
- contentrefresh: '加载中',
- contentnomore: '没有数据了'
- }
- }
- },
- onLoad(e){
- //console.log(111)
- if(e.selectIndex){
- this.selectIndex=e.selectIndex*1
- }
- this.status = 'more';
- this.getList();
- this.banners=uni.getStorageSync("config").banner
- },
- onPageScroll(e){
- this.scrollTop = e.scrollTop;
- },
- onReachBottom() {
- this.status = 'more';
- this.getList();
- },
- //监听搜索框文本变化
- onNavigationBarSearchInputChanged(e) {
- let text = e.text;
- if(text){
- this.keytext=text;
- }
- console.log(text)
- },
- //监听点击搜索按钮事件
- onNavigationBarSearchInputConfirmed(e) {
- // #ifdef APP-PLUS
- plus.key.hideSoftKeybord();
- // #endif
- var this_=this
- let text = e.text;
- if (!text) {
- uni.showModal({
- title: '',
- content:"请输入搜索内容",
- showCancel: false,
- confirmText: "确定",
- confirmColor:"#e19503",
- success: function (res) {
- this_.keytext='';
- this_.getList(0)
- }
- });
- return;
- } else {
- this.keytext=text;
- this.listData=[];
- this.last_id=0;
- this.type='';
- this.getList(0)
- }
-
- },
- methods:{
- detail(id,lx){
- console.log(lx);
- if(lx==1){
- var fxpid=1
- if(uni.getStorageSync("userinfo")){
- fxpid=uni.getStorageSync("userinfo").id
- }
- uni.navigateTo({
- url:'/pages/client/tuan/detail?id='+id+'&fxpid='+fxpid
- })
- }else if(lx==2){
- uni.navigateTo({
- url:'/pages/client/tuan/info?id='+id
- })
- }else if(lx==3){
- uni.navigateTo({
- url:'/pages/client/tuan/info?id='+id
- })
- }else if(lx==4){
- uni.navigateTo({
- url:'/pages/client/tuan/infotp?id='+id
- })
- }else{
- uni.navigateTo({
- url:'/pages/client/tuan/list?id='+id
- })
- }
- },
- onPageChange(e) {
- this.last_id=0
- this.reload=true
- this.getList()
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 100
- });
- },
- getList() {
- let data = {
- //column: 'id,post_id,title,author_name,cover,published_at' //需要的字段名
- };
- var limit=10;
- if (this.last_id>0) {
- //说明已有数据,目前处于上拉加载
- this.status = 'loading';
- data.offset = this.last_id*limit;
- data._ = new Date().getTime() + '';
- }
- data.limit=limit
-
- if(this.selectIndex){
- data.lx=this.selectIndex
- }
- if(this.typeid && this.selectIndex==1){
- data.typeid=this.typeid
- }
- if(this.addddid && this.selectIndex==1){
- data.addddid=this.addddid
- }
- if(this.yearid && this.selectIndex==1){
- data.yearid=this.yearid
- }
- if(this.type2id && this.selectIndex==2){
- data.typeid=this.type2id
- }
- if(this.type3id && this.selectIndex==3){
- data.typeid=this.type3id
- }
- if(this.type4id && this.selectIndex==4){
- data.typeid=this.type4id
- }
- if(this.keytext){
- data.keytext=this.keytext
- }
- uni.request({
- url: this.configs.webUrl+'/api/video/lists',
- data: data,
- success: data => {
- //console.log(data.data)
-
- this.yeartab=data.data.typedata.year
- this.addddtab=data.data.typedata.adddd
- this.typetab=data.data.typedata.type
- this.type2tab=data.data.typedata.type2
- this.type3tab=data.data.typedata.type3
- this.type4tab=data.data.typedata.type4
-
- if (data.data.total>0) {
- let list = data.data.rows;
- this.listData = this.reload ? list : this.listData.concat(list);
- this.reload = false;
- this.last_id = this.last_id+1;
- if(data.data.total<this.last_id*limit){
- this.status = '';
- }
- }else{
- this.listData=[];
- this.contentText.contentdown='没有数据'
- this.status=''
-
- }
- },
- fail: (data, code) => {
- //console.log('fail' + JSON.stringify(data));
- }
- });
- },
- changeIndex(index){
- this.selectIndex = index;
- this.type=this.tabs[index].name
- this.getdata()
- },
- changetype(index){
- this.selecttype = index;
- this.typeid=this.typetab[index].id
- this.getdata()
- },
- changeadddd(index){
- this.selectadddd = index;
- this.addddid=this.addddtab[index].id
- this.getdata()
- },
- changeyear(index){
- this.selectyear = index;
- this.yearid=this.yeartab[index].id
- this.getdata()
- },
-
- changetype2(index){
- this.selecttype2 = index;
- this.type2id=this.type2tab[index].id
- this.getdata()
- },
- changetype3(index){
- this.selecttype3 = index;
- this.type3id=this.type3tab[index].id
- this.getdata()
- },
- changetype4(index){
- this.selecttype4 = index;
- this.type4id=this.type4tab[index].id
- this.getdata()
- },
- getdata(){
- this.last_id=0
- this.reload=true
- this.getList()
- },
- loginYes(){
-
- },
- mlinkTo(e){
- if(this.isLogin == true){
- let link = e.currentTarget.dataset.link;
- }else{
- this.showLogin = true;
- }
- },
- search(res) {
- this.listData=[];
- this.last_id=0;
- this.keytext=res.value;
- this.type='';
- this.getList(0)
- },
-
- clear(res) {
-
- },
- input(res) {
- console.log('----input:', res)
- },
- blur(res) {
- // this.listData=[];
- // this.last_id=0;
- // this.keytext=res.value;
- // this.type='';
- // this.getList(0)
- //res.value
- },
- focus(e) {
- },
- cancel(res) {
- this.keytext='';
- this.type='';
- this.getList(0)
- }
- }
- }
- </script>
- <style>
- .user-not-vip{
- width: 100%;
- height: 80rpx;
- background: #FDF6EC;
- border-radius: 40rpx;
- border: 2rpx solid #EFC381;
- text-align: center;
- line-height: 76rpx;
- font-size: 24rpx;
- color:#000000;
- font-weight: bold;
- }
-
- .tuan-product-l{
- width: 320rpx;
- height: 240rpx;
- border-radius: 16rpx;
- background: #F2F2F2;
- }
- .tuan-product-r{
- width: calc(100% - 320rpx);
- }
- .search-result {
- padding-top: 10px;
- padding-bottom: 20px;
- text-align: center;
- }
-
- .search-result-text {
- text-align: center;
- font-size: 14px;
- color:#666;
- }
-
- .example-body {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- padding: 0px;
- }
-
- .uni-mt-10 {
- margin-top: 10px;
- }
- </style>
|