實現效果
代碼
html
<div class="divrow"><el-checkbox-group v-model="isSendTag" :max="1"><el-checkbox v-for="(item, index) in isSendTagOptions" :key="index" :label="item.value">{{item.label }}</el-checkbox></el-checkbox-group><span style="font-size:medium;margin-left: 1vw;">使用標簽發送:</span><el-checkbox-group v-model="tagId"><el-checkbox v-for="(item, index) in tagidOptions" :key="index" :label="item.value" :disabled="isTagDisabled">{{item.label }}</el-checkbox></el-checkbox-group>
</div>
js
//發送是否使用標簽選擇
var isSendTagOptions = [{"label": "","value": 2
}]var tagidOptions = [{"label": "全部用戶","value": 1
}, {"label": "管理員","value": 2
}, {"label": "普通用戶","value": 3
}]
const isTagDisabled = computed(() => !isSendTag.value.includes(2));