添加说明

This commit is contained in:
pplokijuhyg 2019-12-13 11:53:03 +08:00
parent 1fee501560
commit b107928a0f
2 changed files with 34 additions and 1 deletions

View File

@ -1,4 +1,15 @@
# 德国代购小程序
### 目录结构
- commponents 组件
- index 首页组件
- page 页面
- index 首页
- utils 插件
- [bin.js](./doc/bin.md)
## 页面路由
- pages/index/index 首页 <br>
组件
- index/search 顶部搜索框
- index/list 商品列表
- index/lsit/commodity 商品单条

22
doc/bin.md Normal file
View File

@ -0,0 +1,22 @@
# bin.js
## 引入方式
模块导入
## request 方法
request(object)
返回值类型 promise
```
request({
url访问地址
method,请求方式
header,附加header头
dataType,返回类型
responseType,类型
complete 成功失败都执行的回调函数
}).then((res)=>{
请求成功执行方法
},(rej)=>{
请求失败执行方法
}).catch((ree)=>{
执行错误时调用方法
})
```