Merge remote-tracking branch 'origin/master'
Showing
3 changed files
with
9 additions
and
5 deletions
... | @@ -65,7 +65,7 @@ export default { | ... | @@ -65,7 +65,7 @@ export default { |
65 | }, | 65 | }, |
66 | { | 66 | { |
67 | label: '是否必填', | 67 | label: '是否必填', |
68 | width: '100', | 68 | width: '130', |
69 | render: (h, scope) => { | 69 | render: (h, scope) => { |
70 | return ( | 70 | return ( |
71 | <el-radio-group v-model={scope.row.isrequired} onChange={(val) => { scope.row[scope.column.property] = val }}> | 71 | <el-radio-group v-model={scope.row.isrequired} onChange={(val) => { scope.row[scope.column.property] = val }}> | ... | ... |
... | @@ -320,7 +320,7 @@ export default { | ... | @@ -320,7 +320,7 @@ export default { |
320 | @import "~@/styles/mixin.scss"; | 320 | @import "~@/styles/mixin.scss"; |
321 | 321 | ||
322 | /deep/.el-radio { | 322 | /deep/.el-radio { |
323 | margin-right: 8px; | 323 | margin-right: 0; |
324 | } | 324 | } |
325 | 325 | ||
326 | /deep/.el-radio__label { | 326 | /deep/.el-radio__label { | ... | ... |
1 | <template> | 1 | <template> |
2 | <el-dialog :title="sqqlRule.nodename" custom-class="dialogBox contentCenter" width="85%" top="0" | 2 | <el-dialog :title="sqqlRule.nodename" custom-class="dialogBox contentCenter" width="80%" top="0" |
3 | :visible.sync="dialogVisible" :before-close="cancelDialog"> | 3 | :visible.sync="dialogVisible" :before-close="cancelDialog"> |
4 | <ul class="edit-title-list" v-if="djlxList.length > 0"> | 4 | <ul class="edit-title-list" v-if="djlxList.length > 0"> |
5 | <li v-for="(item, index) in djlxList" @click="handleTitleSelct(item, index)" :key="index" | 5 | <li v-for="(item, index) in djlxList" @click="handleTitleSelct(item, index)" :key="index" |
... | @@ -205,7 +205,7 @@ export default { | ... | @@ -205,7 +205,7 @@ export default { |
205 | }, | 205 | }, |
206 | { | 206 | { |
207 | label: '是否启用登记情形', | 207 | label: '是否启用登记情形', |
208 | width: '140', | 208 | width: '141', |
209 | render: (h, scope) => { | 209 | render: (h, scope) => { |
210 | return ( | 210 | return ( |
211 | <el-radio-group v-model={scope.row.enabled} disabled={scope.row.sftsdjqx == '1'} onChange={(val) => { scope.row[scope.column.property] = val }}> | 211 | <el-radio-group v-model={scope.row.enabled} disabled={scope.row.sftsdjqx == '1'} onChange={(val) => { scope.row[scope.column.property] = val }}> |
... | @@ -324,7 +324,7 @@ export default { | ... | @@ -324,7 +324,7 @@ export default { |
324 | }, | 324 | }, |
325 | { | 325 | { |
326 | label: '是否公共材料', | 326 | label: '是否公共材料', |
327 | width: '100', | 327 | width: '110', |
328 | render: (h, scope) => { | 328 | render: (h, scope) => { |
329 | return ( | 329 | return ( |
330 | <el-radio-group v-model={scope.row.sfggcl} onChange={(val) => { scope.row[scope.column.property] = val; this.handleSelectGgcl(scope.row) }}> | 330 | <el-radio-group v-model={scope.row.sfggcl} onChange={(val) => { scope.row[scope.column.property] = val; this.handleSelectGgcl(scope.row) }}> |
... | @@ -428,6 +428,10 @@ export default { | ... | @@ -428,6 +428,10 @@ export default { |
428 | overflow-y: scroll; | 428 | overflow-y: scroll; |
429 | } | 429 | } |
430 | 430 | ||
431 | .el-radio-group { | ||
432 | white-space: nowrap; | ||
433 | } | ||
434 | |||
431 | .form { | 435 | .form { |
432 | background: #eee; | 436 | background: #eee; |
433 | padding: 0 10px; | 437 | padding: 0 10px; | ... | ... |
-
Please register or sign in to post a comment