目录结构
├── README-zh.md
├── README.md
├── babel.config.js
├── build
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│ ├── bounced
│ │ ├── Choose.html #商品规格
│ │ ├── img
│ │ ├── jquery
│ │ ├── js
│ │ ├── style
│ │ └── vue
│ ├── favicon.ico
│ └── index.html
├── src
│ ├── api #接口
│ │ ├── Platform
│ │ ├── authority
│ │ ├── constant
│ │ ├── data
│ │ ├── export
│ │ ├── finance
│ │ ├── goods
│ │ ├── layout
│ │ ├── login
│ │ ├── mall
│ │ ├── members
│ │ ├── moneyManagement
│ │ ├── order
│ │ ├── plug_ins
│ │ ├── publics
│ │ ├── set
│ │ └── stores
│ ├── assets #静态资源图片
│ │ ├── 404_images
│ │ ├── imgs
│ │ └── sidebar
│ ├── common #
│ │ ├── commonFunction
│ │ └── commonStyle
│ ├── components #组件
│ │ ├── Breadcrumb
│ │ ├── Hamburger
│ │ └── SvgIcon
│ ├── icons
│ │ ├── index.js
│ │ ├── svg
│ │ └── svgo.yml
│ ├── lang
│ ├── layout #总体布局
│ │ ├── components
│ │ │ ├── AppMain.vue
│ │ │ ├── Navbar.vue
│ │ │ ├── SideBar
│ │ ├── index.vue
│ │ └── mixin
│ ├── main.js
│ ├── mixins
│ ├── packages
│ │ ├── Button
│ │ │ └── src
│ │ ├── Pagination
│ │ │ ├── index.vue
│ │ │ └── style
│ │ ├── Transfer
│ │ │ ├── index.js
│ │ │ ├── index.vue
│ │ │ └── style
│ │ ├── Upload
│ │ │ ├── components
│ │ │ ├── dialog.vue
│ │ │ ├── index.js
│ │ │ ├── index.vue
│ │ │ ├── style
│ │ │ └── uploadDialog.vue
│ │ ├── apis
│ │ │ ├── Base.js
│ │ │ ├── Config.js
│ │ │ └── Upload.js
│ │ ├── index.js
│ │ └── utils
│ │ └── utils.js
│ ├── permission.js #权限
│ ├── router
│ │ └── index.js #
│ ├── settings.js #
│ ├── store #店铺
│ │ ├── getters.js
│ │ ├── index.js
│ │ └── modules
│ ├── styles
│ ├── utils
│ ├── views
│ │ ├── 404.vue
│ │ ├── authority #权限管理
│ │ │ ├── adminLoggerManage
│ │ │ ├── adminUserManage
│ │ │ ├── permissions
│ │ │ └── roleManagement
│ │ ├── dashboard #控制台
│ │ │ └── index.vue
│ │ ├── goods #商品管理
│ │ │ ├── auditGoods
│ │ │ ├── freight
│ │ │ ├── goodslist
│ │ │ └── optional
│ │ ├── login # 登录
│ │ │ └── login.vue
│ │ ├── moneyManagement # 财务管理
│ │ │ ├── InvoiceManagement
│ │ │ ├── accountingRecords
│ │ │ ├── afterDetail
│ │ │ ├── bankCard
│ │ │ ├── expenditure
│ │ │ └── withdrawalDetails
│ │ ├── order #订单管理
│ │ │ ├── obligation
│ │ │ ├── orderList
│ │ │ ├── orderSet
│ │ │ ├── orderSettlement
│ │ │ ├── salesReturn
│ │ │ └── sendGoods
│ │ ├── plug_ins #插件
│ │ │ ├── auction
│ │ │ ├── integralMall
│ │ │ ├── seckill
│ │ │ └── supplier
│ │ ├── print # 订单打印
│ │ │ └── index.vue
│ │ ├── set #设置
│ │ │ ├── changePassword
│ │ │ ├── slideshowSet
│ │ │ └── storesInfo
│ │ └── stores
│ │ └── storesList
│ └── webManage
│ ├── css
│ │ ├── authority
│ │ ├── goods
│ │ ├── moneyManagement
│ │ ├── order
│ │ └── plug_ins
│ └── js
│ ├── authority
│ ├── goods
│ ├── moneyManagement
│ ├── order
│ └── plug_ins
├── tests
│ └── unit
│ ├── components
│ └── utils
├── theme
│ ├── fonts
│ └── index.css
└── vue.config.js