README.txt 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. mer-pc
  2. ├── assets
  3. │ ├── fonts 字体包
  4. │ │ ├── D-DIN-PRO-400-Regular.ttf
  5. │ │ ├── D-DIN-PRO-600-SemiBold.ttf
  6. │ │ ├── OPPOSans-M.ttf
  7. │ │ ├── OPPOSans-R.ttf
  8. │ │ ├── alimamashuheiti.ttf
  9. │ │ └── font.css
  10. │ ├── iconfont 图标字体样式
  11. │ │ └── iconfont.css
  12. │ ├── images 图片
  13. │ └── scss 公共样式
  14. │ ├── element
  15. │ │ ├── dark.scss
  16. │ │ └── index.scss
  17. │ ├── checkbox.scss
  18. │ └── index.scss
  19. ├── components 公共组件
  20. │ ├── verifition 验证码点字验证组件
  21. │ │ ├── Verify
  22. │ │ │ ├── SilderVerify.vue
  23. │ │ │ ├── verifyPoints.vue
  24. │ │ │ └── verifySlider.vue
  25. │ │ ├── utils
  26. │ │ │ ├── ase.js
  27. │ │ │ ├── fomat.ts
  28. │ │ │ ├── tips.ts
  29. │ │ │ └── util.js
  30. │ │ ├── Verify.vue
  31. │ │ └── moveVerify.vue
  32. │ ├── UserLogin.vue 登录组件
  33. │ ├── addAddress.vue 地址组件
  34. │ ├── bannerIndex.vue 首页组件
  35. │ ├── classifyCard.vue 首页分类组件
  36. │ ├── confirmProduct.vue 提交订单中商品信息组件
  37. │ ├── countDown.vue 倒计时展示
  38. │ ├── couponList.vue 商户主页优惠券列表、我的优惠券
  39. │ ├── defaultComponents.ts 头部导航菜单
  40. │ ├── emptyPage.vue 数据空状态页面
  41. │ ├── headerSeach.vue 首页头部搜索
  42. │ ├── layoutAdvertisement.vue 首页头部广告
  43. │ ├── layoutFooter.vue 页面底部
  44. │ ├── layoutHeader.vue 页面头部
  45. │ ├── merchantIndex.vue 首页品牌好店
  46. │ ├── merchantList.vue 商户列表,关注商品、店铺街
  47. │ ├── merchantNews.vue 商户头像 资质 星级等
  48. │ ├── newcomerGift.vue 新人礼弹窗
  49. │ ├── notLoggedIn.vue 未登录页面展示
  50. │ ├── orderProduct.vue 商品信息,订单列表、评论列表中展示
  51. │ ├── pageHeader.vue 页面中头部展示标题使用
  52. │ ├── product.vue 商品列表,推荐商品,首页商品展示
  53. │ ├── productSeach.vue 商品列表,可用优惠券商品列表、商品搜索列表使用
  54. │ ├── recommend.vue 推荐商品列表组件
  55. │ ├── recommendedIndex.vue 首页推荐版本
  56. │ ├── rightNavigation.vue 右侧黑条菜单
  57. │ ├── seachList.vue 搜索条件筛选,可多选,商品搜索列表、商户搜索列表中使用
  58. │ ├── seckillIndex.vue 首页秒杀组件
  59. │ ├── sortSeach.vue 销量、价格、搜索搜索条件,商品列表、商户主页,搜索展示
  60. │ ├── successDialog.vue 成功提示弹窗
  61. │ ├── svipPrice.vue 商品价格,包括普通价、会员价
  62. │ ├── swiperIndex.vue swiper轮播
  63. │ ├── uploadFrom.vue 上传组件
  64. │ └── userProductList.vue 商品列表,收藏商品、我的足迹使用
  65. ├── composables 可复用的组合式
  66. │ ├── useCopy.ts 复制
  67. │ ├── useDialog.ts 模态框弹出、关闭
  68. │ ├── useMerchant.ts 店铺关注、取消关注、领取优惠券
  69. │ ├── useOrder.ts 订单相关操作
  70. │ ├── useOrderConfirm.ts 地址弹出框
  71. │ ├── useOrderRefund.ts 撤销售后
  72. │ ├── useProductDetail.ts 商品详情相关
  73. │ ├── useRouterItem.ts 获取浏览器传值
  74. │ ├── useScrollHeight.ts 浏览器视口相关
  75. │ └── verifyCode.ts 发送验证码
  76. ├── enums 枚举类型
  77. │ ├── cacheEnums.ts 本地缓存key
  78. │ └── requestEnums.ts 接口请求相关
  79. ├── layouts 布局系统
  80. │ └── default.vue 页面布局系统
  81. ├── middleware 中间件
  82. │ └── auth.global.ts 路由跳转中间件
  83. ├── nuxt
  84. │ └── env.ts
  85. ├── pages 页面
  86. │ ├── activity 营销活动
  87. │ │ ├── coupon_goods_list.vue 优惠券可用商品
  88. │ │ ├── coupon_list.vue 领券中心
  89. │ │ ├── information_info.vue
  90. │ │ ├── information_list.vue 资讯信息
  91. │ │ └── seckill_list.vue 限时秒杀
  92. │ ├── merchant 商户相关
  93. │ │ ├── merchant
  94. │ │ │ ├── home.vue 店铺首页商品分类
  95. │ │ │ └── recommending.vue 店铺首页swiper轮播
  96. │ │ ├── application_record.vue 商户入驻申请记录
  97. │ │ ├── defaultMerchant.ts 商户相关默认数据
  98. │ │ ├── merchant_home.vue 店铺首页
  99. │ │ ├── merchant_list.vue 店铺商品列表
  100. │ │ ├── merchant_settled.vue 商户入驻申请
  101. │ │ └── merchant_street.vue 品牌好店
  102. │ ├── order 订单相关
  103. │ │ ├── components
  104. │ │ │ └── returningGoods.vue 退回商品弹窗
  105. │ │ ├── apply_refund.vue 申请退款
  106. │ │ ├── defaultOrder.ts 订单相关默认值
  107. │ │ ├── orderRefund_details.vue 退款单详情
  108. │ │ ├── order_confirm.vue 订单提交页
  109. │ │ ├── order_details.vue 订单详情
  110. │ │ ├── order_logistics.vue 订单物流信息
  111. │ │ ├── order_pay_status.vue 订单之后结果页
  112. │ │ ├── order_payment.vue 收银台
  113. │ │ ├── product_evaluate.vue 商品评价
  114. │ │ ├── shopping_cart.vue 购物车
  115. │ │ └── virtual_order_details.vue 虚拟商品订单详情
  116. │ ├── product 商品相关
  117. │ │ ├── detail 商品详情
  118. │ │ │ └── [id].vue
  119. │ │ ├── activityStyleCard.vue 活动商品卡片
  120. │ │ ├── product_list.vue 商品搜索列表
  121. │ │ ├── product_recommended.vue 首页推荐商品更多
  122. │ │ ├── receiveCouponList.vue 商品详情领取优惠券抽屉
  123. │ │ └── seckillCard.vue 秒杀商品卡片
  124. │ ├── users 个人中心相关
  125. │ │ ├── components 弹窗组件
  126. │ │ │ ├── editUserPasswordFrom.vue 修改密码
  127. │ │ │ └── editUserPhoneFrom.vue 修改手机号
  128. │ │ ├── address_list.vue 地址管理
  129. │ │ ├── agreement_rules.vue 协议管理
  130. │ │ ├── browsing_history.vue 我的足迹
  131. │ │ ├── collect_merchant.vue 收藏店铺
  132. │ │ ├── collect_products.vue 收藏宝贝
  133. │ │ ├── defaultUser.ts 个人中心默认数据
  134. │ │ ├── evaluation_list.vue 评价晒单
  135. │ │ ├── index.vue
  136. │ │ ├── order_list.vue 订单列表
  137. │ │ ├── refund_list.vue 退款单列表
  138. │ │ ├── user_account.vue 账号密码
  139. │ │ ├── user_balance.vue 我的余额
  140. │ │ ├── user_coupon.vue 我的优惠券
  141. │ │ ├── user_info.vue 个人资料
  142. │ │ └── user_integral.vue 我的积分
  143. │ ├── index.vue 首页
  144. │ └── users.vue 个人中心主页面
  145. ├── plugins 插件
  146. │ ├── aos.ts 动画
  147. │ ├── element-plus.ts element框架
  148. │ ├── fetch.ts 数据请求
  149. │ ├── icons.ts 图标库
  150. │ ├── pinia.ts pinia数据状态管理
  151. │ └── vue-swiper.ts 轮播图
  152. ├── public 公共页面
  153. │ ├── CNAME
  154. │ └── favicon.ico 浏览器图标
  155. ├── scripts
  156. │ └── build.mjs
  157. ├── server 接口管理
  158. │ ├── activityApi.ts 营销活动
  159. │ ├── goodsApi.ts 商品相关
  160. │ ├── homeApi.ts 首页相关
  161. │ ├── merchantApi.ts 商户相关
  162. │ ├── orderApi.ts 订单相关
  163. │ └── userApi.ts 个人中心相关
  164. ├── stores 数据管理
  165. │ ├── app.ts
  166. │ └── user.ts
  167. ├── types 定义数据类型
  168. │ ├── activity.d.ts
  169. │ ├── global.d.ts
  170. │ ├── goods.d.ts
  171. │ ├── merchant.ts
  172. │ ├── order.d.ts
  173. │ └── user.d.ts
  174. ├── utils 公共方法
  175. │ ├── http
  176. │ │ ├── index.ts
  177. │ │ └── request.ts
  178. │ ├── env.ts
  179. │ ├── feedback.ts
  180. │ ├── filter.ts
  181. │ ├── helper.ts
  182. │ ├── util.ts
  183. │ └── validate.ts
  184. ├── .env.development 请求配置
  185. ├── .env.production 请求配置
  186. ├── app.vue 面共享的布局、样式和其他组件
  187. ├── nuxt.config.ts 配置文件
  188. └── unocss.config.ts unocss样式插件配置