doctor-admin-components 1.0.13-beta.74 → 1.0.13-beta.76
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
|
@@ -110,6 +110,7 @@ export default {
|
|
|
110
110
|
if (this.form.copyFileTypeList.length == 0) {
|
|
111
111
|
return this.$modal.msgError('请选择您需要复制的数据或文件')
|
|
112
112
|
}
|
|
113
|
+
console.log('form', this.form)
|
|
113
114
|
// 获取详情数据
|
|
114
115
|
const loading = this.openLoading()
|
|
115
116
|
getBizShipment(this.form.citeShipmentId).then((res) => {
|
|
@@ -139,10 +140,10 @@ export default {
|
|
|
139
140
|
this.shipmentList = null
|
|
140
141
|
this.form = {
|
|
141
142
|
citeShipmentId: null,
|
|
142
|
-
copyFileTypeList:
|
|
143
|
+
copyFileTypeList: this.fileList.map((res) => res.key) // 可复用的文件
|
|
143
144
|
}
|
|
144
145
|
this.contractId = null
|
|
145
|
-
this.isSelectAll =
|
|
146
|
+
this.isSelectAll = true
|
|
146
147
|
this.blList = null
|
|
147
148
|
}
|
|
148
149
|
},
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<div class="info" id="printPdf">
|
|
6
6
|
<!-- <div class="title">{{ $t("contract.billTip") }}</div> -->
|
|
7
7
|
<el-row>
|
|
8
|
-
<el-col :span="12" v-if="voidFlag">
|
|
8
|
+
<el-col :span="12" v-if="voidFlag" style="padding-bottom: 20px">
|
|
9
9
|
<span style="font-size: 16px;color: red; font-weight: bold"> 已作废 </span>
|
|
10
10
|
</el-col>
|
|
11
11
|
<el-col :span="12" v-else>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
</el-col>
|
|
17
17
|
</el-row>
|
|
18
|
-
<el-form :model="form" ref="form" size="mini" :rules="rules" label-width="130px">
|
|
18
|
+
<el-form :disabled="voidFlag" :model="form" ref="form" size="mini" :rules="rules" label-width="130px">
|
|
19
19
|
<el-collapse v-model="expandItems">
|
|
20
20
|
<el-collapse-item name="0" v-if="channel !== 'official-website'">
|
|
21
21
|
<template slot="title">
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
</el-form-item>
|
|
268
268
|
</el-form>
|
|
269
269
|
</div>
|
|
270
|
-
<div class="footer" v-if="!printModel">
|
|
270
|
+
<div class="footer" v-if="!printModel && !voidFlag">
|
|
271
271
|
<el-button type="primary" @click="submitForm">{{ $t('button.saveDraft') }}</el-button>
|
|
272
272
|
</div>
|
|
273
273
|
</div>
|