doctor-admin-components 1.0.14-beta.48 → 1.0.14-beta.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doctor-admin-components",
3
3
  "version1": "1.0.11",
4
- "version": "1.0.14-beta.48",
4
+ "version": "1.0.14-beta.49",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -126,8 +126,8 @@
126
126
  <el-tag :key="tag" v-for="tag in dynamicTags" class="mr5" style="margin-top: 5px">{{ tag }}</el-tag>
127
127
  </div>
128
128
  </el-descriptions-item>
129
- <el-descriptions-item label="Shipment Quantity Tolerance"> ± {{ form.weightTolerance * 100 }}%</el-descriptions-item>
130
- <el-descriptions-item label="Shortage Tolerance"> &lt;{{ form.toleranceFloat }}% or {{ form.weightToleranceWeight }} kg</el-descriptions-item>
129
+ <el-descriptions-item label="Shipment Quantity Tolerance"> ± {{ form.toleranceFloat * 100 }}%</el-descriptions-item>
130
+ <el-descriptions-item label="Shortage Tolerance"> &lt;{{ form.weightTolerance }}% / {{ form.weightToleranceWeight }} kg</el-descriptions-item>
131
131
  <el-descriptions-item label="Packing Type"> {{ form.packingMethod ? form.packingMethod.replace(',', '/') : '' }}</el-descriptions-item>
132
132
  <el-descriptions-item label="Partial Shipment"> {{ form.partialShipment }}</el-descriptions-item>
133
133
  <el-descriptions-item label="Transshipment"> {{ form.transshipment }}</el-descriptions-item>
@@ -241,8 +241,10 @@ export default {
241
241
  return prev
242
242
  }
243
243
  }, 0)
244
- if (index === 1) {
244
+ if (index === 2) {
245
245
  sums[index] += 'MT'
246
+ } else if (index === 1) {
247
+ sums[index] = ''
246
248
  } else {
247
249
  sums[index] += ''
248
250
  }