123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- <template>
- <view class="shelf-analyse-content">
- <view class="checkbox-price">
- <u-checkbox-group placement="row" :size="24">
- <u-checkbox v-model="item.checked" activeColor="rgb(4, 133, 246)" v-for="(item,index) in tabList" :key="index" :name="item.val">{{item.name}}</u-checkbox>
- </u-checkbox-group>
- <view class="search" @click="showModal=true">
- <text>筛选</text> <u-icon name="arrow-down"></u-icon>
- </view>
- </view>
- <scroll-view class="product-list" scroll-y>
- <view class="st-detailList-main">
- <view class="st-detailList-main-item" v-for="(item, index) in listData" :key="item.id" @click="toViewDetail(item)">
- <view class="st-detailList-item-con flex align_center">
- <view class="pimgs">
- <u-image :src="item.icon?item.icon:`../../static/${theme}/def_img@2x.png`" width="100" height="100" border-radius="10"></u-image>
- </view>
- <view class="flex_1 pimgs_right">
- <view class="flex align_center justify_between">
- <view>
- {{item.vinCode}}
- </view>
- <view class="font_13">
- {{item.createDate}}
- </view>
- </view>
- <view class="padding_3">{{item.modelInfo || '--'}} </view>
- </view>
- </view>
- <view class="price-all flex" v-if="selPriceShow">
- <view class="price-item" v-if="priceList[0].checked">
- <view>空调滤清器</view>
- <text class="green">有适配</text>
- </view>
- <view class="price-item" v-if="priceList[1].checked">
- <view>空气滤清器</view>
- <text class="red">无适配</text>
- </view>
- <view class="price-item" v-if="priceList[2].checked">
- <view>机油滤清器</view>
- <text>--</text>
- </view>
- </view>
- </view>
- <u-empty v-if="listData.length == 0 &&status!='loading'" :text="noDataText" mode="list" ></u-empty>
- <view style="padding-bottom: 20upx;">
- <u-loadmore v-if="totalNum>listData.length || status=='loading'" :status="status" />
- </view>
- </view>
- </scroll-view>
- <!-- 搜索弹窗 -->
- <search :showModal="showModal" @refresh="refreshList" @close="showModal=false"/>
- <!-- vin 详情 -->
- <div class="cpb_cart-mask" v-if="showCart" @click="showCart=false">
- <div class="cpb_cart-box" @click.stop="showCart=true">
- <div class="cpb_close flex align-center justify_center" @click.stop="showCart=false">
- <u-icon name="close"></u-icon>
- </div>
- <div class="cpb_cart-tit">
- <view>VIN详情</view>
- <view class="st-detailList-item-con flex">
- <view class="pimgs">
- <u-image :src="tempData.icon?tempData.icon:`../../static/${tempData.icon}/def_img@2x.png`" width="100" height="100" border-radius="10"></u-image>
- </view>
- <view class="flex_1 pimgs_right">
- <view class="padding_3">{{tempData.modelInfo || '--'}} </view>
- <view class="font_13">
- VIN:{{tempData.vinCode}}
- </view>
- </view>
- </view>
- </div>
- <div class="cpb_body flex justify_between">
- <div class="cpb_tab">
- <div :class="selFlag==0?'active':''" @click.stop="changeSel(0)">空调滤清器</div>
- <div :class="selFlag==1?'active':''" @click.stop="changeSel(1)">空气滤清器</div>
- <div :class="selFlag==2?'active':''" @click.stop="changeSel(2)">机油滤清器</div>
- </div>
- <div class="cpb_cart-list" v-if="productList.length>0">
- <div
- v-for="(item, index) in productList"
- :key="index"
- >
- <view class="nav-right-item flex">
- <view class="uni-col-2">
- <u-image :src="item.icon?item.icon:`../../static/${item.icon}/def_img@2x.png`" width="100" height="100" border-radius="30"></u-image>
- </view>
- <view class="item-info uni-col-10">
- <view class="item-name">
- {{item.productName}}
- </view>
- <view class="item-detail">
- <view class="item-detail-info align_center flex justify_between">
- <view>
- {{item.productCode}}
- </view>
- <!-- 判断是否铺货 -->
- <view class="flex justify_end" v-if="item.isShelfProduct">
- <text class="item-detail-text">
- 库存:{{item.currQty?item.currQty:0}}
- </text>
- </view>
- <view class="flex justify_end isShelf" v-else>
- 暂未铺货
- </view>
- </view>
- </view>
- </view>
- </view>
- </div>
- </div>
- <view v-else class="emptyStyle">
- <u-empty :src="`/static/${$config('themePath')}/def_no_data@3x.png`" icon-size="150" text="暂无匹配产品" mode="list"></u-empty>
- </view>
- </div>
- </div>
- </div>
- </view>
- </template>
- <script>
- import { toThousands } from '@/libs/tools'
- import { queryPage,queryDetail } from '@/api/vinLog'
- import search from './search.vue'
- // import copyText from '@/pages/common/copyText.vue'
- export default{
- components:{search},
- data(){
- return{
- toThousands,
- listData:[],
- totalNum:0,
- priceList:[
- { name: '空调滤清器', checked: true, val: 'kt' },
- { name: '空气滤清器', checked: true, val: 'kq' },
- { name: '机油滤清器', checked: true, val: 'jy' },
- ],
- pageNo:1,
- pageSize:15,
- noDataText: '暂无数据',
- theme: '',
- status: 'loadmore',
- showModal:false,
- showCart: false,
- params:{},
- detail: null,
- tempData: null,
- productList: [],
- shelfSn:'',//货架名称,
- selFlag:0,
- pullDownRefresh:false//下拉刷新
- }
- },
- onNavigationBarButtonTap(e){
- uni.navigateTo({
- url:"/pages/vinAnalyse/fitProductlist"
- })
- },
- onBackPress(e) {
- if(this.showModal||this.showCart) {
- this.showModal = false;
- this.showCart = false;
- return true;
- }
- },
- computed: {
- selPriceShow() {
- const a = this.priceList.filter(item => item.checked)
- return a.length > 0
- },
- tabList(){
- return this.priceList
- }
- },
- onLoad(option) {
- this.shelfSn = option.shelfSn
- let ajaxData={
- shelfSn:option.shelfSn,
- pageNo: this.pageNo,
- pageSize: this.pageSize
- }
- this.getList(ajaxData);
- this.theme = getApp().globalData.theme;
- uni.setNavigationBarTitle({
- title:option.shelfName
- })
- },
- methods:{
- toPage(url){
- uni.switchTab({
- url:url
- })
- },
- // 搜索查询新列表
- refreshList(val){
- this.params =val ? val : {},
- this.listData = []
- this.totalNum = 0
- delete val.date;
- let ajaxData={
- shelfSn:this.shelfSn,
- pageNo:1,
- pageSize: this.pageSize
- }
- if(val){
- Object.assign(ajaxData,val);
- }
- this.getList(ajaxData);
- },
- // 列表
- getList(params){
- const _this = this
- this.status = "loading"
- queryPage(params).then(res => {
- if (res.status == 200) {
- if(this.pageNo>1){
- this.listData = this.listData.concat(res.data.list || [])
- }else{
- this.listData = res.data.list || []
- }
- this.totalNum = res.data.count || 0
- } else {
- this.listData = []
- this.totalNum = 0
- this.noDataText = res.message
- }
- this.status = "loadmore"
- if(this.pullDownRefresh){
- uni.stopPullDownRefresh();
- }
-
- })
- },
- changeSel(num){
- this.selFlag=num;
- this.$nextTick(()=>{
- this.toViewDetail(this.tempData);
- })
- },
- // 查看详情
- toViewDetail(row){
- this.tempData = row
- queryDetail({id:row.id}).then(res => {
- this.showCart = true
- if(this.selFlag == 0){
- this.productList=res.data.airConditionerFilter
- }else if(this.selFlag == 1){
- this.productList=res.data.airFilterFlag
- }else{
- this.productList=res.data.engineOilFilterFlag
- }
- })
-
- }
- },
- //到底部加载更多
- onReachBottom() {
- if(this.listData.length < this.totalNum){
- this.pageNo += 1
- let ajaxData={
- shelfSn:this.shelfSn,
- pageNo: this.pageNo,
- pageSize: this.pageSize
- }
- this.getList(ajaxData)
- }else{
- this.status = "nomore"
- }
- },
- onPullDownRefresh(){
- this.pullDownRefresh= true;
- this.pageNo =1
- let ajaxData={
- shelfSn:this.shelfSn,
- pageNo: this.pageNo,
- pageSize: this.pageSize
- }
- this.getList(ajaxData)
- }
- }
- </script>
- <style lang="scss">
- .shelf-analyse-content{
- width:100%;
- height: 100vh;
- .emptyStyle{
- margin:auto;
- }
- .checkbox-price{
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10rpx 25rpx;
- color: #191919;
- .search{
- color:#00aaff;
- width: 90rpx;;
- }
- }
- .product-list{
- .st-detailList-main{
- padding: 20upx;
- .st-detailList-main-item{
- width: 100%;
- box-sizing: border-box;
- background: #ffffff;
- padding: 20upx;
- margin-bottom: 25upx;
- border-radius: 25upx;
- box-shadow: 1px 1px 3px #EEEEEE;
- .st-detailList-item-con{
- width: 100%;
- box-sizing: border-box;
- padding: 20upx 0;
- font-size: 28upx;
- .red{
- color: red;
- }
- .pimgs{
- width: 100rpx;
- height: 100rpx;
- margin-right: 16upx;
- }
- .pimgs_right{
- width:calc(100% - 116upx);
- }
- .font_13{
- font-size: 24upx;
- color: #999;
- }
- .padding_3{
- margin: 6upx 0;
- overflow:hidden;
- text-overflow: ellipsis;
- white-space: nowrap
- }
- }
- .price-all{
- border-top: 1px solid #e4e7ed;
- padding: 10upx 20upx 0;
- .price-item{
- width: 33.3%;
- border-right: 1px solid #e4e7ed;
- text-align: center;
- >view{
- color:#999;
- margin-bottom: 10rpx;
- font-size: 24rpx;
- }
- >text{
- border:1rpx solid #eee;
- font-size: 20rpx;
- padding:5rpx 10rpx;
- border-radius: 10rpx;
- min-width: 100rpx;
- display: inline-block;
- }
- .red{
- color:#ff5500;
- border-color: #ff5500;
- }
- .green{
- color:#00cb00;
- border-color: #00cb00;
- }
- }
- .price-item:last-child{
- border-right: none;
- }
- }
- }
- }
-
-
- }
-
- // 详情
- .cpb_cart-mask{
- position: fixed;
- width: 100%;
- background: rgba(0,0,0,0.5);
- z-index: 900;
- bottom: 0;
- top: 0;
- }
- .cpb_cart-box{
- background-color: #fff;
- position: absolute;
- width: 100%;
- z-index: 1000;
- bottom: 0;
- border-radius: 30rpx 30rpx 0 0;
- max-height: 70vh;
- display: flex;
- flex-direction: column;
- .cpb_close{
- position: absolute;
- top: 10rpx;
- right: 20rpx;
- width: 70rpx;
- height: 70rpx;
- font-size: 32rpx;
- color: #999;
- }
- .cpb_cart-tit{
- padding: 20rpx 30rpx 0;
- font-size: 30rpx;
- border-bottom: 2rpx solid #eee;
- .st-detailList-item-con{
- padding: 20upx 0;
- font-size: 28upx;
-
- .pimgs{
- margin-right: 16upx;
- }
- .pimgs_right{
- width:calc(100% - 66upx);
- }
- .font_13{
- font-size: 24upx;
- }
- .padding_3{
- padding: 6upx 0;
- word-break: break-all;
- }
- }
- }
- .cpb_body{
- height: 80vh;
- .cpb_tab{
- width: 25%;
- height: 100%;
- background-color: #f8f8f8;
- > div{
- padding: 30rpx 20rpx;
- font-size: 24rpx;
- text-align: center;
- }
- .active{
- background-color: #fff;
- border-left: 5rpx solid #00aaff;
- }
- }
- }
- .cpb_cart-list{
- padding: 20rpx;
- overflow: auto;
- flex-grow: 1;
- > view{
- margin-bottom: 20rpx;
- }
- .nav-right-item{
- padding: 0 30upx;
- }
- .item-name{
- font-size: 30rpx;
- text{
- background: rgba(3, 54, 146, 0.15);
- color: #1c588a;
- border-radius: 1em;
- font-size: 0.8em;
- padding: 0 0.5em;
- margin-right: 10upx;
- }
- }
- .item-info{
- border-bottom:2rpx solid #eee;
- flex-grow: 1;
- padding-left: 0.2em;
- }
- .item-detail{
- .item-detail-info{
- padding: 10upx 0 4upx;
- font-size: 24upx;
- > view{
- padding-bottom: 20rpx;
- align-items: center;
- .item-detail-text{
- color: #999;
- margin-left: 20upx;
- }
- .isShelf{
- color:coral;
- }
- }
- }
- }
- }
- }
- }
- </style>
|