更新项目文档,调整易货商品列表组件

This commit is contained in:
唐明明
2021-07-27 10:16:53 +08:00
parent ea0376822d
commit 319b5424a6
12 changed files with 3371 additions and 3203 deletions

View File

@@ -1,5 +1,53 @@
# 易货App
## 开发临时存储资源存放在/static/dev目录下
_开发临时存储资源存放在/static/dev目录下_
## 公共的组件
### 1.商品列表
_商品列表主要应用于首页产品列表等_
> 参数说明
| 参数 | 参数 | 是否必填 | 数据类型 | 默认值 | 可选值 |
| :---: | :---: | :---: | :---: | :---: | :---: |
| 数据列表 | list | 是 | Array | [] | {{list}} |
| 货币类型 | priceType | 否 | String | EB | EB, CNY|
| 空提示 | toast | 否 | String | 暂无商品数据 | - |
> list格式说明
```
list: [
{
id : "1"
cover: "https://yanxuan-item.nosdn.127.net/d3b072b5006f56935d15d239cbc5c953.jpg",
title: "片片大果仁,夏威夷坚果脆片 可可味 55克",
price: "16",
sales: "25"
},{
...
}
]
```
> 引入🙇🏻栗子
```
import goodsList from '@/components/goods-list/goods-list'
export default {
components:{
goodsList
}
}
<template>
<goods-list></goods-list>
or
<goods-list/>
<template/>
```
易货平台App端