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> <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,

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

@ -27,7 +27,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">

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

Loading…
Cancel
Save