|
mui.ready(function() {
mui.plusReady(function() {
var userid = plus.storage.getItem('userid');
var ws = plus.webview.currentWebview();
function personalMessage() {
mui.ajax(baseUrl + "/ajax/resource/" + ws.rsId, {
dataType: 'json', //数据格式类型
type: 'GET', //http请求类型
timeout: 10000, //超时设置
success: function(data) {
plus.nativeUI.closeWaiting();
ws.show("slide-in-right", 150);
var $data = data.data;
//详细介绍
if($data.descp)
document.getElementsByClassName("textareabox ")[0].innerText = $data.descp;
},
error: function() {
plus.nativeUI.toast("服务器链接超时", toastStyle);
return;
}
});
}
document.getElementsByClassName("topsave")[0].addEventListener("tap", function() {
mui.ajax(baseUrl + '/ajax/resource/descp', {
data: {
"resourceId": ws.rsId,
"descp": document.getElementsByClassName("textareabox ")[0].innerText
},
dataType: 'json', //数据格式类型
async: true,
type: 'POST', //http请求类型
timeout: 10000, //超时设置
success: function(data) {
console.log(data.success);
if(data.success) {
plus.nativeUI.showWaiting();
var web = plus.webview.getWebviewById("resinforupdate.html");
mui.fire(web, "resourceMess");
mui.back();
if(ws.reFlag==0) {
var web1 = plus.webview.getWebviewById("html/proinforupdate.html");
mui.fire(web1,"newId",{rd:1});
}else if(ws.reFlag==1){
var web2 = plus.webview.getWebviewById("html/companyUpdata.html");
mui.fire(web2,"newId",{rd:1});
}else if(ws.reFlag==2){
var web2 = plus.webview.getWebviewById("html/studentUpdata.html");
mui.fire(web2,"newId",{rd:1});
}
}
},
error: function() {
plus.nativeUI.toast("服务器链接超时", toastStyle);
return;
}
});
});
personalMessage();
});
})
|