├── static
└── .gitkeep
├── config
├── prod.env.js
├── dev.env.js
└── index.js
├── src
├── assets
│ ├── menu1.png
│ ├── menu2.png
│ ├── menu3.png
│ ├── menu4.png
│ ├── menu5.png
│ └── menu6.png
├── pages
│ ├── goodsComment
│ │ └── index.vue
│ ├── member
│ │ └── index.vue
│ ├── search
│ │ └── index.vue
│ ├── goodsDesc
│ │ └── index.vue
│ ├── newsList
│ │ └── index.vue
│ ├── newsInfo
│ │ └── index.vue
│ ├── photoInfo
│ │ └── index.vue
│ ├── home
│ │ └── index.vue
│ ├── photoList
│ │ └── index.vue
│ ├── shopcar
│ │ └── index.vue
│ ├── goodsList
│ │ └── index.vue
│ └── goodsInfo
│ │ └── index.vue
├── libs
│ └── mui
│ │ ├── fonts
│ │ ├── mui.ttf
│ │ └── mui-icons-extra.ttf
│ │ └── css
│ │ ├── icons-extra.css
│ │ └── mui.min.css
├── components
│ ├── swiper.vue
│ ├── HelloWorld.vue
│ └── comment.vue
├── styles
│ └── common.css
├── router
│ └── index.js
├── App.vue
└── main.js
├── .editorconfig
├── .gitignore
├── .postcssrc.js
├── index.html
├── .babelrc
├── README.md
└── package.json
/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/config/prod.env.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 | module.exports = {
3 | NODE_ENV: '"production"'
4 | }
5 |
--------------------------------------------------------------------------------
/src/assets/menu1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms23/master/src/assets/menu1.png
--------------------------------------------------------------------------------
/src/assets/menu2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms23/master/src/assets/menu2.png
--------------------------------------------------------------------------------
/src/assets/menu3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms23/master/src/assets/menu3.png
--------------------------------------------------------------------------------
/src/assets/menu4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms23/master/src/assets/menu4.png
--------------------------------------------------------------------------------
/src/assets/menu5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms23/master/src/assets/menu5.png
--------------------------------------------------------------------------------
/src/assets/menu6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms23/master/src/assets/menu6.png
--------------------------------------------------------------------------------
/src/pages/goodsComment/index.vue:
--------------------------------------------------------------------------------
1 |
2 | memberContainer
4 | searchContainer
4 |
10 | 发表时间:{{ item.add_time | dateFormat }} 11 | 点击:{{item.click}}次 12 |
13 |7 | 发表时间:{{ newsInfo.add_time | dateFormat }} 8 | 点击:{{ newsInfo.click }}次 9 |
10 | 11 |5 | 发表时间:{{ photoinfo.add_time | dateFormat }} 6 | 点击:{{ photoinfo.click }}次 7 |
8 | 9 |
19 |
25 |
31 |
37 |
43 |
49 | 总计(不含运费)
38 |39 | 已勾选商品 40 | {{ $store.getters.goodsCountAndAmount.count }} 件, 总价 41 | ¥{{ $store.getters.goodsCountAndAmount.amount }} 42 |
43 |35 | ¥{{ item.sell_price }} 36 | ¥{{ item.market_price }} 37 |
38 |39 | 热卖中 40 | 剩{{ item.stock_quantity }}件 41 |
42 |市场价:
22 | ¥{{ goodsinfo.market_price }} 销售价:
23 | ¥{{ goodsinfo.sell_price }}
24 |
42 |
商品货号:{{ goodsinfo.goods_no }}
60 |库存情况:{{ goodsinfo.stock_quantity }}件
61 |上架时间:{{ goodsinfo.add_time | dateFormat }}
62 |