目录结构
LaiKeJaveAdminView
├── LICENSE
├── README-zh.md
├── README.md
├── public
│ ├── bounced
│ │ ├── Choose.html #sku选择
│ └── index.html
├── src
│ ├── App.vue
│ ├── api #
│ │ ├── Platform #平台
│ │ ├── authority #
│ │ ├── constant #常量
│ │ │ └── page.js
│ │ ├── data #
│ │ │ └── index.js
│ │ ├── export #文件导出
│ │ ├── finance #财务管理
│ │ ├── goods #商品管理
│ │ ├── http.js #
│ │ ├── https.js #
│ │ ├── login #登陆
│ │ ├── mall #商城
│ │ ├── members #会员管理
│ │ ├── order #订单管理
│ │ ├── plug_ins #插件管理
│ │ │ ├── coupons.js #优惠券
│ │ │ ├── stores.js #店铺
│ │ │ └── template.js #模版
│ │ ├── publics #
│ │ │ └── cascade.js
│ │ └── resources #资源管理
│ │ └── imageManage.js
│ ├── assets #静态文件
│ ├── common
│ │ ├── commonFunction
│ │ └── commonStyle
│ │ ├── common.scss
│ │ └── form.less
│ ├── components
│ │ ├── Breadcrumb #面包屑
│ │ ├── Hamburger #
│ │ └── SvgIcon #
│ ├── icons #
│ │ ├── index.js
│ │ ├── svg
│ │ └── svgo.yml
│ ├── lang #国际化
│ │ ├── en.js #英文
│ │ ├── index.js
│ │ └── zh.js #中文
│ ├── layout #布局
│ │ ├── components
│ │ │ ├── AppMain.vue
│ │ │ ├── Navbar.vue
│ │ │ ├── SideBar
│ │ │ │ ├── index.vue
│ │ │ │ └── sideItem.vue
│ │ │ └── index.js
│ │ ├── index.vue
│ │ └── mixin
│ │ └── ResizeHandler.js #
│ ├── main.js #
│ ├── mixins #
│ │ └── index.js
│ ├── packages #
│ │ ├── Button # 按钮
│ │ ├── Pagination #分页
│ │ ├── Transfer #翻译
│ │ ├── Upload #图片上传
│ │ ├── apis #
│ │ │ ├── Base.js
│ │ │ ├── Config.js
│ │ │ └── Upload.js
│ │ ├── index.js
│ │ └── utils
│ │ └── utils.js
│ ├── permission.js #权限
│ ├── router #路由
│ ├── settings.js #
│ ├── store #vuex
│ │ ├── getters.js
│ │ ├── index.js
│ │ └── modules
│ │ ├── app.js
│ │ ├── authorization.js
│ │ ├── lang.js
│ │ ├── orderNum.js
│ │ ├── permission.js
│ │ ├── settings.js
│ │ ├── skinPeeler.js
│ │ ├── source.js
│ │ ├── superior.js
│ │ └── user.js
│ ├── styles #样式
│ │ ├── common.scss
│ │ ├── element-ui.scss
│ │ ├── icon.scss
│ │ ├── index.scss
│ │ ├── mixin.scss
│ │ ├── sidebar.scss
│ │ ├── transition.scss
│ │ └── variables.scss
│ ├── utils #
│ │ ├── auth.js
│ │ ├── get-page-title.js
│ │ ├── index.js
│ │ ├── rem.js
│ │ ├── request.js
│ │ ├── storage.js
│ │ ├── utils.js
│ │ └── validate.js
│ ├── views
│ │ ├── 404.vue
│ │ ├── Data #报表
│ │ │ ├── addvip-report
│ │ │ ├── goods-report
│ │ │ ├── orde-report
│ │ │ ├── vip-proportion
│ │ │ └── vipconsumption-report
│ │ ├── Demo #demo
│ │ │ ├── complex-table
│ │ │ ├── information-example
│ │ │ ├── table-example
│ │ │ ├── table-from
│ │ │ └── universal-module
│ │ ├── Platform #saas平台
│ │ │ ├── bulletin
│ │ │ ├── goodsSKU
│ │ │ ├── graphics
│ │ │ ├── logisticsCompanyManage
│ │ │ ├── merchants
│ │ │ ├── numerical
│ │ │ ├── parameter
│ │ │ ├── permissions
│ │ │ ├── reportManagement
│ │ │ └── system
│ │ ├── authority #商城权限管理
│ │ │ ├── adminLoggerManage
│ │ │ ├── adminUserManage
│ │ │ └── roleManagement
│ │ ├── dashboard #首页
│ │ ├── finance #财务管理
│ │ ├── goods #商品管理
│ │ │ ├── brandmanagement #品牌管理
│ │ │ ├── freightmanagement #运费管理
│ │ │ ├── goodsclassify #分类管理
│ │ │ ├── goodslist #商品列表
│ │ │ ├── inventoryManagement #运费管理
│ │ │ ├── tag #标签管理
│ │ │ └── taobaoAssistant #淘宝助手
│ │ ├── home #商城首页
│ │ ├── login #登陆
│ │ ├── mall
│ │ │ ├── aftersaleAddress #首页管理
│ │ │ ├── functionnavigation #功能导览
│ │ │ ├── payManagement #支付管理
│ │ │ ├── search #搜索配置
│ │ │ ├── sms #短信配置
│ │ │ ├── systemManagement #系统管理
│ │ │ ├── systemNotice #系统公告
│ │ │ └── terminalConfig #终端配置
│ │ ├── members #会员管理
│ │ ├── order #订单管理
│ │ │ ├── commentManage #评论管理
│ │ │ ├── orderList #订单列表
│ │ │ ├── orderSet #订单设置
│ │ │ ├── orderSettlement #订单结算
│ │ │ └── salesReturn #售后
│ │ ├── permission #权限
│ │ ├── plug_ins #插件管理
│ │ │ ├── coupons #优惠券
│ │ │ ├── distribution #分销
│ │ │ ├── stores #店铺
│ │ │ └── template #模版
│ │ ├── print #打印
│ │ └── resources #资源管理
│ │ └── imageList
│ └── webManage #js和css 分离文件夹
│ ├── css
│ │ ├── authority
│ │ │ └── roleManagement
│ │ ├── data
│ │ │ ├── addvip-report
│ │ │ ├── goods-report
│ │ │ ├── orde-report
│ │ │ └── vipconsumption-report
│ │ ├── finance
│ │ │ └── withdrawalManage
│ │ ├── goods
│ │ │ ├── goodslist
│ │ │ ├── inventoryManagement
│ │ │ ├── tag
│ │ │ └── taobaoAssistant
│ │ ├── home
│ │ ├── mall
│ │ │ ├── aftersaleAddress
│ │ │ ├── functionnavigation
│ │ │ ├── payManagement
│ │ │ ├── search
│ │ │ ├── sms
│ │ │ ├── systemManagement
│ │ │ ├── systemNotice
│ │ │ └── terminalConfig
│ │ ├── members
│ │ │ ├── addMembers
│ │ │ └── membersList
│ │ ├── order
│ │ │ ├── commentManage
│ │ │ ├── orderList
│ │ │ ├── orderSet
│ │ │ ├── orderSettlement
│ │ │ └── salesReturn
│ │ ├── platform
│ │ │ ├── logisticsCompanyManage
│ │ │ ├── reportManagement
│ │ │ └── system
│ │ └── plug_ins
│ │ ├── coupons
│ │ ├── distribution
│ │ ├── stores
│ │ └── template
│ └── js
│ ├── authority
│ │ ├── adminLoggerManage
│ │ ├── adminUserManage
│ │ └── roleManagement
│ ├── data
│ │ ├── addvip-report
│ │ ├── goods-report
│ │ ├── orde-report
│ │ ├── vip-proportion
│ │ └── vipconsumption-report
│ ├── finance
│ │ └── withdrawalManage
│ ├── goods
│ │ ├── goodslist
│ │ ├── inventoryManagement
│ │ ├── tag
│ │ └── taobaoAssistant
│ ├── home
│ │ └── homeReport.js
│ ├── mall
│ │ ├── aftersaleAddress
│ │ ├── functionnavigation
│ │ ├── payManagement
│ │ ├── search
│ │ ├── sms
│ │ ├── systemManagement
│ │ ├── systemNotice
│ │ └── terminalConfig
│ ├── members
│ │ ├── addMembers
│ │ ├── membersLevel
│ │ ├── membersList
│ │ └── membersSet
│ ├── order
│ │ ├── commentManage
│ │ ├── orderList
│ │ ├── orderSet
│ │ ├── orderSettlement
│ │ └── salesReturn
│ ├── platform
│ │ ├── logisticsCompanyManage
│ │ ├── reportManagement
│ │ └── system
│ ├── plug_ins
│ │ ├── coupons
│ │ ├── distribution
│ │ ├── stores
│ │ └── template
│ └── resources
├── theme #主题
└── vue.config.js