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

fix:字典类型修改

parent 84ab667d
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
:model="form" :model="form"
:rules="rules" :rules="rules"
label-width="120px" label-width="120px"
style="padding:20px" style="padding: 20px"
> >
<el-row> <el-row>
<Field <Field
...@@ -140,9 +140,9 @@ export default { ...@@ -140,9 +140,9 @@ export default {
afterRender(data) { afterRender(data) {
// 固定新增类型 // 固定新增类型
if (this.from == "group") { if (this.from == "group") {
this.form.type = "1"; this.form.type = 1;
} else { } else {
this.form.type = "2"; this.form.type = 2;
} }
this.open = true; this.open = true;
}, },
......
...@@ -68,7 +68,13 @@ ...@@ -68,7 +68,13 @@
<span style="color: #1a7af8; font-size: 14px"> <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> </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