doctor-admin-components 1.0.14-beta.14 → 1.0.14-beta.16

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.14",
4
+ "version": "1.0.14-beta.16",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -1064,7 +1064,7 @@
1064
1064
  </div>
1065
1065
  </el-col>
1066
1066
 
1067
- <el-row v-if="channel !== 'official-website'">
1067
+ <div v-if="channel !== 'official-website'">
1068
1068
  <el-col :span="24" style="padding-top: 20px;">
1069
1069
  <span>内部文件夹</span>
1070
1070
  <div class="file-list" v-if="contract.contractType == 'purchase'">
@@ -1106,7 +1106,7 @@
1106
1106
  :isShowTip="false" uploadNameStr="内部文件" />
1107
1107
  </div>
1108
1108
  </el-col>
1109
- </el-row>
1109
+ </div>
1110
1110
 
1111
1111
  </div>
1112
1112
  </template>
@@ -2134,17 +2134,12 @@ export default {
2134
2134
 
2135
2135
  // 索赔进度
2136
2136
  let claimTextArr = []
2137
- if(this.contractFileInfo.claimCreateFlag && !this.contractFileInfo.claimProcessFlag && !this.contractFileInfo.claimCloseFlag) {
2137
+ if(this.contractFileInfo.claimCreateFlag && !this.contractFileInfo.claimCloseFlag) {
2138
2138
  // 索赔中(英文:Claiming)
2139
2139
  claimTextArr.push(this.$t('contractDetail.claiming'))
2140
2140
  }
2141
2141
 
2142
- if(this.contractFileInfo.claimCreateFlag && this.contractFileInfo.claimProcessFlag && !this.contractFileInfo.claimCloseFlag) {
2143
- // 文件已更新(英文:Claiming-CN/DN issued
2144
- claimTextArr.push(this.$t('contractDetail.claiming_update'))
2145
- }
2146
-
2147
- if(this.contractFileInfo.claimCreateFlag && this.contractFileInfo.claimProcessFlag && this.contractFileInfo.claimCloseFlag) {
2142
+ if(this.contractFileInfo.claimCreateFlag && this.contractFileInfo.claimCloseFlag) {
2148
2143
  // 索赔已关闭(英文:Claim closed)
2149
2144
  claimTextArr.push(this.$t('contractDetail.claiming_closed'))
2150
2145
  }