Element 单选框 el-radio 点击改变触发事件使用示例

    xiaoxiao2022-06-30  128

    效果:

                

    代码:

    <el-radio-group v-model="radioTreaty" @change="agreeChange">     <el-radio label="1" border>不同意</el-radio>     <el-radio label="2" border>同意</el-radio> </el-radio-group> <el-button type="primary" :disabled="btnstatus" @click="orderSubmit" style="width: 180px;">提交订单</el-button> export default { data() { return {        radioTreaty: '1',        btnstatus:true, } }, methods: { agreeChange:function(val){ let that = this that.btnstatus=(val==='1')?true:false; } } }

    最新回复(0)