s-menu-tools.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <!-- 全局 - 快捷入口 -->
  2. <template>
  3. <su-popup :show="show" type="top" round="20" backgroundColor="#F0F0F0" @close="closeMenuTools">
  4. <su-status-bar />
  5. <view class="tools-wrap ss-m-x-30 ss-m-b-16">
  6. <view class="title ss-m-b-34 ss-p-t-20">快捷菜单</view>
  7. <view class="container-list ss-flex ss-flex-wrap">
  8. <view class="list-item ss-m-b-24" v-for="item in list" :key="item.title">
  9. <view class="ss-flex-col ss-col-center">
  10. <button
  11. class="ss-reset-button list-image ss-flex ss-row-center ss-col-center"
  12. @tap="onClick(item)"
  13. >
  14. <image v-if="show" :src="sheep.$url.static(item.icon)" class="list-icon" />
  15. </button>
  16. <view class="list-title ss-m-t-20">{{ item.title }}</view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </su-popup>
  22. </template>
  23. <script setup>
  24. import { reactive, computed } from 'vue';
  25. import sheep from '@/sheep';
  26. import { showMenuTools, closeMenuTools } from '@/sheep/hooks/useModal';
  27. const show = computed(() => sheep.$store('modal').menu);
  28. function onClick(item) {
  29. closeMenuTools();
  30. if (item.url) sheep.$router.go(item.url);
  31. }
  32. const list = [
  33. {
  34. url: '/pages/index/index',
  35. icon: '/static/images/home.png',
  36. title: '首页',
  37. },
  38. {
  39. url: '/pages/index/search',
  40. icon: '/static/images/search.png',
  41. title: '搜索',
  42. },
  43. {
  44. url: '/pages/index/user',
  45. icon: '/static/images/user.png',
  46. title: '个人中心',
  47. },
  48. {
  49. url: '/pages/index/cart',
  50. icon: '/static/images/cart.png',
  51. title: '购物车',
  52. },
  53. {
  54. url: '/pages/user/goods-log',
  55. icon: '/static/images/browse.png',
  56. title: '浏览记录',
  57. },
  58. {
  59. url: '/pages/user/goods-collect',
  60. icon: '/static/images/collect.png',
  61. title: '我的收藏',
  62. },
  63. {
  64. url: '/pages/chat/index',
  65. icon: '/static/images/service.png',
  66. title: '客服',
  67. },
  68. ];
  69. </script>
  70. <style lang="scss" scoped>
  71. .tools-wrap {
  72. // background: #F0F0F0;
  73. // box-shadow: 0px 0px 28rpx 7rpx rgba(0, 0, 0, 0.13);
  74. // opacity: 0.98;
  75. // border-radius: 0 0 20rpx 20rpx;
  76. .title {
  77. font-size: 36rpx;
  78. font-weight: bold;
  79. color: #333333;
  80. }
  81. .list-item {
  82. width: calc(25vw - 20rpx);
  83. .list-image {
  84. width: 104rpx;
  85. height: 104rpx;
  86. border-radius: 52rpx;
  87. background: var(--ui-BG);
  88. .list-icon {
  89. width: 54rpx;
  90. height: 54rpx;
  91. }
  92. }
  93. .list-title {
  94. font-size: 26rpx;
  95. font-weight: 500;
  96. color: #333333;
  97. }
  98. }
  99. }
  100. .uni-popup {
  101. top: 0 !important;
  102. }
  103. :deep(.button-hover) {
  104. background: #fafafa !important;
  105. }
  106. </style>