Commit b1b039ac7e3522b1c4e2c799bcb5d8ed68b0316b

Authored by 史婷婷
1 parent f13f6042

feat: 订货单-包装费放到产品里面,可输入-编辑&审核, 只读-审核详情&详情 number 大于等于0,可小数

... ... @@ -70,17 +70,6 @@
70 70 </view>
71 71 </template>
72 72 </uni-list-item>
73   - <uni-list-item class="amount-item">
74   - <template v-slot:body>
75   - <view class="item-title"><text>包装费</text></view>
76   - </template>
77   - <template v-slot:footer>
78   - <view class="amount-row">
79   - <uni-easyinput type="number" v-model="form.packagingFee" placeholder="0.00" :inputBorder="false" />
80   - <text class="unit">元</text>
81   - </view>
82   - </template>
83   - </uni-list-item>
84 73 <uni-list-item class="select-item" :class="form.executionStandardName ? 'is-filled' : 'is-empty'" clickable
85 74 @click="openSheet('executionStandard')" :rightText="form.executionStandardName || '请选择'" showArrow>
86 75 <template v-slot:body>
... ... @@ -178,7 +167,6 @@
178 167 <view class="row"><text class="label">价格表编号</text><text class="value">{{ form.priceListNo }}</text></view>
179 168 <view class="row"><text class="label">开票情况</text><text class="value">{{ form.invoicingStatus }}</text></view>
180 169 <view class="row"><text class="label">运费</text><text class="value">{{ form.shippingCost }}</text></view>
181   - <view class="row"><text class="label">包装费</text><text class="value">{{ form.packagingFee }}</text></view>
182 170 <view class="row"><text class="label">执行标准</text><text class="value">{{ getDicName('APPLICABLE_STANDARD',
183 171 form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view>
184 172 <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text
... ...
... ... @@ -27,7 +27,6 @@
27 27 <view class="row"><text class="label">价格表编号</text><text class="value">{{ form.priceListNo }}</text></view>
28 28 <view class="row"><text class="label">开票情况</text><text class="value">{{ form.invoicingStatus }}</text></view>
29 29 <view class="row"><text class="label">运费</text><text class="value">{{ form.shippingCost }}</text></view>
30   - <view class="row"><text class="label">包装费</text><text class="value">{{ form.packagingFee }}</text></view>
31 30 <view class="row"><text class="label">执行标准</text><text class="value">{{ getDicName('APPLICABLE_STANDARD',
32 31 form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view>
33 32 <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text
... ...
... ... @@ -24,7 +24,6 @@
24 24 <view class="row"><text class="label">价格表编号</text><text class="value">{{ form.priceListNo }}</text></view>
25 25 <view class="row"><text class="label">开票情况</text><text class="value">{{ form.invoicingStatus }}</text></view>
26 26 <view class="row"><text class="label">运费</text><text class="value">{{ form.shippingCost }}</text></view>
27   - <view class="row"><text class="label">包装费</text><text class="value">{{ form.packagingFee }}</text></view>
28 27 <view class="row"><text class="label">执行标准</text><text class="value">{{ getDicName('APPLICABLE_STANDARD',
29 28 form.executionStandard, dicOptions.APPLICABLE_STANDARD) }}</text></view>
30 29 <view v-if="form.executionStandard === 'OTHER'" class="row"><text class="label">标准</text><text class="value">{{ form.executionStandardRemarks }}</text></view>
... ...