123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <template>
- <view class="video-pagesCons">
- <view class="tab-body">
- <view>
- <u-tabs-swiper ref="uTabs" :list="tabList" :offset="[5,40]" bar-width='100' active-color="#1283d4" name="dispName" :current="current" @change="tabsChange" :is-scroll="false"
- swiperWidth="750"></u-tabs-swiper>
- </view>
- <swiper class="check-list" :current="swiperCurrent" @transition="transition" @change="swiperChange" @animationfinish="animationfinish">
- <swiper-item class="swiper-item" style="height: 100%;width: 100%;overflow: hidden;" v-for="(tabs, indexs) in tabList" :key="indexs">
- <scroll-view scroll-y style="height: 100%;width: 100%;overflow: auto;" @scrolltolower="onreachBottom">
- <view
- class="check-order-list"
- v-for="(item,index) in list"
- :key="item.id"
- @click="viewRow(item)"
- >
- <view class="video-item">
- <view>
- <u-image v-if="!item.showVideo" :src="item.imageSet[0]" height="200px" width="100%"></u-image>
- <video v-else autoplay :src="item.content" style="width: 100%;height: 200px;" controls></video>
- </view>
- <view>{{item.titile}}</view>
- </view>
- </view>
- <view style="padding: 20upx;">
- <u-empty :src="`/static/nodata.png`" icon-size="180" :text="noDataText" img-width="120" v-if="list.length==0 && status!='loading'" mode="list"></u-empty>
- <u-loadmore v-if="(total>=list.length&&list.length)||status=='loading'" :status="status" />
- </view>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- <u-tabbar :list="vuex_tabBarList" :before-switch="beforeSwitch" :mid-button="false"></u-tabbar>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations,
- } from 'vuex'
- import { getVideoList } from "@/api/video.js"
- import { openWebView } from "@/utils/index.js"
- export default {
- data() {
- return {
- status: 'loading',
- noDataText: '暂无数据',
- current: 0,
- swiperCurrent: 0,
-
- pageNo: 1,
- pageSize: 10,
- list: [],
- total: 0,
- }
- },
- computed: {
- ...mapState(['hasLogin','vuex_vinScanNums','vuex_scanMaxNums','vuex_tabBarList','vuex_videoTypeList']),
- userInfo(){
- return this.$store.state.vuex_userInfo
- },
- tabList(){
- return this.$store.state.vuex_videoTypeList
- }
- },
- onLoad() {
- this.pageInit()
- },
- onHide() {
- this.list.map(item => {
- item.showVideo = false
- })
- },
- methods: {
- pageInit(){
- this.total = 0
- this.pageNo = 1
- this.getRow()
- },
-
- tabsChange(index) {
- this.swiperCurrent = index;
- },
- swiperChange(event){
- console.log(event.detail)
- this.list = []
- this.status = "loading"
- },
-
- transition(e) {
- let dx = e.detail.dx;
- this.$refs.uTabs.setDx(dx);
- },
-
-
- animationfinish(e) {
- let current = e.detail.current;
- if(current != this.current){
- this.$refs.uTabs.setFinishCurrent(current);
- this.swiperCurrent = current;
- this.current = current;
- this.pageInit()
- }
- },
-
- onreachBottom() {
- console.log(this.list.length, this.total)
- if(this.list.length < this.total){
- this.pageNo += 1
- this.getRow()
- }else{
- this.status = "nomore"
- }
- },
-
- getRow (pageNo) {
- let _this = this
- if (pageNo) {
- this.pageNo = pageNo
- }
- let params = {
- pageNo: this.pageNo,
- pageSize: this.pageSize,
- }
- params.category = this.tabList ? this.tabList[this.swiperCurrent].code : ''
- this.status = "loading"
- getVideoList(params).then(res => {
- if (res.code == 200 || res.status == 204 || res.status == 200) {
- const list = res.data.list || []
- list.map(item => {
- item.showVideo = false
- })
- if(_this.pageNo>1){
- _this.list = _this.list.concat(list)
- }else{
- _this.list = list
- }
- _this.total = res.data.count || 0
- } else {
- _this.list = []
- _this.total = 0
- _this.noDataText = res.message
- }
- _this.status = _this.total>=_this.list.length ? "nomore" : 'loadmore'
- })
- },
-
- viewRow(item){
- if(item.contentType == 'VIDEO'){
- item.showVideo = true
- }else{
- openWebView({url:item.content})
- }
- },
-
- beforeSwitch(index){
- console.log(index)
- if(index==1){
- this.openCamera()
- }else{
- return true
- }
- },
-
- openCamera(){
- if(this.hasLogin){
- if(this.userInfo.sysUserFlag == '0'){
- if(this.vuex_vinScanNums < this.vuex_scanMaxNums){
- uni.navigateTo({
- url: "/pages/scan-frame/scan-frame"
- })
- }else{
- uni.showModal({
- title: '提示',
- content: '个人用户扫描VIN仅限10次,您的次数已用完!',
- confirmText: '好的',
- showCancel: false,
- success(res) {}
- })
- }
- }else{
- uni.navigateTo({
- url: "/pages/scan-frame/scan-frame"
- })
- }
- }else{
- uni.navigateTo({
- url: '/pages/login/login'
- })
- }
- },
- }
- }
- </script>
- <style lang="less">
- page{
- height: 100vh;
- }
- .video-pagesCons{
- height: 100%;
- display: flex;
- flex-direction: column;
- .tab-body{
- .check-list{
- height: calc(100vh - 44px);
- }
- .check-order-list{
- background: #ffffff;
- padding: 10upx 20upx;
- margin: 25upx;
- border-radius: 30upx;
- box-shadow: 1px 1px 3px #EEEEEE;
- .video-item{
- > view{
- &:first-child{
- padding-top: 20rpx;
- }
- &:last-child{
- text-align: center;
- font-size: 36rpx;
- padding: 20rpx;
- }
- }
- }
- }
- }
- }
- </style>
|