VUE实现商品管理系统源码
.
├── delivery-manage-master
│ ├── README.md
│ ├── babel.config.js
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.js
│ ├── public
│ │ ├── favicon.ico
│ │ └── index.html
│ ├── src
│ │ ├── App.vue
│ │ ├── assets
│ │ │ └── logo.png
│ │ ├── axios
│ │ │ └── index.js
│ │ ├── base
│ │ │ └── header
│ │ │ ├── avatar.jpg
│ │ │ ├── header.vue
│ │ │ ├── logo.jpg
│ │ │ └── logo.png
│ │ ├── common
│ │ │ ├── js
│ │ │ │ ├── api.js
│ │ │ │ └── util.js
│ │ │ └── stylus
│ │ │ ├── base.styl
│ │ │ ├── dataList.styl
│ │ │ ├── iconfont
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ └── index.styl
│ │ ├── components
│ │ │ ├── index
│ │ │ │ ├── addGoods
│ │ │ │ │ └── addGoods.vue
│ │ │ │ ├── addSeller
│ │ │ │ │ └── addSeller.vue
│ │ │ │ ├── goodsList
│ │ │ │ │ └── goodsList.vue
│ │ │ │ ├── index.vue
│ │ │ │ ├── orderList
│ │ │ │ │ └── orderList.vue
│ │ │ │ └── sellerList
│ │ │ │ └── sellerList.vue
│ │ │ └── login
│ │ │ └── login.vue
│ │ ├── main.js
│ │ └── router.js
│ └── vue.config.js
└── 找例子网_delivery-manage-master.zip
19 directories, 35 files
评论