Browse Source

优化显示

master
邓平艺 5 years ago
parent
commit
b57ae92707
  1. 4
      canteen/common/api.js
  2. 4
      canteen/pages/purchase/detail.vue
  3. 4
      supplier/common/api.js
  4. 11
      supplier/pages/gonghuo/detail.vue
  5. 2
      supplier/pages/offer/index.vue
  6. 2
      supplier/pages/order/detail.vue

4
canteen/common/api.js

@ -1,8 +1,8 @@
// appId: 正式 null | 测试 null
export const DEV = "dev"; // dev 测试 | prod 正式
export const VERSION = '1.0.0'; // 版本号
// export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址
export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址
export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址
// export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址
export const PRODURL = ''; // 正式服请求地址
export const API_CANTEEN_LOGIN = '/api/canteen/login'; // 登录

4
canteen/pages/purchase/detail.vue

@ -121,13 +121,13 @@
key: 'supplier_name'
},{
key: 'pre_tax_price',
label: '税'
label: '税价'
},{
key: 'total_tax_amount',
label: '含税合计'
},{
key: 'after_tax_price',
label: '税'
label: '不含税价'
},{
key: 'total_non_tax_amount',
label: '不含税合计'

4
supplier/common/api.js

@ -1,8 +1,8 @@
// appId: 正式 null | 测试 null
export const DEV = "dev"; // dev 测试 | prod 正式
export const VERSION = '1.0.0'; // 版本号
export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址
// export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址
// export const DEVURL = 'http://192.168.3.133'; // 测试服请求地址
export const DEVURL = 'http://fsc.lanzulive.com'; // 测试服请求地址
export const PRODURL = ''; // 正式服请求地址
export const API_SUPPLIER_INDEX = '/api/supplier/index'; // 落地页

11
supplier/pages/gonghuo/detail.vue

@ -32,6 +32,14 @@
<view>批次号</view>
<view class="lf-font-bold">{{order.batch_sn}}</view>
</view>
<view class="lf-row-between list">
<view>预计收货时间</view>
<view class="lf-font-bold">{{order.deadline_text}}</view>
</view>
<view class="lf-row-between list" v-if="order.receive_time">
<view>实际收货时间</view>
<view class="lf-font-bold">{{order.receive_time}}</view>
</view>
<block v-if="order.car_license">
<view class="lf-row-between list">
<view>车辆</view>
@ -275,7 +283,8 @@
this.$u.throttle(() => {
uni.previewImage({
urls: this[list],
current: current
current: current,
indicator: "default"
})
}, 500);
},

2
supplier/pages/offer/index.vue

@ -99,7 +99,7 @@
label: '含税价',
key: 'tax_price'
},{
label: '含税价',
label: '含税价',
key: 'non_tax_price'
},{
label: '操作',

2
supplier/pages/order/detail.vue

@ -91,7 +91,7 @@
label: '含税价',
key: 'tax_price'
},{
label: '含税价',
label: '含税价',
key: 'non_tax_price'
}],
contents: [],

Loading…
Cancel
Save