doctor-admin-components 1.0.14-beta.13 → 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
|
@@ -457,52 +457,6 @@
|
|
|
457
457
|
</el-col>
|
|
458
458
|
</el-row>
|
|
459
459
|
|
|
460
|
-
<el-row v-if="channel !== 'official-website'" style="padding-top: 20px;">
|
|
461
|
-
<el-col :span="24">
|
|
462
|
-
<span>内部文件夹</span>
|
|
463
|
-
<div class="file-list" v-if="contract.contractType == 'purchase'">
|
|
464
|
-
<file-show
|
|
465
|
-
@refresh="handleRefresh"
|
|
466
|
-
@checked="handleChecked"
|
|
467
|
-
:hiddenOperation="channel == 'official-website'"
|
|
468
|
-
@uncheck="handleUncheck"
|
|
469
|
-
:selectFileListProp="selectFileList"
|
|
470
|
-
:file-info="item"
|
|
471
|
-
v-for="(item, i) in shipmentFileInfo.purchaseShipmentInternalFile" :key="i" />
|
|
472
|
-
<contract-file-drag-upload
|
|
473
|
-
@upload="
|
|
474
|
-
handleUpload(
|
|
475
|
-
$event,
|
|
476
|
-
shipmentFileInfo.shipmentId,
|
|
477
|
-
'shipment',
|
|
478
|
-
'purchase_shipment_internal_file'
|
|
479
|
-
)"
|
|
480
|
-
:isShowTip="false" uploadNameStr="内部文件" />
|
|
481
|
-
</div>
|
|
482
|
-
|
|
483
|
-
<div class="file-list" v-else>
|
|
484
|
-
<file-show
|
|
485
|
-
@refresh="handleRefresh"
|
|
486
|
-
@checked="handleChecked"
|
|
487
|
-
:hiddenOperation="channel == 'official-website'"
|
|
488
|
-
@uncheck="handleUncheck"
|
|
489
|
-
:selectFileListProp="selectFileList"
|
|
490
|
-
:file-info="item"
|
|
491
|
-
v-for="(item, i) in shipmentFileInfo.saleShipmentInternalFile" :key="i" />
|
|
492
|
-
<contract-file-drag-upload
|
|
493
|
-
@upload="
|
|
494
|
-
handleUpload(
|
|
495
|
-
$event,
|
|
496
|
-
shipmentFileInfo.shipmentId,
|
|
497
|
-
'shipment',
|
|
498
|
-
'sale_shipment_internal_file'
|
|
499
|
-
)"
|
|
500
|
-
:isShowTip="false" uploadNameStr="内部文件" />
|
|
501
|
-
</div>
|
|
502
|
-
|
|
503
|
-
</el-col>
|
|
504
|
-
</el-row>
|
|
505
|
-
|
|
506
460
|
<el-col :span="24">
|
|
507
461
|
<div class="hr-class"></div>
|
|
508
462
|
</el-col>
|
|
@@ -1109,6 +1063,51 @@
|
|
|
1109
1063
|
:uploadNameStr="$t('contractDetail.otherFile')" />
|
|
1110
1064
|
</div>
|
|
1111
1065
|
</el-col>
|
|
1066
|
+
|
|
1067
|
+
<el-row v-if="channel !== 'official-website'">
|
|
1068
|
+
<el-col :span="24" style="padding-top: 20px;">
|
|
1069
|
+
<span>内部文件夹</span>
|
|
1070
|
+
<div class="file-list" v-if="contract.contractType == 'purchase'">
|
|
1071
|
+
<file-show
|
|
1072
|
+
@refresh="handleRefresh"
|
|
1073
|
+
@checked="handleChecked"
|
|
1074
|
+
:hiddenOperation="channel == 'official-website'"
|
|
1075
|
+
@uncheck="handleUncheck"
|
|
1076
|
+
:selectFileListProp="selectFileList"
|
|
1077
|
+
:file-info="item"
|
|
1078
|
+
v-for="(item, i) in shipmentFileInfo.purchaseShipmentInternalFile" :key="i" />
|
|
1079
|
+
<contract-file-drag-upload
|
|
1080
|
+
@upload="
|
|
1081
|
+
handleUpload(
|
|
1082
|
+
$event,
|
|
1083
|
+
shipmentFileInfo.shipmentId,
|
|
1084
|
+
'shipment',
|
|
1085
|
+
'purchase_shipment_internal_file'
|
|
1086
|
+
)"
|
|
1087
|
+
:isShowTip="false" uploadNameStr="内部文件" />
|
|
1088
|
+
</div>
|
|
1089
|
+
<div class="file-list" v-else>
|
|
1090
|
+
<file-show
|
|
1091
|
+
@refresh="handleRefresh"
|
|
1092
|
+
@checked="handleChecked"
|
|
1093
|
+
:hiddenOperation="channel == 'official-website'"
|
|
1094
|
+
@uncheck="handleUncheck"
|
|
1095
|
+
:selectFileListProp="selectFileList"
|
|
1096
|
+
:file-info="item"
|
|
1097
|
+
v-for="(item, i) in shipmentFileInfo.saleShipmentInternalFile" :key="i" />
|
|
1098
|
+
<contract-file-drag-upload
|
|
1099
|
+
@upload="
|
|
1100
|
+
handleUpload(
|
|
1101
|
+
$event,
|
|
1102
|
+
shipmentFileInfo.shipmentId,
|
|
1103
|
+
'shipment',
|
|
1104
|
+
'sale_shipment_internal_file'
|
|
1105
|
+
)"
|
|
1106
|
+
:isShowTip="false" uploadNameStr="内部文件" />
|
|
1107
|
+
</div>
|
|
1108
|
+
</el-col>
|
|
1109
|
+
</el-row>
|
|
1110
|
+
|
|
1112
1111
|
</div>
|
|
1113
1112
|
</template>
|
|
1114
1113
|
</SectionSlot>
|
|
@@ -2135,17 +2134,12 @@ export default {
|
|
|
2135
2134
|
|
|
2136
2135
|
// 索赔进度
|
|
2137
2136
|
let claimTextArr = []
|
|
2138
|
-
if(this.contractFileInfo.claimCreateFlag && !this.contractFileInfo.
|
|
2137
|
+
if(this.contractFileInfo.claimCreateFlag && !this.contractFileInfo.claimCloseFlag) {
|
|
2139
2138
|
// 索赔中(英文:Claiming)
|
|
2140
2139
|
claimTextArr.push(this.$t('contractDetail.claiming'))
|
|
2141
2140
|
}
|
|
2142
2141
|
|
|
2143
|
-
if(this.contractFileInfo.claimCreateFlag && this.contractFileInfo.
|
|
2144
|
-
// 文件已更新(英文:Claiming-CN/DN issued
|
|
2145
|
-
claimTextArr.push(this.$t('contractDetail.claiming_update'))
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
if(this.contractFileInfo.claimCreateFlag && this.contractFileInfo.claimProcessFlag && this.contractFileInfo.claimCloseFlag) {
|
|
2142
|
+
if(this.contractFileInfo.claimCreateFlag && this.contractFileInfo.claimCloseFlag) {
|
|
2149
2143
|
// 索赔已关闭(英文:Claim closed)
|
|
2150
2144
|
claimTextArr.push(this.$t('contractDetail.claiming_closed'))
|
|
2151
2145
|
}
|