function commitTask(data) {
data = JSON.stringify(data)
$.ajax({
type: "post",
url: 'http://127.0.0.1:9999' + '/task/taskHandle',
data: data,
contentType: 'application/json;charset=UTF-8',
dataType: "json",
success: function (res) {
var data = res.data
dialog.set("resultIndex", orderIndex)
showMsg(res.message, undefined, function () {
dialog.close()
})
}
})
}
12-31
3132
06-23
205