Commit 794cc0e7e5819a6cdd5e1a7bc338969bf3a9f04a

Authored by 史婷婷
1 parent 15fb77a9

feat: 规格变更增加新字段:变更说明:changeDescription--新增&编辑&查看&审核&审核详情

... ... @@ -91,6 +91,11 @@
91 91 <uni-easyinput v-model="form.executionStandardRemarks" placeholder="请输入标准" :inputBorder="false" />
92 92 </template>
93 93 </uni-list-item>
  94 + <uni-list-item title="变更说明">
  95 + <template v-slot:footer>
  96 + <uni-easyinput v-model="form.changeDescription" placeholder="请输入变更说明" :inputBorder="false" />
  97 + </template>
  98 + </uni-list-item>
94 99 </view>
95 100
96 101
... ... @@ -185,6 +190,7 @@ export default {
185 190 packagingFee: '',
186 191 executionStandard: '',
187 192 executionStandardRemarks: '',
  193 + changeDescription: '',
188 194 totalQuantity: '',
189 195 afterTotalQuantity: '',
190 196 pieceWeightHeader: '',
... ...
... ... @@ -33,6 +33,7 @@
33 33 <view class="row"><text class="label">执行标准</text><text class="value">{{ getDicName('APPLICABLE_STANDARD',
34 34 form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view>
35 35 <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text class="value">{{ form.executionStandardRemarks }}</text></view>
  36 + <view class="row"><text class="label">变更说明</text><text class="value">{{ form.changeDescription }}</text></view>
36 37 </view>
37 38
38 39 <view class="title-header">
... ...
... ... @@ -90,6 +90,11 @@
90 90 <uni-easyinput v-model="form.executionStandardRemarks" placeholder="请输入标准" :inputBorder="false" />
91 91 </template>
92 92 </uni-list-item>
  93 + <uni-list-item title="变更说明">
  94 + <template v-slot:footer>
  95 + <uni-easyinput v-model="form.changeDescription" placeholder="请输入变更说明" :inputBorder="false" />
  96 + </template>
  97 + </uni-list-item>
93 98 </view>
94 99
95 100
... ... @@ -182,6 +187,7 @@ export default {
182 187 packagingFee: '',
183 188 executionStandard: '',
184 189 executionStandardRemarks: '',
  190 + changeDescription: '',
185 191 totalQuantity: '',
186 192 afterTotalQuantity: '',
187 193 pieceWeightHeader: '',
... ...
... ... @@ -34,6 +34,8 @@
34 34 form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view>
35 35 <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text class="value">{{
36 36 form.executionStandardRemarks }}</text></view>
  37 + <view class="row"><text class="label">变更说明</text><text class="value">{{
  38 + form.changeDescription }}</text></view>
37 39 </view>
38 40
39 41 <view class="title-header">
... ...