Browse Source

修改客户详情问题

devlop
buffeyu 4 years ago
parent
commit
bb4fec2ff8
4 changed files with 6 additions and 5 deletions
  1. 4
      pages/client-detail/basic-information.vue
  2. 3
      pages/client-detail/equipment-information.vue
  3. 2
      pages/mall/index.vue
  4. 2
      pages/trade/index.vue

4
pages/client-detail/basic-information.vue

@ -14,7 +14,7 @@
<text class="text">{{info.name}}</text>
<image
class="icon"
:src="info.registrationStatus ? '/static/imgs/general/cooperation-icon.png' : '/static/imgs/general/no-cooperation-icon.png'"
:src="info.cooperation == 1 ? '/static/imgs/general/cooperation-icon.png' : '/static/imgs/general/no-cooperation-icon.png'"
></image>
</view>
<view class="desc u-line-2">
@ -38,7 +38,7 @@
</view>
<view class="site">
<image class="icon" src="/static/imgs/client-detail/address-icon.png"></image>
<text class="text">{{ info.locProvinceName }}{{ info.locCityName }} {{ info.locDetail }}</text>
<text class="text">{{ info.locProvinceName }}{{ info.locCityName }}{{info.locDistrictName}}{{info.locStreetName}} {{ info.locDetail }}</text>
</view>
</view>
</view>

3
pages/client-detail/equipment-information.vue

@ -131,7 +131,8 @@ export default {
asc: '',
desc: '',
duration: '3',
enterpriseIds: []
customerEnterpriseId: this.$store.state.supplierInfo.id || null, // IDid
// customerEnterpriseId: '651107734133018624',
},
pagination: {
pageNum: 0, //

2
pages/mall/index.vue

@ -1,6 +1,6 @@
<template>
<view class="warpper">
<uni-nav-bar>
<uni-nav-bar :fixed="true" color="#ffffff" background-color="#ffffff" :status-bar="true">
<view slot="left" class="left-title">纸商城</view>
<view slot="right" class="right-title" @tap="shareTap">分享</view>
</uni-nav-bar>

2
pages/trade/index.vue

@ -1,6 +1,6 @@
<template>
<view class="trade-index">
<uni-nav-bar>
<uni-nav-bar :fixed="true" color="#ffffff" background-color="#ffffff" :status-bar="true">
<view class="left-title">
<view v-if="mainKey === '0'" class="text-view"><text class="title">交易大厅</text></view>
<view v-if="mainKey === '1'">

Loading…
Cancel
Save