Commit 9fddd46b3691d25bbcc78ff3116ff01c9150b484

Authored by 史婷婷
1 parent 67817b4d

feat: 订货单详情&规格变更单详情-优化

... ... @@ -17,12 +17,12 @@
17 17
18 18 <!-- 产品-变更前 -->
19 19 <view class="mgb10">
20   - <Product title="变更前" mode="view" :options="genderOptions" :list="form.beforeChangeSpecList" :totalQuantity="form.totalQuantity || 0" />
  20 + <Product title="变更前" mode="view" :list="form.beforeChangeSpecList" :totalQuantity="form.totalQuantity || 0" />
21 21 </view>
22 22
23 23 <!-- 产品-变更后 -->
24 24 <view class="mgb10">
25   - <Product title="变更后" mode="view" :options="genderOptions" :list="form.afterChangeSpecList" :totalQuantity="form.afterTotalQuantity || 0" />
  25 + <Product title="变更后" mode="view" :list="form.afterChangeSpecList" :totalQuantity="form.afterTotalQuantity || 0" />
26 26 </view>
27 27
28 28 <view class="section">
... ... @@ -71,10 +71,6 @@ export default {
71 71 data() {
72 72 return {
73 73 form: {},
74   - enterpriseTypeOptions: [],
75   - genderOptions: [],
76   - categoryOptions: [],
77   - historyList: [],
78 74 buttons: [
79 75 { text: '编辑', visible: true, variant: 'outline', event: 'edit' },
80 76 { text: '审核详情', visible: true, variant: 'outline', event: 'auditDetail' },
... ...
... ... @@ -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 || 0" />
  22 + <Product mode="view" :list="form.purchaseOrderLineList" :totalQuantity="form.totalQuantity || 0" />
23 23 </view>
24 24
25 25 <view class="section">
... ... @@ -68,10 +68,6 @@ export default {
68 68 data() {
69 69 return {
70 70 form: {},
71   - enterpriseTypeOptions: [],
72   - genderOptions: [],
73   - categoryOptions: [],
74   - historyList: [],
75 71 buttons: [
76 72 { text: '编辑', visible: true, variant: 'outline', event: 'edit' },
77 73 { text: '审核详情', visible: true, variant: 'outline', event: 'auditDetail' },
... ...