|
@ -89,7 +89,11 @@ top.handleVue=new Vue({
|
|
|
mounted: function() {
|
|
|
this.getSigndict();
|
|
|
this.getDictByDictName();
|
|
|
this.findMsgId()
|
|
|
if(!httpData.msgid || httpData.msgid == "undefined" || httpData.msgid == "null") {
|
|
|
this.findMsgId()
|
|
|
} else {
|
|
|
this.signInfo.msgid = httpData.msgid
|
|
|
}
|
|
|
this.teamLimit();
|
|
|
this.findPatientSignServerBySignCode();
|
|
|
},
|
|
@ -529,8 +533,11 @@ top.handleVue=new Vue({
|
|
|
layer.close(loadding)
|
|
|
if(res.status == 200) {
|
|
|
// top.layer.closeAll();
|
|
|
var url = window.location.href + "?statusCode=1"
|
|
|
window.location.href = url
|
|
|
showSuccessMessage(res.msg || "操作成功")
|
|
|
setTimeout(function() {
|
|
|
var url = window.location.href.split("?")[0] + "?statusCode=1"
|
|
|
window.location.href = url
|
|
|
}, 1000)
|
|
|
} else {
|
|
|
showErrorMessage(res.msg);
|
|
|
}
|
|
@ -541,8 +548,10 @@ top.handleVue=new Vue({
|
|
|
if(res.status == 200) {
|
|
|
showSuccessMessage(res.msg || "操作成功")
|
|
|
// top.layer.closeAll();
|
|
|
var url = window.location.href + "?statusCode=1"
|
|
|
window.location.href = url
|
|
|
setTimeout(function() {
|
|
|
var url = window.location.href.split("?")[0] + "?statusCode=1"
|
|
|
window.location.href = url
|
|
|
}, 1000)
|
|
|
} else {
|
|
|
showErrorMessage(res.msg);
|
|
|
}
|