├── static
└── .gitkeep
├── .eslintignore
├── config
├── prod.env.js
├── dev.env.js
└── index.js
├── src
├── assets
│ ├── menu1.png
│ ├── menu2.png
│ ├── menu3.png
│ ├── menu4.png
│ ├── menu5.png
│ └── menu6.png
├── lib
│ └── mui
│ │ ├── fonts
│ │ ├── mui.ttf
│ │ └── mui-icons-extra.ttf
│ │ └── css
│ │ ├── icons-extra.css
│ │ └── mui.min.css
├── 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
│ ├── goodsList
│ │ └── index.vue
│ ├── shopcar
│ │ └── index.vue
│ └── goodsInfo
│ │ └── index.vue
├── store
│ ├── index.js
│ ├── getters.js
│ └── mutations.js
├── main.js
├── router
│ └── index.js
├── App.vue
└── components
│ └── common
│ └── comment.vue
├── .editorconfig
├── .gitignore
├── .postcssrc.js
├── index.html
├── .babelrc
├── README.md
├── .eslintrc.js
└── package.json
/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | /build/
2 | /config/
3 | /dist/
4 | /*.js
5 |
--------------------------------------------------------------------------------
/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-cms22/master/src/assets/menu1.png
--------------------------------------------------------------------------------
/src/assets/menu2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms22/master/src/assets/menu2.png
--------------------------------------------------------------------------------
/src/assets/menu3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms22/master/src/assets/menu3.png
--------------------------------------------------------------------------------
/src/assets/menu4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms22/master/src/assets/menu4.png
--------------------------------------------------------------------------------
/src/assets/menu5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms22/master/src/assets/menu5.png
--------------------------------------------------------------------------------
/src/assets/menu6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms22/master/src/assets/menu6.png
--------------------------------------------------------------------------------
/src/lib/mui/fonts/mui.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms22/master/src/lib/mui/fonts/mui.ttf
--------------------------------------------------------------------------------
/src/lib/mui/fonts/mui-icons-extra.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TianchengLee/vue-cms22/master/src/lib/mui/fonts/mui-icons-extra.ttf
--------------------------------------------------------------------------------
/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 |
17 |
23 |
29 |
35 |
41 |
47 | 25 | ¥{{ item.sell_price }} 26 | ¥{{ item.market_price }} 27 |
28 |29 | 热卖中 30 | 剩{{ item.stock_quantity }}件 31 |
32 |总计(不含运费)
48 |已勾选商品 49 | {{ $store.getters.goodsCountAndAmount.count }} 件, 总价 50 | ¥{{ $store.getters.goodsCountAndAmount.amount }} 51 |
52 |
27 | 市场价:
28 | ¥{{ goodsinfo.market_price }} 销售价:
29 | ¥{{ goodsinfo.sell_price }}
30 |
52 |
商品货号:{{ goodsinfo.goods_no }}
70 |库存情况:{{ goodsinfo.stock_quantity }}件
71 |上架时间:{{ goodsinfo.add_time | dateFormat }}
72 |