doctor-admin-components 1.0.14-beta.63 → 1.0.14-beta.64

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.63",
4
+ "version": "1.0.14-beta.64",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -27,8 +27,8 @@
27
27
  >
28
28
  <el-table-column label="Description" align="center" prop="askName"></el-table-column>
29
29
  <el-table-column label="Commodity Name" align="center" prop="askAliasName"></el-table-column>
30
- <el-table-column label="Quantity" align="center" prop="weight">
31
- <template slot-scope="scope">{{ scope.row.weight }}MT</template>
30
+ <el-table-column label="Quantity(MT)" align="center" prop="weight">
31
+ <template slot-scope="scope">{{ scope.row.weight }}</template>
32
32
  </el-table-column>
33
33
  <el-table-column label="Unit Price/MT" align="center" width="200">
34
34
  <template slot-scope="{ row }">
@@ -91,7 +91,7 @@
91
91
  <el-divider></el-divider>
92
92
 
93
93
  <el-descriptions :column="1" :labelStyle="{ fontWeight: 'bold' }">
94
- <el-descriptions-item label="Freight Terms">{{ form.freightTerms }}</el-descriptions-item>
94
+ <el-descriptions-item label="Freight Terms">{{ form.freightTerms ? `Incoterms2020 ${form.freightTerms}` : '' }}</el-descriptions-item>
95
95
  <el-descriptions-item label="Payment Terms">
96
96
  <div>{{ form.paymentTermFullText }}</div>
97
97
  </el-descriptions-item>
@@ -245,7 +245,7 @@ export default {
245
245
  }
246
246
  }, 0)
247
247
  if (index === 2) {
248
- sums[index] += 'MT'
248
+ sums[index] += ''
249
249
  } else if (index === 1) {
250
250
  sums[index] = ''
251
251
  } else {