修改下啦复选框大小

master
于肖磊 2025-07-15 11:34:35 +08:00
parent 2077f0cc61
commit abc45a449a
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@
<checkbox-group @change="data_checkbox_change" class="flex-col gap-10">
<label v-for="(item, index) in new_option_list" class="popup-checkbox flex-row align-c" :key="index">
<view>
<checkbox :value="item.value" :checked="!isEmpty(popup_list) && popup_list.includes(item.value)" class="flex-row align-c" />
<checkbox :value="item.value" :checked="!isEmpty(popup_list) && popup_list.includes(item.value)" class="flex-row align-c" style="transform:scale(0.8)"/>
</view>
<view :style="is_multicolour == '1' ? 'background:' + item.color + ';color:' + (item.is_other == '1' ? '#141E31' : '#fff') + ';border-radius:8rpx;' + color_style : color_style + 'padding-left:0rpx;padding-right:0rpx;'">{{ item.name }}</view>
</label>