style:申请业务规则配置
Showing
2 changed files
with
22 additions
and
22 deletions
... | @@ -85,9 +85,9 @@ export default { | ... | @@ -85,9 +85,9 @@ export default { |
85 | width: '140', | 85 | width: '140', |
86 | render: (h, scope) => { | 86 | render: (h, scope) => { |
87 | return ( | 87 | return ( |
88 | <el-radio-group v-model={scope.row.sfqy} disabled={scope.row.sftsdjqx == '1'} onChange={(val) => { scope.row[scope.column.property] = val }}> | 88 | <el-radio-group v-model={scope.row.enabled} disabled={scope.row.sftsdjqx == '1'} onChange={(val) => { scope.row[scope.column.property] = val }}> |
89 | <el-radio label={1}>启用</el-radio> | 89 | <el-radio label={'1'}>启用</el-radio> |
90 | <el-radio label={0}>禁用</el-radio> | 90 | <el-radio label={'0'}>禁用</el-radio> |
91 | </el-radio-group> | 91 | </el-radio-group> |
92 | ) | 92 | ) |
93 | } | 93 | } |
... | @@ -107,9 +107,9 @@ export default { | ... | @@ -107,9 +107,9 @@ export default { |
107 | width: '140', | 107 | width: '140', |
108 | render: (h, scope) => { | 108 | render: (h, scope) => { |
109 | return ( | 109 | return ( |
110 | <el-radio-group v-model={scope.row.sfqymb} disabled={scope.row.sftsdjqx == '1'} onChange={(val) => { scope.row[scope.column.property] = val }}> | 110 | <el-radio-group v-model={scope.row.sfqydjyymb} disabled={scope.row.sftsdjqx == '1'} onChange={(val) => { scope.row[scope.column.property] = val }}> |
111 | <el-radio label={1}>启用</el-radio> | 111 | <el-radio label={'1'}>启用</el-radio> |
112 | <el-radio label={0}>禁用</el-radio> | 112 | <el-radio label={'0'}>禁用</el-radio> |
113 | </el-radio-group> | 113 | </el-radio-group> |
114 | ) | 114 | ) |
115 | } | 115 | } | ... | ... |
... | @@ -68,16 +68,16 @@ | ... | @@ -68,16 +68,16 @@ |
68 | </el-row> | 68 | </el-row> |
69 | <el-row> | 69 | <el-row> |
70 | <el-col :span="8"> | 70 | <el-col :span="8"> |
71 | <el-form-item label="是否启用" prop="sfqy"> | 71 | <el-form-item label="是否启用" prop="enabled"> |
72 | <el-radio-group v-model="ruleForm.sfqy"> | 72 | <el-radio-group v-model="ruleForm.enabled"> |
73 | <el-radio :label="1">启用</el-radio> | 73 | <el-radio label="1">启用</el-radio> |
74 | <el-radio :label="0">禁用</el-radio> | 74 | <el-radio label="0">禁用</el-radio> |
75 | </el-radio-group> | 75 | </el-radio-group> |
76 | </el-form-item> | 76 | </el-form-item> |
77 | </el-col> | 77 | </el-col> |
78 | <el-col :span="16"> | 78 | <el-col :span="16"> |
79 | <el-form-item label="业务流程ID" prop="ywlc"> | 79 | <el-form-item label="业务流程ID" prop="flowid"> |
80 | <el-input v-model="ruleForm.ywlc"></el-input> | 80 | <el-input v-model="ruleForm.flowid"></el-input> |
81 | </el-form-item> | 81 | </el-form-item> |
82 | </el-col> | 82 | </el-col> |
83 | </el-row> | 83 | </el-row> |
... | @@ -96,18 +96,18 @@ | ... | @@ -96,18 +96,18 @@ |
96 | </el-row> | 96 | </el-row> |
97 | <el-row> | 97 | <el-row> |
98 | <el-col :span="8"> | 98 | <el-col :span="8"> |
99 | <el-form-item label="登记原因设置" prop="djyysz"> | 99 | <el-form-item label="登记原因设置" prop="sfqydjyymb"> |
100 | <el-radio-group v-model="ruleForm.djyysz"> | 100 | <el-radio-group v-model="ruleForm.sfqydjyymb"> |
101 | <el-radio :label="1">启用</el-radio> | 101 | <el-radio label="1">启用</el-radio> |
102 | <el-radio :label="0">禁用</el-radio> | 102 | <el-radio label="0">禁用</el-radio> |
103 | </el-radio-group> | 103 | </el-radio-group> |
104 | </el-form-item> | 104 | </el-form-item> |
105 | </el-col> | 105 | </el-col> |
106 | </el-row> | 106 | </el-row> |
107 | <el-row> | 107 | <el-row> |
108 | <el-col :span="24"> | 108 | <el-col :span="24"> |
109 | <el-form-item label="登记原因模板" prop="djyymb"> | 109 | <el-form-item label="登记原因模板" prop="djyy"> |
110 | <el-input type="textarea" :rows="4" placeholder="请输入内容" v-model="ruleForm.djyymb"> | 110 | <el-input type="textarea" :rows="4" placeholder="请输入内容" v-model="ruleForm.djyy"> |
111 | </el-input> | 111 | </el-input> |
112 | </el-form-item> | 112 | </el-form-item> |
113 | </el-col> | 113 | </el-col> |
... | @@ -180,11 +180,11 @@ export default { | ... | @@ -180,11 +180,11 @@ export default { |
180 | fqywdylx: '', | 180 | fqywdylx: '', |
181 | djywbm: '', | 181 | djywbm: '', |
182 | djywmc: '', | 182 | djywmc: '', |
183 | sfqy: 1, | 183 | enabled: '1', |
184 | ywlc: '', | 184 | flowid: '', |
185 | djqxcl: '', | 185 | djqxcl: '', |
186 | djyysz: 1, | 186 | sfqydjyymb: '1', |
187 | djyymb: '' | 187 | djyy: '' |
188 | }, | 188 | }, |
189 | requested: false, | 189 | requested: false, |
190 | fileList: [], | 190 | fileList: [], | ... | ... |
-
Please register or sign in to post a comment