master
yujialong 2 years ago
parent d71cd65494
commit fa5db483a3
  1. 9
      order/curClient/curClient.vue
  2. 4
      order/orderDetail/orderDetail.vue
  3. 2
      order/orders/orders.vue
  4. 3
      pages/send/send.vue

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

@ -76,7 +76,7 @@
</view>
<view class="line">
<view class="label">结算价</view>
<view class="val">{{ form.orderType === 2 ? 0 : item.settlementPrice }}</view>
<view class="val">{{ item.settlementPrice }}</view>
</view>
<view class="line">
<view class="label">折扣率</view>
@ -84,7 +84,7 @@
</view>
<view class="line">
<view class="label">平台服务费</view>
<view class="val">{{ form.orderType === 2 ? 0 :item.serviceFee }}</view>
<view class="val">{{ item.serviceFee }}</view>
</view>
<view class="line done">
<view class="val">成交价格</view>

@ -27,7 +27,7 @@
<text class="val">{{ item.businessManagerName }}</text>
</view>
<view class="line">
<text class="name">订单名称</text>
<text class="name">客户名称</text>
<text class="val">{{ item.customerName }}</text>
</view>
<view class="line">

@ -28,7 +28,7 @@
email: '',
otherEmail: '',
myVal: 1,
otherVal: 2,
otherVal: '',
checkList: [{
text: '',
value: 1
@ -66,6 +66,7 @@
//
submit() {
const { otherEmail } = this
if (this.myVal && !this.email) return this.$util.errMsg('请选择其他邮箱!')
if (this.otherVal && !otherEmail) return this.$util.errMsg('请输入邮箱!')
mailFileSend({
copyWriting: this.files[this.id],

Loading…
Cancel
Save