|
...
|
...
|
@@ -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' },
|
...
|
...
|
|