|
@@ -42,7 +42,7 @@
|
|
|
<view class="customer-strip" @tap.stop="pickCustomer">
|
|
<view class="customer-strip" @tap.stop="pickCustomer">
|
|
|
<text class="customer-strip-label">客户</text>
|
|
<text class="customer-strip-label">客户</text>
|
|
|
<text class="customer-strip-name">{{ customerDisplayName }}</text>
|
|
<text class="customer-strip-name">{{ customerDisplayName }}</text>
|
|
|
- <text class="customer-strip-action">去选择</text>
|
|
|
|
|
|
|
+ <text class="customer-strip-action">修改</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view class="rcv-pay-block">
|
|
<view class="rcv-pay-block">
|
|
@@ -307,7 +307,7 @@ export default {
|
|
|
const n = (this.customName || '').trim()
|
|
const n = (this.customName || '').trim()
|
|
|
if (n) return n
|
|
if (n) return n
|
|
|
if (Number(this.customId) > 0) return '—'
|
|
if (Number(this.customId) > 0) return '—'
|
|
|
- return '未选择(赊账必填)'
|
|
|
|
|
|
|
+ return '未选择'
|
|
|
},
|
|
},
|
|
|
isEmptyCalcInput() {
|
|
isEmptyCalcInput() {
|
|
|
return this.$util.isEmpty(this.calcInput)
|
|
return this.$util.isEmpty(this.calcInput)
|
|
@@ -372,12 +372,12 @@ export default {
|
|
|
this.loadDiscountFromStorage()
|
|
this.loadDiscountFromStorage()
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ init(){
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
pickCustomer() {
|
|
pickCustomer() {
|
|
|
this.tapVoice()
|
|
this.tapVoice()
|
|
|
- this.$util.pageTo({
|
|
|
|
|
- url: '/admin/custom/selectCustom?style=3',
|
|
|
|
|
- type: 2,
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ this.$util.pageTo({url: '/admin/custom/selectCustom?style=3'})
|
|
|
},
|
|
},
|
|
|
applyPickCustomerFromStorage() {
|
|
applyPickCustomerFromStorage() {
|
|
|
try {
|
|
try {
|
|
@@ -1292,13 +1292,13 @@ export default {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.calc-num {
|
|
.calc-num {
|
|
|
- font-size: 40upx;
|
|
|
|
|
|
|
+ font-size: 42upx;
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
|
color: #1a1a1a;
|
|
color: #1a1a1a;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.calc-op {
|
|
.calc-op {
|
|
|
- font-size: 40upx;
|
|
|
|
|
|
|
+ font-size: 42upx;
|
|
|
font-weight: 700;
|
|
font-weight: 700;
|
|
|
color: #09c567;
|
|
color: #09c567;
|
|
|
}
|
|
}
|