|
@@ -290,10 +290,17 @@ var Dever =
|
|
return success_callback(result.msg);
|
|
return success_callback(result.msg);
|
|
}
|
|
}
|
|
if (result.msg.indexOf('http://') != -1) {
|
|
if (result.msg.indexOf('http://') != -1) {
|
|
- var self = this;
|
|
|
|
- this.Out('操作成功', function() {
|
|
|
|
|
|
+ if (result.msg.indexOf('||') != -1) {
|
|
|
|
+ var temp = result.msg.split('||');
|
|
|
|
+ result.msg = temp[0];
|
|
|
|
+ result.data = temp[1];
|
|
|
|
+ this.Out(result.data, function() {
|
|
|
|
+ self.Jump(result.msg);
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
self.Jump(result.msg);
|
|
self.Jump(result.msg);
|
|
- });
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
} else if (parseInt(result.msg) > 0) {
|
|
} else if (parseInt(result.msg) > 0) {
|
|
this.Out('操作成功', function() {
|
|
this.Out('操作成功', function() {
|
|
location.reload();
|
|
location.reload();
|