doctor-admin-components 1.0.13-beta.74 → 1.0.13-beta.75
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
|
@@ -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>
|