123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <template>
- <view class="shelf-analyse-content">
- <view class="headerName u-flex u-row-between">
- <view class="headerNameLeft u-flex">
- <text class="barBox"></text>
- <view class="shelfName u-line-1">{{ shelfName }}</view>
- </view>
- <view class="search" @click="showModal = true">
- <text>筛选</text>
- <u-icon name="arrow-down"></u-icon>
- </view>
- </view>
- <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>
- <scroll-view class="product-list" scroll-y @scrolltolower="onreachBottom">
- <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" v-if="item.airConditionerFilterFlag == 1">有适配</text>
- <text class="red" v-else-if="item.airConditionerFilterFlag == 2">无适配</text>
- <text v-else>--</text>
- </view>
- <view class="price-item" v-if="priceList[1].checked">
- <view>空气滤清器</view>
- <text class="green" v-if="item.airFilterFlag == 1">有适配</text>
- <text class="red" v-else-if="item.airFilterFlag == 2">无适配</text>
- <text v-else>--</text>
- </view>
- <view class="price-item" v-if="priceList[2].checked">
- <view>机油滤清器</view>
- <text class="green" v-if="item.engineOilFilterFlag == 1">有适配</text>
- <text class="red" v-else-if="item.engineOilFilterFlag == 2">无适配</text>
- <text v-else>--</text>
- </view>
- </view>
- </view>
- <u-empty
- v-if="listData.length == 0 && status != 'loading'"
- :src="`/static/${$config('themePath')}/def_no_data@3x.png`"
- icon-size="150"
- text="暂无VIN记录"
- mode="list"
- :margin-top="260"
- ></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 详情 -->
- <view class="cpb_cart-mask" v-if="showCart" @click=" showCart = false; selFlag = 0;">
- <view class="cpb_cart-box" @click.stop="showCart = true">
- <view class="cpb_close flex align-center justify_center" @click.stop="showCart = false;selFlag = 0;">
- <u-icon name="close"></u-icon>
- </view>
- <view 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/${theme}/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>
- </view>
- <view class="cpb_body">
- <view class="cpb_tab">
- <view :class="selFlag == 0 ? 'active' : ''" @click.stop="changeSel(0)">空调滤清器</view>
- <view :class="selFlag == 1 ? 'active' : ''" @click.stop="changeSel(1)">空气滤清器</view>
- <view :class="selFlag == 2 ? 'active' : ''" @click.stop="changeSel(2)">机油滤清器</view>
- </view>
- <scroll-view scroll-y class="cpb_cart-list" v-if="productList.length > 0">
- <view v-for="(item, index) in productList" :key="index">
- <view class="nav-right-item flex">
- <view class="uni-col-2">
- <u-image
- :src="item.productImageUrl ? item.productImageUrl : `../../static/${theme}/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 u-line-2">{{ 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.qty ? item.qty : 0 }}</text>
- </view>
- <view class="flex justify_end isShelf" v-else>暂未铺货</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="loadmoreStyle"><u-loadmore status="nomore" :load-text="loadText" /></view>
- </scroll-view>
- <view v-else class="emptyStyle u-flex">
- <u-empty :src="`/static/${$config('themePath')}/def_no_data@3x.png`" icon-size="150" text="暂无匹配产品" mode="list"></u-empty>
- </view>
-
- </view>
- </view>
- </view>
- </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, //下拉刷新,
- loadText: {
- nomore: '已显示全部'
- },
- shelfName: '',
- isRestCon:false,//是否点击重置按钮
- scrollHeight:''
- };
- },
- onNavigationBarButtonTap(e) {
- uni.navigateTo({
- url: '/pages/vinAnalyse/fitProductlist?shelfSn=' + this.shelfSn + '&shelfName=' + this.shelfName
- });
- },
- 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.theme = getApp({ allowDefault: true }).globalData.theme;
- this.shelfSn = option.shelfSn;
- this.shelfName = option.shelfName;
- let ajaxData = {
- shelfSn: option.shelfSn,
- pageNo: this.pageNo,
- pageSize: this.pageSize
- };
- this.getList(ajaxData);
- },
- onReady() {
- uni.setNavigationBarTitle({
- title: 'VIN分析'
- });
- },
- 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
- };
- if(this.params){
- delete this.params.date;
- Object.assign(ajaxData, this.params)
- }
- 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;
- .headerName {
- background-color: #fff;
- padding: 0 20rpx;
- color: #222;
- font-size: 30rpx;
- .headerNameLeft{
- width: calc(100% - 110rpx);
-
- .barBox {
- display: block;
- height: 30rpx;
- width: 6rpx;
- background: #0485f6;
- margin-right: 10rpx;
- border-radius: 10rpx;
- }
- .shelfName {
- font-weight: bold;
- width: calc(100% - 16rpx);
- }
- }
- .search {
- color: #00aaff;
- width: 90rpx;
- }
- }
- .checkbox-price {
- background-color: #fff;
- padding: 10rpx 25rpx;
- color: #191919;
- }
- .product-list {
- height: calc(100vh - 116rpx);
- .st-detailList-main {
- padding: 20rpx;
- .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%;
- height: 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;
- height: 60vh;
- 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:calc(60vh - 202rpx);
- box-sizing: border-box;
- display: flex;
- .cpb_tab {
- width: 25%;
- height: 100%;
- background-color: #f8f8f8;
- > view {
- padding: 30rpx 20rpx;
- font-size: 24rpx;
- text-align: center;
- }
- .active {
- background-color: #fff;
- border-left: 5rpx solid #00aaff;
- }
- }
- .emptyStyle{
- align-items: center !important;
- margin:160rpx auto 0;
- ::v-deep .u-empty{
- justify-content:flex-start !important;
- }
- }
- }
- .cpb_cart-list {
- width: 75%;
- height: 100%;
- padding: 20rpx;
- flex-grow: 1;
- box-sizing: border-box;
- > view {
- margin-bottom: 20rpx;
- }
- .nav-right-item {
- padding: 0 20upx 20rpx;
- }
- .item-name {
- font-size: 30rpx;
- width: 100%;
- }
- .item-info {
- border-bottom: 2rpx solid #eee;
- flex-grow: 1;
- padding-left: 20rpx;
- }
- .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: #ff5500;
- }
- }
- .loadmoreStyle {
- margin-top: 20rpx;
- }
- }
- }
- }
- </style>
|