尽量起一些名字较短 通俗易懂的id不要搞得太长看着不舒服
例如:listForExmation 可以写成:list4exma
例如:
listfor1,listfor2,listfor3,listfor4
可以写成listfor:{listfor1,listfor2,listfor3,listfor4}调用直接点
比如传过来的格式:[{},{},{},{}]
接收也可以用同样的格式然后写一个forEach方法调用
不用遍历出来
columnTime: ["全部", "昨天", "今天", "最近三天", "最近七天"], //时间列表
传参再以同样的形式传过去
类型相似的函数可以传一些参数(参数可以给默认值)的形式
例如:
//显示状态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"; },
可以写成showPicker(a,b=1){}的形式