前端-胡立永 2 weeks ago
parent
commit
ca2a0fad12
4 changed files with 870 additions and 733 deletions
  1. +3
    -3
      api/model/recyclingDestination.js
  2. +1
    -1
      config.js
  3. +1
    -1
      pages/manager/order-detail.vue
  4. +865
    -728
      pages/manager/order.vue

+ 3
- 3
api/model/recyclingDestination.js View File

@ -32,9 +32,9 @@ const api = {
method: 'POST',
auth : true,
},
// 查询当前用户直推间推了多少人
getPromotionCount: {
url: '/recycle-admin/applet/promotion/getPromotionCount',
// 根据快递单号查询订单号
getOrderIdBywliuNo: {
url: '/recycle-admin/applet/info_team_order/getOrderIdBywliuNo',
method: 'GET',
auth : true,
},


+ 1
- 1
config.js View File

@ -1,5 +1,5 @@
// config.js
const type = 'prod'
const type = 'local'
const config = {
local: {


+ 1
- 1
pages/manager/order-detail.vue View File

@ -159,7 +159,7 @@
<view class="custom-detail-content">
<view class="custom-detail-row">
<text class="custom-detail-label">预估回收</text>
<text class="custom-detail-value highlight">¥ {{ order.price || order.estimate }}</text>
<text class="custom-detail-value highlight">¥ {{ order.estimatedPrice }}</text>
</view>
<view class="custom-divider"></view>
<!-- 商品明细 -->


+ 865
- 728
pages/manager/order.vue
File diff suppressed because it is too large
View File


Loading…
Cancel
Save