Commit 794cc0e7e5819a6cdd5e1a7bc338969bf3a9f04a
1 parent
15fb77a9
feat: 规格变更增加新字段:变更说明:changeDescription--新增&编辑&查看&审核&审核详情
Showing
4 changed files
with
15 additions
and
0 deletions
| @@ -91,6 +91,11 @@ | @@ -91,6 +91,11 @@ | ||
| 91 | <uni-easyinput v-model="form.executionStandardRemarks" placeholder="请输入标准" :inputBorder="false" /> | 91 | <uni-easyinput v-model="form.executionStandardRemarks" placeholder="请输入标准" :inputBorder="false" /> |
| 92 | </template> | 92 | </template> |
| 93 | </uni-list-item> | 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 | </view> | 99 | </view> |
| 95 | 100 | ||
| 96 | 101 | ||
| @@ -185,6 +190,7 @@ export default { | @@ -185,6 +190,7 @@ export default { | ||
| 185 | packagingFee: '', | 190 | packagingFee: '', |
| 186 | executionStandard: '', | 191 | executionStandard: '', |
| 187 | executionStandardRemarks: '', | 192 | executionStandardRemarks: '', |
| 193 | + changeDescription: '', | ||
| 188 | totalQuantity: '', | 194 | totalQuantity: '', |
| 189 | afterTotalQuantity: '', | 195 | afterTotalQuantity: '', |
| 190 | pieceWeightHeader: '', | 196 | pieceWeightHeader: '', |
| @@ -33,6 +33,7 @@ | @@ -33,6 +33,7 @@ | ||
| 33 | <view class="row"><text class="label">执行标准</text><text class="value">{{ getDicName('APPLICABLE_STANDARD', | 33 | <view class="row"><text class="label">执行标准</text><text class="value">{{ getDicName('APPLICABLE_STANDARD', |
| 34 | form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view> | 34 | form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view> |
| 35 | <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text class="value">{{ form.executionStandardRemarks }}</text></view> | 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 | </view> | 37 | </view> |
| 37 | 38 | ||
| 38 | <view class="title-header"> | 39 | <view class="title-header"> |
| @@ -90,6 +90,11 @@ | @@ -90,6 +90,11 @@ | ||
| 90 | <uni-easyinput v-model="form.executionStandardRemarks" placeholder="请输入标准" :inputBorder="false" /> | 90 | <uni-easyinput v-model="form.executionStandardRemarks" placeholder="请输入标准" :inputBorder="false" /> |
| 91 | </template> | 91 | </template> |
| 92 | </uni-list-item> | 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 | </view> | 98 | </view> |
| 94 | 99 | ||
| 95 | 100 | ||
| @@ -182,6 +187,7 @@ export default { | @@ -182,6 +187,7 @@ export default { | ||
| 182 | packagingFee: '', | 187 | packagingFee: '', |
| 183 | executionStandard: '', | 188 | executionStandard: '', |
| 184 | executionStandardRemarks: '', | 189 | executionStandardRemarks: '', |
| 190 | + changeDescription: '', | ||
| 185 | totalQuantity: '', | 191 | totalQuantity: '', |
| 186 | afterTotalQuantity: '', | 192 | afterTotalQuantity: '', |
| 187 | pieceWeightHeader: '', | 193 | pieceWeightHeader: '', |
| @@ -34,6 +34,8 @@ | @@ -34,6 +34,8 @@ | ||
| 34 | form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view> | 34 | form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view> |
| 35 | <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text class="value">{{ | 35 | <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text class="value">{{ |
| 36 | form.executionStandardRemarks }}</text></view> | 36 | form.executionStandardRemarks }}</text></view> |
| 37 | + <view class="row"><text class="label">变更说明</text><text class="value">{{ | ||
| 38 | + form.changeDescription }}</text></view> | ||
| 37 | </view> | 39 | </view> |
| 38 | 40 | ||
| 39 | <view class="title-header"> | 41 | <view class="title-header"> |