-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
51 lines (39 loc) · 1.16 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 接口生成器
### 准备
react 和 koa 方面的只是
### 安装依赖
`npm install`
`npm install supervisor -g`
### 启动前端
`npm start`
### 后端后端
`supervisor bin/services`
一.ACTION 规范
1.ACTION
命名规范: 当前页面_功能模块_请求类型
例如: SERVICES_LIST_GET 解读:服务页面的列表请求
说明: 如果此模块列表请求类型多个 SERVICES_LIST_GET_TYPE
2.注释(数据类型简单,可只写功能即可)
/*
* 服务列表请求
* @param list.state (Boolean): 请求列表状态
* @param list.rows (Array) : 服务列表
* @param type (Number) : 1.新服务 2.老服务
*/
export const SERVICES_LIST_GET = 'SERVICES_LIST_GET'
export function getServiceListType(list){
return {
type:SERVICES_LIST_GET,
list.state,
list.rows
}
}
export function getServiceList(opts,type){
return (dispatch, getState) => {
...
}
}
二.样式规范
1.每个页面必须一个页面id包裹,内部样式全部写的里面
2.能公用的不重复写
3.能用蚂蚁的样式不自己写样式