to-shoppingCart.vue 1014 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div
  3. class="to-shoppingCart"
  4. v-if="show"
  5. @click="$router.push('/product-shopping-cart')"
  6. >
  7. <img src="@/assets/icon/gouwuche.png" alt="" />
  8. <div class="mark" v-if="cartNum > 0">{{ cartNum }}</div>
  9. </div>
  10. </template>
  11. <script>
  12. import { mapState } from "vuex";
  13. export default {
  14. name: "ToShoppingCart",
  15. computed: {
  16. ...mapState({
  17. cartNum: (state) => state.mark_num.productMarkNum.trolley_num,
  18. }),
  19. show() {
  20. let show_list = ["/product", "/product-details"];
  21. return (
  22. !this.$route.meta.children &&
  23. show_list.includes(this.$route.path) &&
  24. localStorage.getItem("user_info")
  25. );
  26. },
  27. },
  28. };
  29. </script>
  30. <style lang="scss" scoped>
  31. .to-shoppingCart {
  32. position: relative;
  33. img {
  34. width: 50px;
  35. height: 50px;
  36. }
  37. .mark {
  38. width: 12px;
  39. padding: 0 6px;
  40. background: #ff3535;
  41. border-radius: 6px;
  42. position: absolute;
  43. top: 0;
  44. left: 30px;
  45. text-align: center;
  46. color: white;
  47. }
  48. }
  49. </style>