点击的按钮为必选状态

Posted xiaoxiaoxun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击的按钮为必选状态相关的知识,希望对你有一定的参考价值。

let total_selected = 0
//点击购物车确定按钮 判断用户选中的数量(必须手动勾选)
that.data.sku.tree.forEach(item => {
item.v.forEach(item => {
console.log(item)
if (item.isSelect == ‘true‘) {
total_selected += 1
}
})
})
// 是否 等于数组的长度 如果不等于就提示 阻止用户确定
if (total_selected != that.data.sku.tree.length) {
wx.showToast({
title: ‘请选择规格‘
})
return
}
if (that.data.sku.tree.length == 0) {
that.data.skuId = that.data.sku.list[0].id;
} else {
if (that.data.skuId == ‘‘) {
wx.showToast({
title: ‘请选择规格!‘,
icon: ‘none‘,
})
return;
}
}

以上是关于点击的按钮为必选状态的主要内容,如果未能解决你的问题,请参考以下文章

在 Flutter 中隐藏/删除状态栏(点击按钮)

防止按钮连续点击的一个新思路

如何使模板中的所有字段在TFS中成为必填?

android 如何设置按钮 不可点击

Android 动画 - 按钮保持可点击状态

如何使用javascript使按钮变灰且不能点击?