显示目录
DSShop帮助手册 DSShop技术手册 DSShop开发手册

DSShop目录结构(Vue.js)

│  package.json                        项目描述及依赖包
│  vue.config.js                        Vue-cli3可选配置文件
│          
├─public                            公共文件
│      config.js                      公共配置文件
│      favicon.ico                     图标
│      index.html                     入口文件
│      
└─src
    │  App.vue                       VUE根主键
    │  main.js                       主函数入口文件
    │  
    ├─api                          相关接口引用
    │      
    ├─assets                        静态资源
    │  ├─image
    │  │          
    │  ├─js
    │  │      
    │  └─style
    │              
    ├─components                      公共组件 
    │  │  
    │  ├─home
    │  │  │  HomeBase.vue              前端公共组件
    │  │  │  
    │  │  ├─article                  文章组件   
    │  │  ├─brand                   购物车组件
    │  │  ├─cart   
    │  │  ├─common                  公共组件  
    │  │  ├─goodsclass                商品分类
    │  │  ├─goodsdetail                商品详情组件   
    │  │  ├─goodslist                 商品列表组
    │  │  ├─index                   首页
    │  │  ├─memberbind                用户绑定 
    │  │  ├─memberforget               忘记密码
    │  │  ├─memberlogin                登录
    │  │  ├─memberregister              注册
    │  │  ├─pintuan                  拼团
    │  │  ├─pointsgoods                积分商品       
    │  │  ├─search                  搜索
    │  │  ├─sellerlogin                商家登录
    │  │  ├─storeclass                店铺分类 
    │  │  ├─storedetail                店铺详情
    │  │  ├─storegoodsclass              店铺商品分类
    │  │  ├─storegoodslist              店铺商品列表
    │  │  └─storelist                 店铺列表
    │  │          
    │  └─member                     用户中心
    │      │  MemberBase.vue             用户中心公共组件
    │      ├─address                  地址编辑
    │      ├─buy                    下单 
    │      ├─common                  公共组件   
    │      ├─complaint                 投诉
    │      ├─consult                  咨询
    │      ├─evaluate                 评价
    │      ├─favorite                 收藏
    │      ├─friend                  好友
    │      ├─index                   用户中心   
    │      ├─inviter                  邀请
    │      ├─invoice                  发票管理 
    │      ├─notice                  通知
    │      ├─order                   实物订单
    │      ├─point                   积分商品
    │      ├─pointsbuy                 积分商品下单      
    │      ├─pointscart                积分商品购物车
    │      ├─pointsorder                积分订单 
    │      ├─predeposit                预存款
    │      ├─profile                  个人资料编辑
    │      ├─recharge                 充值管理
    │      ├─refund                  退款
    │      ├─return                  退货
    │      ├─setting                  账户设置
    │      ├─voucher                  代金券
    │      ├─vrbuy                   虚拟订单下单
    │      ├─vrorder                  虚拟订单
    │      ├─vrrefund                 虚拟订单退款
    │      └─withdraw                 提现
    │              
    ├─const                         常量定义
    │      
    ├─router                        路由
    │      
    ├─store                         状态管理
    │  │  
    │  └─modules
    │          config.js              配置模块    
    │          goodsclass.js            商品分类模块
    │          goodsdetail.js           商品详情模块
    │          home.js               首页模块
    │          homecart.js             购物车模块
    │          homesearch.js            搜索模块
    │          member.js              用户模块
    │          pointsgoods.js           积分商品模块 
    │          
    └─util