|
@@ -26,12 +26,13 @@ Page({
|
|
|
},
|
|
|
|
|
|
bindPickerChange: function (e) {
|
|
|
- console.log('picker发送选择改变,携带值为', e.detail.value+1)
|
|
|
+ //let nume=e.detail.value
|
|
|
+ console.log('picker发送选择改变,携带值为',parseInt(nume)+1)
|
|
|
|
|
|
let obj = new Object();
|
|
|
obj.busInspectionId = this.data.busInspectionId
|
|
|
obj.logId = this.data.buslogId
|
|
|
- obj.lat_day = e.detail.value+1
|
|
|
+ obj.lat_day = parseInt(nume)+1
|
|
|
http.send_post("/system/AppXunjianController/changeInspection", obj, this.getChangeSuccess);
|
|
|
},
|
|
|
getChangeSuccess(res) {
|