实例介绍
电商后台管理系统的前端项目,基于Vue+Element实现。 主要包括商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等功能
【实例截图】
【核心代码】
MallAdmin-web
└── MallAdmin-web
├── build
│ ├── build.js
│ ├── check-versions.js
│ ├── logo.png
│ ├── utils.js
│ ├── vue-loader.conf.js
│ ├── webpack.base.conf.js
│ ├── webpack.dev.conf.js
│ └── webpack.prod.conf.js
├── config
│ ├── dev.env.js
│ ├── index.js
│ └── prod.env.js
├── index.html
├── LICENSE
├── package.json
├── package-lock.json
├── README.md
├── src
│ ├── api
│ │ ├── brand.js
│ │ ├── companyAddress.js
│ │ ├── couponHistory.js
│ │ ├── coupon.js
│ │ ├── flash.js
│ │ ├── flashProductRelation.js
│ │ ├── flashSession.js
│ │ ├── homeAdvertise.js
│ │ ├── homeBrand.js
│ │ ├── homeSubject.js
│ │ ├── hotProduct.js
│ │ ├── login.js
│ │ ├── memberLevel.js
│ │ ├── newProduct.js
│ │ ├── order.js
│ │ ├── orderSetting.js
│ │ ├── oss.js
│ │ ├── prefrenceArea.js
│ │ ├── productAttrCate.js
│ │ ├── productAttr.js
│ │ ├── productCate.js
│ │ ├── product.js
│ │ ├── returnApply.js
│ │ ├── returnReason.js
│ │ ├── skuStock.js
│ │ └── subject.js
│ ├── App.vue
│ ├── assets
│ │ └── images
│ │ ├── 404_cloud.png
│ │ ├── 404.png
│ │ ├── gif_404.gif
│ │ └── login_center_bg.png
│ ├── components
│ │ ├── Breadcrumb
│ │ │ └── index.vue
│ │ ├── Hamburger
│ │ │ └── index.vue
│ │ ├── ScrollBar
│ │ │ └── index.vue
│ │ ├── SvgIcon
│ │ │ └── index.vue
│ │ ├── Tinymce
│ │ │ ├── components
│ │ │ │ └── editorImage.vue
│ │ │ ├── index.vue
│ │ │ └── zh_CN.js
│ │ └── Upload
│ │ ├── multiUpload.vue
│ │ └── singleUpload.vue
│ ├── icons
│ │ ├── index.js
│ │ └── svg
│ │ ├── example.svg
│ │ ├── eye.svg
│ │ ├── form.svg
│ │ ├── home.svg
│ │ ├── login-mall.svg
│ │ ├── marker.svg
│ │ ├── order-return-reason.svg
│ │ ├── order-return.svg
│ │ ├── order-setting.svg
│ │ ├── order.svg
│ │ ├── password.svg
│ │ ├── product-add.svg
│ │ ├── product-attr.svg
│ │ ├── product-brand.svg
│ │ ├── product-cate.svg
│ │ ├── product-comment.svg
│ │ ├── product-list.svg
│ │ ├── product-recycle.svg
│ │ ├── product.svg
│ │ ├── sms-ad.svg
│ │ ├── sms-coupon.svg
│ │ ├── sms-flash.svg
│ │ ├── sms-hot.svg
│ │ ├── sms-new.svg
│ │ ├── sms-subject.svg
│ │ ├── sms.svg
│ │ ├── table.svg
│ │ ├── total-today.svg
│ │ ├── total-week.svg
│ │ ├── total-yesterday.svg
│ │ ├── tree.svg
│ │ └── user.svg
│ ├── main.js
│ ├── permission.js
│ ├── router
│ │ └── index.js
│ ├── store
│ │ ├── getters.js
│ │ ├── index.js
│ │ └── modules
│ │ ├── app.js
│ │ └── user.js
│ ├── styles
│ │ ├── element-ui.scss
│ │ ├── index.scss
│ │ ├── mixin.scss
│ │ ├── sidebar.scss
│ │ ├── transition.scss
│ │ └── variables.scss
│ ├── utils
│ │ ├── auth.js
│ │ ├── date.js
│ │ ├── index.js
│ │ ├── request.js
│ │ ├── support.js
│ │ └── validate.js
│ └── views
│ ├── 404.vue
│ ├── home
│ │ └── index.vue
│ ├── layout
│ │ ├── components
│ │ │ ├── AppMain.vue
│ │ │ ├── index.js
│ │ │ ├── Navbar.vue
│ │ │ └── Sidebar
│ │ │ ├── index.vue
│ │ │ └── SidebarItem.vue
│ │ ├── Layout.vue
│ │ └── mixin
│ │ └── ResizeHandler.js
│ ├── login
│ │ └── index.vue
│ ├── oms
│ │ ├── apply
│ │ │ ├── applyDetail.vue
│ │ │ ├── index.vue
│ │ │ └── reason.vue
│ │ └── order
│ │ ├── components
│ │ │ └── logisticsDialog.vue
│ │ ├── deliverOrderList.vue
│ │ ├── index.vue
│ │ ├── orderDetail.vue
│ │ └── setting.vue
│ ├── pms
│ │ ├── brand
│ │ │ ├── add.vue
│ │ │ ├── components
│ │ │ │ └── BrandDetail.vue
│ │ │ ├── index.vue
│ │ │ └── update.vue
│ │ ├── product
│ │ │ ├── add.vue
│ │ │ ├── components
│ │ │ │ ├── ProductAttrDetail.vue
│ │ │ │ ├── ProductDetail.vue
│ │ │ │ ├── ProductInfoDetail.vue
│ │ │ │ ├── ProductRelationDetail.vue
│ │ │ │ └── ProductSaleDetail.vue
│ │ │ ├── index.vue
│ │ │ └── update.vue
│ │ ├── productAttr
│ │ │ ├── addProductAttr.vue
│ │ │ ├── components
│ │ │ │ └── ProductAttrDetail.vue
│ │ │ ├── index.vue
│ │ │ ├── productAttrList.vue
│ │ │ └── updateProductAttr.vue
│ │ └── productCate
│ │ ├── add.vue
│ │ ├── components
│ │ │ └── ProductCateDetail.vue
│ │ ├── index.vue
│ │ └── update.vue
│ └── sms
│ ├── advertise
│ │ ├── add.vue
│ │ ├── components
│ │ │ └── HomeAdvertiseDetail.vue
│ │ ├── index.vue
│ │ └── update.vue
│ ├── brand
│ │ └── index.vue
│ ├── coupon
│ │ ├── add.vue
│ │ ├── components
│ │ │ └── CouponDetail.vue
│ │ ├── history.vue
│ │ ├── index.vue
│ │ └── update.vue
│ ├── flash
│ │ ├── index.vue
│ │ ├── productRelationList.vue
│ │ ├── selectSessionList.vue
│ │ └── sessionList.vue
│ ├── hot
│ │ └── index.vue
│ ├── new
│ │ └── index.vue
│ └── subject
│ └── index.vue
├── static
│ └── tinymce4.7.5
│ ├── langs
│ │ └── zh_CN.js
│ ├── plugins
│ │ ├── codesample
│ │ │ └── css
│ │ │ └── prism.css
│ │ ├── emoticons
│ │ │ └── img
│ │ │ ├── smiley-cool.gif
│ │ │ ├── smiley-cry.gif
│ │ │ ├── smiley-embarassed.gif
│ │ │ ├── smiley-foot-in-mouth.gif
│ │ │ ├── smiley-frown.gif
│ │ │ ├── smiley-innocent.gif
│ │ │ ├── smiley-kiss.gif
│ │ │ ├── smiley-laughing.gif
│ │ │ ├── smiley-money-mouth.gif
│ │ │ ├── smiley-sealed.gif
│ │ │ ├── smiley-smile.gif
│ │ │ ├── smiley-surprised.gif
│ │ │ ├── smiley-tongue-out.gif
│ │ │ ├── smiley-undecided.gif
│ │ │ ├── smiley-wink.gif
│ │ │ └── smiley-yell.gif
│ │ └── visualblocks
│ │ └── css
│ │ └── visualblocks.css
│ ├── skins
│ │ └── lightgray
│ │ ├── content.inline.min.css
│ │ ├── content.min.css
│ │ ├── fonts
│ │ │ ├── tinymce.eot
│ │ │ ├── tinymce-mobile.woff
│ │ │ ├── tinymce-small.eot
│ │ │ ├── tinymce-small.svg
│ │ │ ├── tinymce-small.ttf
│ │ │ ├── tinymce-small.woff
│ │ │ ├── tinymce.svg
│ │ │ ├── tinymce.ttf
│ │ │ └── tinymce.woff
│ │ ├── img
│ │ │ ├── anchor.gif
│ │ │ ├── loader.gif
│ │ │ ├── object.gif
│ │ │ └── trans.gif
│ │ ├── skin.min.css
│ │ └── skin.min.css.map
│ └── tinymce.min.js
└── 必看-必看-必看.docx
66 directories, 202 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)