doctor-admin-components 1.0.14-beta.17 → 1.0.14-beta.19
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
|
@@ -2373,8 +2373,9 @@ export default {
|
|
|
2373
2373
|
// }
|
|
2374
2374
|
if(this.contractFileInfo?.bills) {
|
|
2375
2375
|
return this.contractFileInfo.bills.map(item => {
|
|
2376
|
+
let name = item.billType == 'receipt' ? 'DebitNote' : 'CreditNote'
|
|
2376
2377
|
item.url = item.billNo + '.pdf'
|
|
2377
|
-
item.fileName =
|
|
2378
|
+
item.fileName = name + item.billNo + '.pdf'
|
|
2378
2379
|
item.downloadUrl = '/bill/download?id=' + item.id
|
|
2379
2380
|
return item
|
|
2380
2381
|
}).filter(item => {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<div class="bank-item">Beneficiary Address:{{ bankData.beneficiaryAddress }}</div>
|
|
36
36
|
</el-col>
|
|
37
37
|
<el-col :span="24">
|
|
38
|
-
<div class="bank-item">Remark
|
|
38
|
+
<div class="bank-item" style="display:flex;"><p>Remark:</p><p style="white-space: pre-wrap;">{{ bankData.remark }}</p></div>
|
|
39
39
|
</el-col>
|
|
40
40
|
</el-row>
|
|
41
41
|
</div>
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
</el-col>
|
|
85
85
|
<el-col :span="18">
|
|
86
86
|
<el-form-item label="Remark" label-width="150px">
|
|
87
|
-
<el-input maxlength="500" v-model="form.remark" placeholder="请输入内容" />
|
|
87
|
+
<el-input maxlength="500" type="textarea" rows="4" v-model="form.remark" placeholder="请输入内容" />
|
|
88
88
|
</el-form-item>
|
|
89
89
|
</el-col>
|
|
90
90
|
</el-row>
|