Commit b3278885 authored by 姬鋆屾's avatar 姬鋆屾

fix:字典类型修改

parent 84ab667d
......@@ -11,7 +11,7 @@
:model="form"
:rules="rules"
label-width="120px"
style="padding:20px"
style="padding: 20px"
>
<el-row>
<Field
......@@ -140,9 +140,9 @@ export default {
afterRender(data) {
// 固定新增类型
if (this.from == "group") {
this.form.type = "1";
this.form.type = 1;
} else {
this.form.type = "2";
this.form.type = 2;
}
this.open = true;
},
......
......@@ -68,7 +68,13 @@
<span style="color: #1a7af8; font-size: 14px">
{{
`(共${
$route.query.careType == 1 ? tableData.shengri : tableData.ruzhi
$route.query.careType == 1
? tableData.shengri
? tableData.shengri
: "--"
: tableData.ruzhi
? tableData.ruzhi
: "--"
}人)`
}}
</span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment