radio全局样式调整

This commit is contained in:
Chopper
2021-05-17 18:07:19 +08:00
parent a0eaff276b
commit c63e44793c
33 changed files with 45 additions and 45 deletions

View File

@@ -84,7 +84,7 @@
<Input v-model="formValidate.nickName" style="width: 200px" />
</FormItem>
<FormItem label="性别" prop="sex">
<RadioGroup v-model="formValidate.sex">
<RadioGroup type="button" button-style="solid" v-model="formValidate.sex">
<Radio :label="1">
<span></span>
</Radio>

View File

@@ -351,7 +351,7 @@
<Input v-model="addressForm.alias" clearable style="width: 80%" maxlength="8"/>
</FormItem>
<FormItem label="默认" prop="isDefault">
<RadioGroup v-model="addressForm.isDefault">
<RadioGroup type="button" button-style="solid" v-model="addressForm.isDefault">
<Radio :label=true></Radio>
<Radio :label=false></Radio>
</RadioGroup>

View File

@@ -102,7 +102,7 @@
<Input v-model="formValidate.nickName" style="width: 200px"/>
</FormItem>
<FormItem label="性别" prop="sex">
<RadioGroup v-model="formValidate.sex">
<RadioGroup type="button" button-style="solid" v-model="formValidate.sex">
<Radio :label="1">
<span></span>
</Radio>

View File

@@ -39,7 +39,7 @@
</FormItem>
<div v-if="type==0">
<FormItem label="发送范围">
<RadioGroup v-model="form.range">
<RadioGroup type="button" button-style="solid" v-model="form.range">
<Radio :label="0">全体用户</Radio>
<Radio :label="1">指定用户成员</Radio>
</RadioGroup>

View File

@@ -24,7 +24,7 @@
</FormItem>
<div v-if="type==0">
<FormItem label="发送范围">
<RadioGroup v-model="form.sendType" >
<RadioGroup type="button" button-style="solid" v-model="form.sendType" >
<Radio label="ALL">全部会员</Radio>
<Radio label="SELECT">指定会员</Radio>
</RadioGroup>