doctor-admin-components 1.0.14-beta.66 → 1.0.14-beta.67

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.66",
4
+ "version": "1.0.14-beta.67",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -5,7 +5,7 @@
5
5
  <div class="type">
6
6
  {{ contract.contractType == 'sale' ? 'Sales Contract' : 'Purchase Contract' }}
7
7
  </div>
8
- <div class="type" style="text-align: right">Contract Date: {{ $formatDate(contract.createTime) }}</div>
8
+ <div class="type" style="text-align: right">Contract Date: {{ $formatDate(contract.createTime) && $formatDate(contract.createTime).split(' ')[0] }}</div>
9
9
  </div>
10
10
  <div class="title">TTYY INTERNATIONAL LIMITED</div>
11
11
  <div class="sub-title mb20">FLAT/RM 07, 12/F, CHEVALIER COMMERCIAL CENTRE 8, WANG HOI ROAD, KOWLOON BAY, KL, HONG KONG</div>
@@ -51,8 +51,8 @@
51
51
  </template>
52
52
  </el-table-column>
53
53
 
54
- <el-table-column label="Service fee/MT" align="center">
55
- <template slot-scope="scope">${{ scope.row.serviceFee }}</template>
54
+ <el-table-column label="Service fee" align="center">
55
+ <template slot-scope="scope">{{ scope.row.serviceFee ? `$${scope.row.serviceFee}/MT` : '' }}</template>
56
56
  </el-table-column>
57
57
 
58
58
  <!-- 总价 -->