doctor-admin-components 1.0.14-beta.12 → 1.0.14-beta.14
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>
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
<div class="app-container-left">
|
|
13
13
|
<div class="contract-number">
|
|
14
14
|
<div>{{ $t('contractDetail.Contract_No') }}</div>
|
|
15
|
-
<div>{{ contract.contractNo }}</div>
|
|
15
|
+
<div style="word-wrap: break-word;">{{ contract.contractNo }}</div>
|
|
16
16
|
</div>
|
|
17
17
|
<div class="contract-number">
|
|
18
18
|
<div>
|
|
19
19
|
<span>{{$t('contractDetail.Reference_No')}}</span>
|
|
20
20
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="clickEditReference"></el-button>
|
|
21
21
|
</div>
|
|
22
|
-
<div>{{ contract.reference || '--' }}</div>
|
|
22
|
+
<div style="word-wrap: break-word;">{{ contract.reference || '--' }}</div>
|
|
23
23
|
</div>
|
|
24
24
|
<div class="tab-root">
|
|
25
25
|
<div :class="['tab', activeName == tabsItem.name ? 'active' : '']" v-for="tabsItem in saleTabsArr" :key="tabsItem.id" @click="changeTabs(tabsItem)">
|