Browse Source

修改原纸交易查询

devlop
buffeyu 4 years ago
parent
commit
25155178c6
1 changed files with 3 additions and 3 deletions
  1. 6
      pages/client-detail/base-paper-deals.vue

6
pages/client-detail/base-paper-deals.vue

@ -14,12 +14,12 @@
<scroll-list ref="list" :option="option" @load="upCallback" @refresh="downCallback" style="background-color: #ffffff"> <scroll-list ref="list" :option="option" @load="upCallback" @refresh="downCallback" style="background-color: #ffffff">
<view class="card-box" v-for="(item, index) in list" :key="index"> <view class="card-box" v-for="(item, index) in list" :key="index">
<view class="header"> <view class="header">
<view class="left-title">{{ item.customerEnterpriseName }}</view>
<view class="left-title">{{ item.orderId }}</view>
<view class="right-title">¥ {{ item.totalOfferPrice }}</view> <view class="right-title">¥ {{ item.totalOfferPrice }}</view>
</view> </view>
<view class="content" v-for="(subItem, subIndex) in item.supplierOrderList[0].orderItems" :key="subIndex"> <view class="content" v-for="(subItem, subIndex) in item.supplierOrderList[0].orderItems" :key="subIndex">
<!-- <image class="image" :src="/static/imgs/client/client-default.png" mode=""></image> --> <!-- <image class="image" :src="/static/imgs/client/client-default.png" mode=""></image> -->
<image class="image" :src="subItem.productImg" mode=""></image>
<image class="image" :src="subItem.productImg || 'https://qncloud.oss-cn-shenzhen.aliyuncs.com/paper_shopkeeper/paper-default-small.png'" mode=""></image>
<view class=""> <view class="">
<view class="title">{{ subItem.productName }}</view> <view class="title">{{ subItem.productName }}</view>
<view class="desc"> <view class="desc">
@ -75,7 +75,7 @@ export default {
params: { params: {
asc: '', asc: '',
desc: '', desc: '',
customerEnterpriseId: this.$store.state.supplierInfo.id || null, // IDid
customerEnterpriseId: this.id,
mallSupplierId: this.$store.state.supplierInfo.supplierId || null, // id mallSupplierId: this.$store.state.supplierInfo.supplierId || null, // id
// customerEnterpriseId: '651107734133018624', // ID // customerEnterpriseId: '651107734133018624', // ID
// mallSupplierId: '670334117090562048', // id // mallSupplierId: '670334117090562048', // id

Loading…
Cancel
Save