doctor-admin-components 1.0.14-beta.14 → 1.0.14-beta.15
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
|
@@ -2134,17 +2134,12 @@ export default {
|
|
|
2134
2134
|
|
|
2135
2135
|
// 索赔进度
|
|
2136
2136
|
let claimTextArr = []
|
|
2137
|
-
if(this.contractFileInfo.claimCreateFlag && !this.contractFileInfo.
|
|
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.
|
|
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
|
}
|