条件判断语句
onLoad: function (options) {
var that = this;
if (!options) { // 20190419先判断是否存在
return;
}
if (options.type) {
this.setData({
thisType: options.type
})
}
if( options.licenseNumber) {
that.setData({
licenseNumber: options.licenseNumber
})
}
。。。
},