cartfixed.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <view class="">
  3. <view v-if="vuex_member_info.name" class="cart u-flex u-row-center" @click="$u.route('/shopping/cart',{type:'reLaunch'})">
  4. <u-icon size="52rpx" class="icon" :name="staticUrl+'/img/cartico.png'"></u-icon>
  5. <u-badge type="error" max="99" :value="cartTotal" :absolute="true" :offset="[0,5]"></u-badge>
  6. </view>
  7. <u-toast ref="uToast"></u-toast>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. name:'cartfixed',
  13. data() {
  14. return {
  15. cartTotal:0,
  16. staticUrl:this.$commonConfig.staticUrl,
  17. }
  18. },
  19. onShow() {
  20. },
  21. onLoad() {
  22. },
  23. mounted(){
  24. this.getCartList()
  25. },
  26. methods: {
  27. getCartList(isAdd){
  28. if(!this.vuex_member_info.name){
  29. return
  30. }
  31. this.$u.api.cartList().then(res=>{
  32. if(isAdd){
  33. if(res.data.total==this.cartTotal){
  34. uni.showToast({
  35. title:'添加成功',
  36. icon:'success',
  37. duration:1000
  38. })
  39. // this.$refs.uToast.show({
  40. // type:"success",
  41. // message:'已在购物车'
  42. // });
  43. }else{
  44. uni.showToast({
  45. title:'添加成功',
  46. icon:'success',
  47. duration:1000
  48. })
  49. // this.$refs.uToast.show({
  50. // type:"success",
  51. // message:'加入成功'
  52. // });
  53. }
  54. }
  55. this.cartTotal = res.data.total;
  56. console.log('getCartList',res);
  57. }).catch(err=>{
  58. console.log('getCartList',err.data);
  59. })
  60. },
  61. addToCart(num){
  62. this.getCartList()
  63. // this.cartTotal += num;
  64. console.log('addToCart',num);
  65. }
  66. }
  67. }
  68. </script>
  69. <style lang="scss" scoped>
  70. .cart{
  71. position: fixed;
  72. width: 100rpx;
  73. height: 100rpx;
  74. border-radius: 50%;
  75. right: 20rpx;
  76. bottom: 300rpx;
  77. background: #FFFFFF;
  78. box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
  79. }
  80. </style>