|
|
@ -23,7 +23,7 @@ |
|
|
|
<text class="val">{{ item.businessManagerName }}</text> |
|
|
|
<text class="val">{{ item.businessManagerName }}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="line"> |
|
|
|
<view class="line"> |
|
|
|
<text class="name">订单名称:</text> |
|
|
|
<text class="name">客户名称:</text> |
|
|
|
<text class="val">{{ item.customerName }}</text> |
|
|
|
<text class="val">{{ item.customerName }}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="line"> |
|
|
|
<view class="line"> |
|
|
@ -132,7 +132,7 @@ |
|
|
|
const { options } = pages[pages.length - 1] |
|
|
|
const { options } = pages[pages.length - 1] |
|
|
|
this.customerId = options.customerId |
|
|
|
this.customerId = options.customerId |
|
|
|
this.customerName = options.name |
|
|
|
this.customerName = options.name |
|
|
|
// this.initList() |
|
|
|
this.initList() |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
getList() { |
|
|
|
getList() { |
|
|
@ -140,11 +140,12 @@ |
|
|
|
title: '加载中' |
|
|
|
title: '加载中' |
|
|
|
}) |
|
|
|
}) |
|
|
|
const team = uni.getStorageSync('team') |
|
|
|
const team = uni.getStorageSync('team') |
|
|
|
|
|
|
|
const { orderStatus } = this |
|
|
|
miniProgramOrderRecord({ |
|
|
|
miniProgramOrderRecord({ |
|
|
|
businessManagerId: this.$util.getBmId(), |
|
|
|
businessManagerId: this.$util.getBmId(), |
|
|
|
teamId: team.id, |
|
|
|
teamId: team.id, |
|
|
|
customerId: this.customerId, |
|
|
|
customerId: +this.customerId, |
|
|
|
orderStatus: this.orderStatus, |
|
|
|
orderStatus: orderStatus === '' ? null : orderStatus, |
|
|
|
isAdmin: +team.isTeam, // 是否是管理员(0否 1是) |
|
|
|
isAdmin: +team.isTeam, // 是否是管理员(0否 1是) |
|
|
|
pageNum: this.page, |
|
|
|
pageNum: this.page, |
|
|
|
pageSize: this.pageSize, |
|
|
|
pageSize: this.pageSize, |
|
|
|