123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- <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">
- 筛选 <u-icon name="arrow-down"></u-icon>
- </view>
- </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.productMainPic&&item.productMainPic.imageUrl?item.productMainPic.imageUrl:`../../static/${theme}/def_img@2x.png`" width="100" height="100" border-radius="10"></u-image>
- </view>
- <view class="flex_1">
- <view class="flex align_center justify_between">
- <view>
- LJJLDS234DD323453
- </view>
- <view class="font_13">
- 2022-05-06 12:25:36
- </view>
- </view>
- <view class="padding_3">{{item.name || '--'}} </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">
- <div class="cpb_cart-box">
- <div class="cpb_close flex align-center justify_center" @click="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.productMainPic&&tempData.productMainPic.imageUrl?tempData.productMainPic.imageUrl:`../../static/${theme}/def_img@2x.png`" width="100" height="100" border-radius="10"></u-image>
- </view>
- <view class="flex_1">
- <view class="padding_3">{{tempData.name || '--'}} </view>
- <view class="font_13">
- VIN:LJJLDS234DD323453
- </view>
- </view>
- </view>
- </div>
- <div class="cpb_body flex justify_between">
- <div class="cpb_tab">
- <div class="active">空调滤清器</div>
- <div>空气滤清器</div>
- <div>机油滤清器</div>
- </div>
- <div class="cpb_cart-list">
- <div
- v-for="(item, index) in productList"
- :key="item.id"
- >
- <view class="nav-right-item flex">
- <view class="uni-col-2">
- <u-image :src="item.product&&item.product.images?item.product.images:`../../static/${$config('themePath')}/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.product.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">
- <text class="item-detail-text">
- 库存:{{item.stockQty?item.stockQty:0}} {{item.product&&item.product.unit}}
- </text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </div>
- </div>
- </div>
- </div>
- </div>
- </view>
- </template>
- <script>
- import { toThousands } from '@/libs/tools'
- import { dealerProductList } from '@/api/sales'
- import search from './search.vue'
- import copyText from '@/pages/common/copyText.vue'
- export default{
- components:{search,copyText},
- 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: []
- }
- },
- onNavigationBarButtonTap(e){
- uni.navigateTo({
- url:"/pages/vinAnalyse/shelfAnalyse?data="+encodeURIComponent(JSON.stringify(this.detail))
- })
- },
- 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.detail = JSON.parse(option.data)
- this.theme = getApp().globalData.theme
- uni.setNavigationBarTitle({
- title: this.detail.shelfName
- })
- this.getList()
- },
- methods:{
- toPage(url){
- uni.switchTab({
- url:url
- })
- },
- // 刷新列表
- refreshList(val){
- this.params =val ? val : {},
- this.listData = []
- this.totalNum = 0
- this.getList(1)
- },
- // 列表
- getList(pageNo){
- const _this = this
- if (pageNo) {
- this.pageNo = pageNo
- }
- let params = Object.assign(this.params, { pageNo: this.pageNo, pageSize: this.pageSize })
- this.status = "loading"
- console.log(params)
- dealerProductList(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"
- })
- },
- // scroll-view到底部加载更多
- onreachBottom() {
- if(this.listData.length < this.totalNum){
- this.pageNo += 1
- this.getList()
- }
- },
- // 查看销售记录
- toViewDetail(row){
- this.tempData = row
- this.showCart = true
- }
- }
- }
- </script>
- <style lang="scss">
- .shelf-analyse-content{
- width:100%;
- height: 100vh;
- .checkbox-price{
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10rpx 25rpx;
- color: #191919;
- .search{
- color:#00aaff;
- }
- }
- .product-list{
- height: calc(100vh - 84upx);
- .st-detailList-main{
- padding: 20upx;
- .st-detailList-main-item{
- background: #ffffff;
- padding: 20upx;
- margin-bottom: 25upx;
- border-radius: 25upx;
- box-shadow: 1px 1px 3px #EEEEEE;
- .st-detailList-item-con{
- padding: 20upx 0;
- font-size: 28upx;
- .red{
- color: red;
- }
- .pimgs{
- margin-right: 16upx;
- }
- .font_13{
- font-size: 24upx;
- color: #999;
- }
- .padding_3{
- padding: 6upx 0;
- word-break: break-all;
- }
- }
- .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;
- }
- .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;
- }
- }
- }
- }
- }
- }
- }
- </style>
|