fix
Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -1135,7 +1135,7 @@ const panelChange = (scope, row) => { | ... | @@ -1135,7 +1135,7 @@ const panelChange = (scope, row) => { |
| 1135 | <p class="label_tips">{{ setLabelTips(formInline[child.field], child) }}</p> | 1135 | <p class="label_tips">{{ setLabelTips(formInline[child.field], child) }}</p> |
| 1136 | </template> | 1136 | </template> |
| 1137 | </div> | 1137 | </div> |
| 1138 | <el-radio-group :class="[item.col, { is_block: item.block }]" v-else-if="item.type == 'radio-group-input'" | 1138 | <el-radio-group :class="[item.col, { is_block: item.block }]" v-else-if="item.type == 'radio-group'" |
| 1139 | v-model="formInline[item.field]" @change="(val) => radioGroupChange(val, item)"> | 1139 | v-model="formInline[item.field]" @change="(val) => radioGroupChange(val, item)"> |
| 1140 | <el-radio v-for="(radio, index) in item.options" :label="radio.value"> | 1140 | <el-radio v-for="(radio, index) in item.options" :label="radio.value"> |
| 1141 | <template #default> | 1141 | <template #default> | ... | ... |
| ... | @@ -1387,7 +1387,7 @@ const productRegisterInfoItems = ref([{ | ... | @@ -1387,7 +1387,7 @@ const productRegisterInfoItems = ref([{ |
| 1387 | }, | 1387 | }, |
| 1388 | { | 1388 | { |
| 1389 | label: "是否向社会开放", | 1389 | label: "是否向社会开放", |
| 1390 | type: "radio-group-input", | 1390 | type: "radio-group", |
| 1391 | placeholder: "", | 1391 | placeholder: "", |
| 1392 | field: "isSocialOpenness", | 1392 | field: "isSocialOpenness", |
| 1393 | col: 'other-group-flex', | 1393 | col: 'other-group-flex', | ... | ... |
-
Please register or sign in to post a comment