File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -204,27 +204,25 @@ npm run build
204
204
├── elm // 上线项目文件,放在服务器即可正常访问
205
205
├── screenshots // 项目截图
206
206
├── src // 源码目录
207
- │ ├── App.vue
208
- │ ├── components
209
- │ │ ├── common
210
- │ │ │ ├── alertTip.vue
211
- │ │ │ ├── buyCart.vue
212
- │ │ │ ├── computeTime.vue
213
- │ │ │ ├── loading.vue
214
- │ │ │ ├── mixin.js
215
- │ │ │ ├── ratingStar.vue
216
- │ │ │ └── shoplist.vue
207
+ │ ├── components // 组件
208
+ │ │ ├── common // 公共组件
209
+ │ │ │ ├── alertTip.vue // 弹出框组件
210
+ │ │ │ ├── buyCart.vue // 购物车组件
211
+ │ │ │ ├── computeTime.vue // 倒计时组件
212
+ │ │ │ ├── loading.vue // 页面初始化加载数据的动画组件
213
+ │ │ │ ├── mixin.js // 组件混合(包括:指令-下拉加载更多,处理图片地址)
214
+ │ │ │ ├── ratingStar.vue // 评论的五颗星组件
215
+ │ │ │ └── shoplist.vue // msite和shop页面的餐馆列表公共组件
217
216
│ │ ├── footer
218
- │ │ │ └── footGuide.vue
217
+ │ │ │ └── footGuide.vue // 底部公共组件
219
218
│ │ └── header
220
- │ │ └── head.vue
219
+ │ │ └── head.vue // 头部公共组件
221
220
│ ├── config
222
221
│ │ ├── env.js
223
222
│ │ ├── fetch.js
224
223
│ │ ├── mUtils.js
225
224
│ │ └── rem.js
226
225
│ ├── images
227
- │ ├── main.js
228
226
│ ├── page
229
227
│ │ ├── balance
230
228
│ │ │ ├── balance.vue
@@ -322,8 +320,11 @@ npm run build
322
320
│ ├── common.scss
323
321
│ ├── mixin.scss
324
322
│ └── swiper.min.css
323
+ │ ├── App.vue
324
+ │ ├── main.js
325
325
├── favicon.ico
326
326
├── index.html
327
+ .
327
328
328
329
56 directories, 203 files
329
330
```
You can’t perform that action at this time.
0 commit comments