# 变量命名
尽量起一些名字较短 通俗易懂的id不要搞得太长看着不舒服 例如:listForExmation 可以写成:list4exma
# 变量整理
# 将有联系的代码整理成一个对象,调用简单,看代码也很清晰
例如: listfor1,listfor2,listfor3,listfor4 可以写成listfor:{listfor1,listfor2,listfor3,listfor4}调用直接点
# 根据返回的数据适当设置类型列表
比如传过来的格式:[{},{},{},{}] 接收也可以用同样的格式然后写一个forEach方法调用 不用遍历出来
columnTime: ["全部", "昨天", "今天", "最近三天", "最近七天"], //时间列表
1
传参再以同样的形式传过去
# 函数重用
类型相似的函数可以传一些参数(参数可以给默认值)的形式 例如:
//显示状态picker
showStatePicker() {
this.columns = this.columnSate;
this.pickerName = "columnSate";
this.title = "状态";
this.showPicker = true;
},
//显示类型picker
showTypePicker() {
this.showPicker = true;
let temp = []
this.columnType.forEach((res) => {
temp.push(res.name);
});
this.columns = temp
this.title = "类型";
this.pickerName = "columnType";
},
//显示时间picker
showTimePicker() {
this.showPicker = true;
this.columns = this.columnTime;
this.title = "时间";
this.pickerName = "columnTime";
},
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
可以写成showPicker(a,b=1){}的形式