当前位置:网站首页>v-if/v-else根据计算判断是否显示
v-if/v-else根据计算判断是否显示
2022-08-05 07:25:00 【小布丁儿Y】
判断输入的金额*数量是否大于当前余额 或者小于等于当前余额 (两种状态)
大于当前余额
小于等于当前余额
html:
<view class="footer fc">
<view class="baseBtn" v-if="(amount<=this.balance)" @click="creatPay()">创建优惠券
</view>
<view class="baseBtn cur" v-else>余额不足,请先充值</view>
</view>
data:
data() {
return {
quota: '', //发放数量
couponAmount: '', //发放方式为固定时传 单个金额
balance:'', //余额
}
},
我是在computed去做处理的
computed:{
//判断单个金额*总数量是否大于余额
amount: function(){
return this.couponAmount * this.quota
}
},
边栏推荐
- 本地能ping通虚拟机,虚拟机ping不通本地
- 线性代数对角化
- Cannot compare or sort text, ntext, and image data types
- AI+视频技术助力保障校园安全,校园智能安防平台该如何建设?
- [instancetype type Objective-C]
- 对数据类型而言运算符无效。运算符为 add,类型为 text。
- 强网杯2022 pwn 赛题解析——house_of_cat
- RNote108---Display the running progress of the R program
- (4) Rotating object detection data roLabelImg to DOTA format
- GAN generates anime avatar Pytorch
猜你喜欢
随机推荐
二叉搜索树问题
JS实现从照片中裁切自已的肖像
TCP sticky packet unpacking problem + solution
Re regular expressions
moment的使用
2006年星座运势全解-巨蟹
MAYA大炮建模
Week 8 Document Clustering(文本聚类)
Win10 设置锁屏壁纸提示尝试其它图片
工作3年,回想刚入门和现在的今昔对比,笑谈一下自己的测试生涯
protobuf根据有关联的.proto文件进行编译
TRACE32——加载符号表信息用于调试
protobuf is compiled against the associated .proto file
Shiny02---Shiny exception solution
向美国人学习“如何快乐”
php向mysql写入数据失败
Bluetooth gap protocol
Libpq 是否支持读写分离配置
Shiny04---Application of DT and progress bar in shiny
Shiny04---DT和进度条在shiny中的应用