From 57455461759413f3fc0430ecfc84c0152ac143bd Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期五, 08 三月 2024 16:15:26 +0800
Subject: [PATCH] 11
---
src/views/project/donorcharge/donorchargedetail/index.vue | 34 +++++++++++++++++++++++++---------
1 files changed, 25 insertions(+), 9 deletions(-)
diff --git a/src/views/project/donorcharge/donorchargedetail/index.vue b/src/views/project/donorcharge/donorchargedetail/index.vue
index 6f51a7d..4d4134f 100644
--- a/src/views/project/donorcharge/donorchargedetail/index.vue
+++ b/src/views/project/donorcharge/donorchargedetail/index.vue
@@ -20,7 +20,7 @@
v-for="dict in dict.type.sys_user_sex"
:key="dict.label"
:label="dict.label"
- :value="parseInt(dict.value)"
+ :value="dict.value"
></el-option>
</el-select>
</el-form-item>
@@ -134,6 +134,7 @@
<el-input
v-model="scope.row.organname"
placeholder="鍣ㄥ畼鍚嶇О"
+ :disabled="true"
/>
</template>
</el-table-column>
@@ -144,7 +145,11 @@
prop="caseno"
>
<template slot-scope="scope">
- <el-input v-model="scope.row.caseno" placeholder="绯荤粺缂栧彿" />
+ <el-input
+ v-model="scope.row.caseno"
+ :disabled="true"
+ placeholder="绯荤粺缂栧彿"
+ />
</template>
</el-table-column>
<el-table-column
@@ -154,7 +159,11 @@
width="150"
>
<template slot-scope="scope">
- <el-input v-model="scope.row.amount" placeholder="瀹炴敹閲戦" />
+ <el-input
+ v-model="scope.row.amount"
+ :disabled="true"
+ placeholder="瀹炴敹閲戦"
+ />
</template>
</el-table-column>
<el-table-column
@@ -166,6 +175,7 @@
<template slot-scope="scope">
<el-date-picker
clearable
+ :disabled="true"
size="small"
style="width: 100%"
v-model="scope.row.amounttime"
@@ -185,6 +195,7 @@
<template slot-scope="scope">
<el-input
v-model="scope.row.organcharge"
+ :disabled="true"
placeholder="鏍囧噯璐圭敤"
/>
</template>
@@ -197,6 +208,7 @@
>
<template slot-scope="scope">
<org-selecter
+ :disabled="true"
ref="tranHosSelect"
:org-type="'4'"
v-model="scope.row.hospitalno"
@@ -211,7 +223,11 @@
prop="name"
>
<template slot-scope="scope">
- <el-input v-model="scope.row.name" placeholder="鍙椾綋濮撴皬" />
+ <el-input
+ v-model="scope.row.name"
+ :disabled="true"
+ placeholder="鍙椾綋濮撴皬"
+ />
</template>
</el-table-column>
<el-table-column
@@ -223,6 +239,7 @@
<template slot-scope="scope">
<el-date-picker
clearable
+ :disabled="true"
size="small"
style="width: 100%"
v-model="scope.row.organtime"
@@ -234,7 +251,7 @@
</template>
</el-table-column>
<el-table-column prop="organchargedesc" align="center" label="澶囨敞">
- <template slot-scope="scope">
+ <template slot-scope="scope" width="300">
<el-input
v-model="scope.row.organchargedesc"
placeholder="澶囨敞"
@@ -246,12 +263,12 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button
- type="primary"
+ type="success"
@click="submitForm"
v-if="operationType == 'add' || operationType == 'update'"
>淇� 瀛�</el-button
>
- <el-button type="primary" @click="cancel">鍏抽棴</el-button>
+ <el-button type="info" @click="cancel">鍏抽棴</el-button>
</div>
</div>
</div>
@@ -620,7 +637,6 @@
getDonorcharge(this.curId).then(response => {
this.form = response.data;
console.log("getDonorcharge", response);
-
//鍣ㄥ畼璐圭敤淇℃伅
this.organParams.donorchargeid = this.curId;
console.log("this.organParams", this.organParams);
@@ -750,7 +766,7 @@
var columnnames = [
"organno",
"organname",
- "amount",
+ "caseno",
"amounttime",
"organcharge",
"hospitalname",
--
Gitblit v1.9.3