|
...
|
...
|
@@ -19,7 +19,7 @@ |
|
19
|
19
|
|
|
20
|
20
|
<!-- 产品 -->
|
|
21
|
21
|
<view class="mgb10">
|
|
22
|
|
- <Product mode="view" :options="genderOptions" :list="form.purchaseOrderLineList" :totalQuantity="form.totalQuantity || '-'" />
|
|
|
22
|
+ <Product mode="view" :options="genderOptions" :list="form.purchaseOrderLineList" :totalQuantity="form.totalQuantity" />
|
|
23
|
23
|
</view>
|
|
24
|
24
|
|
|
25
|
25
|
<view class="section">
|
|
...
|
...
|
@@ -96,11 +96,11 @@ export default { |
|
96
|
96
|
isAudit: e === 'AUDIT',
|
|
97
|
97
|
canExamine: !!this.showExamine,
|
|
98
|
98
|
canDeliveryApply: s === 'ISSUED',
|
|
99
|
|
- contractCreateBy: !!(this.form && this.form.contractCreateBy)
|
|
|
99
|
+ contractCreateBy: this.form.contractCreateBy
|
|
100
|
100
|
}
|
|
101
|
101
|
},
|
|
102
|
102
|
displayButtons() {
|
|
103
|
|
- const f = this.statusFlags
|
|
|
103
|
+ const f = this.statusFlags;
|
|
104
|
104
|
return [
|
|
105
|
105
|
{ ...this.buttons[0], visible: f.isRefuse && f.contractCreateBy },
|
|
106
|
106
|
{ ...this.buttons[1], visible: !f.isRefuse },
|
...
|
...
|
|