|
@@ -0,0 +1,362 @@
|
|
|
+<template>
|
|
|
+ <view class="modal-box">
|
|
|
+ <view class="header_box">
|
|
|
+ <view class="headerName u-flex">
|
|
|
+ <text class="barBox"></text>
|
|
|
+ <view class="shelfName u-line-1">{{shelfName}}对方的观点和个人就一个人国服日服固定板</view>
|
|
|
+ <view class="screeningBox" @click="sortShow = true">
|
|
|
+ <text>滞销天数</text>
|
|
|
+ <u-icon color="#666666" size="36" name="shaixuan" custom-prefix="iscm-icon"></u-icon>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="searchBox">
|
|
|
+ <view class="searchBox_l">
|
|
|
+ <u-search
|
|
|
+ placeholder="请输入产品编码或产品名称搜索"
|
|
|
+ @change="getSearchCon"
|
|
|
+ @search="getSearchCon"
|
|
|
+ @custom="getSearchCon"
|
|
|
+ @clear="clearSearch"
|
|
|
+ v-model="keyword"
|
|
|
+ bg-color="#FFF"
|
|
|
+ shape="round"
|
|
|
+ :show-action="false"
|
|
|
+ ></u-search>
|
|
|
+ </view>
|
|
|
+ <view class="searchBox_r">
|
|
|
+ <u-icon color="#666666" size="40" name="saomiao" custom-prefix="iscm-icon"></u-icon>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <!-- 排序弹窗 -->
|
|
|
+ <u-popup v-model="sortShow" mode="right" width="60%">
|
|
|
+ <view class="sortPopup">
|
|
|
+ <view class="sortList" v-for="(item, i) in sortList" :key="i" :class="isSortFlag == i ? 'sortChecked' : ''" @click="chooseSort(i)">{{ item.name }}</view>
|
|
|
+ <view class="butBox u-flex">
|
|
|
+ <!-- <u-button hover-class="none" shape="circle" size="medium" @click="reset">重置</u-button> -->
|
|
|
+ <!-- <u-button hover-class="none" :custom-style="customBtnStyle" size="medium" shape="circle" @click="handelSort">确定</u-button> -->
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </u-popup>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { reportPage } from '@/api/vinLog';
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ sortShow: false,
|
|
|
+ keyword: '',
|
|
|
+ sortList: [
|
|
|
+ {
|
|
|
+ id: 1,
|
|
|
+ name: '最近一次VIN扫描时间降序'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2,
|
|
|
+ name: '适配有货降序'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 3,
|
|
|
+ name: '适配无货降序'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ isSortFlag: 0,
|
|
|
+ list: [],
|
|
|
+ shelfSn: '',
|
|
|
+ shelfName: '',
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ noDataText: '暂无数据',
|
|
|
+ status: 'loading',
|
|
|
+ totalNum: 0,
|
|
|
+ total: 0,
|
|
|
+ theme:'',
|
|
|
+ customBtnStyle: { // 自定义按钮样式
|
|
|
+ borderColor: this.$config('primaryColor'),
|
|
|
+ backgroundColor: this.$config('primaryColor'),
|
|
|
+ color: '#fff'
|
|
|
+ },
|
|
|
+ };
|
|
|
+ },
|
|
|
+ onLoad(options) {
|
|
|
+ this.theme = getApp().globalData.theme;
|
|
|
+ this.shelfSn = options.shelfSn;
|
|
|
+ this.shelfName = options.shelfName;
|
|
|
+ let ajaxData = {
|
|
|
+ pageNo: this.pageNo,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ shelfSn: this.shelfSn
|
|
|
+ };
|
|
|
+ this.loadData(ajaxData);
|
|
|
+ },
|
|
|
+ onBackPress(e) {
|
|
|
+ if (this.sortShow) {
|
|
|
+ this.sortShow = false;
|
|
|
+ this.isSortFlag = 0;
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 获取数字货架列表
|
|
|
+ loadData(params) {
|
|
|
+ const _this = this;
|
|
|
+ _this.status = 'loading';
|
|
|
+ reportPage(params).then(res => {
|
|
|
+ if (res.status == 200) {
|
|
|
+ if (this.pageNo > 1) {
|
|
|
+ this.list = this.list.concat(res.data.list || []);
|
|
|
+ } else {
|
|
|
+ this.list = res.data.list || [];
|
|
|
+ }
|
|
|
+ this.totalNum = res.data.count || 0;
|
|
|
+ } else {
|
|
|
+ this.list = [];
|
|
|
+ this.totalNum = 0;
|
|
|
+ this.noDataText = res.message;
|
|
|
+ }
|
|
|
+ this.status = 'loadmore';
|
|
|
+ });
|
|
|
+ },
|
|
|
+ chooseSort(i) {
|
|
|
+ this.isSortFlag = i;
|
|
|
+ this.handelSort();
|
|
|
+ },
|
|
|
+ reset() {
|
|
|
+ this.isSortFlag = 0;
|
|
|
+ this.pageNo = 1;
|
|
|
+ let ajaxData = {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ shelfSn: this.shelfSn
|
|
|
+ };
|
|
|
+ this.loadData(ajaxData);
|
|
|
+ },
|
|
|
+ // 搜索
|
|
|
+ getSearchCon() {
|
|
|
+ this.pageNo = 1;
|
|
|
+ var reg = new RegExp('[\\u4E00-\\u9FFF]+', 'g');
|
|
|
+ var ajaxData = null;
|
|
|
+ if (reg.test(this.keyword)) {
|
|
|
+ //包含汉字
|
|
|
+ ajaxData = {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ shelfSn: this.shelfSn,
|
|
|
+ productName: this.keyword.trim()
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ ajaxData = {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ shelfSn: this.shelfSn,
|
|
|
+ productCode: this.keyword.trim()
|
|
|
+ };
|
|
|
+ }
|
|
|
+ if (this.isSortFlag == 0) {
|
|
|
+ ajaxData.orderBy = 'xvfp.scan_vin_date desc,xp.code asc';
|
|
|
+ } else if (this.isSortFlag == 1) {
|
|
|
+ ajaxData.orderBy = 'xvfp.in_stock_count desc,xp.code asc';
|
|
|
+ } else {
|
|
|
+ ajaxData.orderBy = 'xvfp.not_stock_count desc,xp.code asc';
|
|
|
+ }
|
|
|
+ this.loadData(ajaxData);
|
|
|
+ },
|
|
|
+ // 清空搜索内容
|
|
|
+ clearSearch() {
|
|
|
+ this.keyword = '';
|
|
|
+ this.reset();
|
|
|
+
|
|
|
+ },
|
|
|
+ handelSort() {
|
|
|
+ this.pageNo = 1;
|
|
|
+ var ajaxData = {
|
|
|
+ shelfSn: this.shelfSn,
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: this.pageSize
|
|
|
+ };
|
|
|
+ if (this.keyword) {
|
|
|
+ var reg = new RegExp('[\\u4E00-\\u9FFF]+', 'g');
|
|
|
+ if (reg.test(this.keyword)) {
|
|
|
+ ajaxData.productName=this.keyword.trim();
|
|
|
+ }else{
|
|
|
+ ajaxData.productCode=this.keyword.trim();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (this.isSortFlag == 0) {
|
|
|
+ ajaxData.orderBy = 'xvfp.scan_vin_date desc,xp.code asc';
|
|
|
+ } else if (this.isSortFlag == 1) {
|
|
|
+ ajaxData.orderBy = 'xvfp.in_stock_count desc,xp.code asc';
|
|
|
+ } else {
|
|
|
+ ajaxData.orderBy = 'xvfp.not_stock_count desc,xp.code asc';
|
|
|
+ }
|
|
|
+ this.sortShow = false;
|
|
|
+ this.loadData(ajaxData);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //到底部加载更多
|
|
|
+ onReachBottom() {
|
|
|
+ if (this.list.length < this.totalNum) {
|
|
|
+ this.pageNo += 1;
|
|
|
+ var ajaxData = {
|
|
|
+ shelfSn: this.shelfSn,
|
|
|
+ pageNo: this.pageNo,
|
|
|
+ pageSize: this.pageSize
|
|
|
+ };
|
|
|
+ if (this.keyword) {
|
|
|
+ var reg = new RegExp('[\\u4E00-\\u9FFF]+', 'g');
|
|
|
+ if (reg.test(this.keyword)) {
|
|
|
+ ajaxData.productName=this.keyword.trim();
|
|
|
+ }else{
|
|
|
+ ajaxData.productCode=this.keyword.trim();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (this.isSortFlag == 0) {
|
|
|
+ ajaxData.orderBy = 'xvfp.scan_vin_date desc,xp.code asc';
|
|
|
+ } else if (this.isSortFlag == 1) {
|
|
|
+ ajaxData.orderBy = 'xvfp.in_stock_count desc,xp.code asc';
|
|
|
+ } else {
|
|
|
+ ajaxData.orderBy = 'xvfp.not_stock_count desc,xp.code asc';
|
|
|
+ }
|
|
|
+ this.loadData(ajaxData);
|
|
|
+ } else {
|
|
|
+ this.status = 'nomore';
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.modal-box {
|
|
|
+ background: #ffffff;
|
|
|
+ padding: 20rpx;
|
|
|
+ width: 100%;
|
|
|
+ .header_box{
|
|
|
+ width: 100%;
|
|
|
+ padding: 0 20rpx 20rpx;
|
|
|
+ background-color: #fff;
|
|
|
+ .headerName{
|
|
|
+ padding-bottom: 15rpx;
|
|
|
+ color: #222;
|
|
|
+ font-size: 30rpx;
|
|
|
+ .barBox{
|
|
|
+ display: block;
|
|
|
+ height: 30rpx;
|
|
|
+ width: 6rpx;
|
|
|
+ background: #0485F6;
|
|
|
+ margin-right: 10rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ }
|
|
|
+ .shelfName{
|
|
|
+ font-weight: bold;
|
|
|
+ width: calc(100% - 166rpx);
|
|
|
+ }
|
|
|
+ .screeningBox{
|
|
|
+ font-size: 26rpx;
|
|
|
+ width: 150rpx;
|
|
|
+ text-align: right;
|
|
|
+ text{
|
|
|
+ vertical-align: top;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .searchBox {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding:0 20rpx;
|
|
|
+ border: 1rpx solid #e0e0e0;
|
|
|
+ border-radius: 32rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ .searchBox_l{
|
|
|
+ width: 93%;
|
|
|
+ }
|
|
|
+ .searchBox_r{
|
|
|
+ width: 7%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .listBox {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ padding: 30rpx 0;
|
|
|
+ border-bottom: 1rpx solid #e0e0e0;
|
|
|
+ .listBox_l {
|
|
|
+ width: 150rpx;
|
|
|
+ height: 150rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .listBox_r {
|
|
|
+ width: calc(100% - 170rpx);
|
|
|
+ .type {
|
|
|
+ color: #222;
|
|
|
+ font-size: 32rpx;
|
|
|
+ }
|
|
|
+ .tit {
|
|
|
+ margin: 10rpx 0;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ }
|
|
|
+ .bot {
|
|
|
+ width: 100%;
|
|
|
+ view {
|
|
|
+ &:first-child {
|
|
|
+ color: #999;
|
|
|
+ text {
|
|
|
+ color: green;
|
|
|
+ margin: 0 10rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &:last-child {
|
|
|
+ color: #999;
|
|
|
+ text {
|
|
|
+ color: red;
|
|
|
+ margin: 0 10rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 弹窗样式
|
|
|
+ .sortPopup {
|
|
|
+ padding: 30rpx 20rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ .sortList {
|
|
|
+ width: 100%;
|
|
|
+ height: 70rpx;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 70rpx;
|
|
|
+ border-radius: 60rpx;
|
|
|
+ color: #333;
|
|
|
+ margin-bottom: 30rpx;
|
|
|
+ font-size: 26rpx;
|
|
|
+ border: 1rpx solid #e0e0e0;
|
|
|
+ }
|
|
|
+ .butBox {
|
|
|
+ margin-top: 100rpx;
|
|
|
+ }
|
|
|
+ .sortChecked {
|
|
|
+ background-color: rgb(0, 122, 255);
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .emptyStyle {
|
|
|
+ margin-top: 280rpx;
|
|
|
+ }
|
|
|
+ .u-size-medium {
|
|
|
+ padding: 0 60rpx !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|