Commit 6e26302617024daf5b8d831f74f214aae8ea0fd5
1 parent
3ce59fdb
优化
Showing
2 changed files
with
6 additions
and
2 deletions
src/App.vue
| ... | ... | @@ -11,8 +11,12 @@ |
| 11 | 11 | </script> |
| 12 | 12 | |
| 13 | 13 | <style rel="stylesheet/less" lang="less"> |
| 14 | + .mint-toast{ | |
| 15 | + z-index:2200 !important; | |
| 16 | + } | |
| 14 | 17 | .mint-toast-text { |
| 15 | 18 | font-size: 30px !important; |
| 19 | + z-index:10000 !important; | |
| 16 | 20 | } |
| 17 | 21 | .mint-indicator-text { |
| 18 | 22 | font-size: 30px !important; | ... | ... |
src/pages/goodDetails/goodDetails.vue
| ... | ... | @@ -165,7 +165,7 @@ |
| 165 | 165 | <!-- 支付方式 --> |
| 166 | 166 | <div class="line_box"> |
| 167 | 167 | <div class="left">支付方式</div> |
| 168 | - <div class="right">积分加现金</div> | |
| 168 | + <div class="right">积分+现金</div> | |
| 169 | 169 | </div> |
| 170 | 170 | <!-- 按钮 --> |
| 171 | 171 | <div @click="jumpToConfirmOrderPage(goodsInfo)" class="btn">确定</div> |
| ... | ... | @@ -555,7 +555,7 @@ export default { |
| 555 | 555 | // 判断值是否大于库存 |
| 556 | 556 | onChange(value) { |
| 557 | 557 | if(this.goodsInfo.stock > -1 && value > this.goodsInfo.stock){ |
| 558 | - Toast("库存不足") | |
| 558 | + Toast("数量超出范围~") | |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | 561 | }, | ... | ... |