Commit 40c96294 authored by Quxl's avatar Quxl

x

parent 83af2358
...@@ -194,9 +194,14 @@ ...@@ -194,9 +194,14 @@
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
$.post("video/doImport", function(json) { $.ajax({
if(json.code == 200) { type: "post",
scope.loadData(); url: "video/doImport",
timeout: 0,
function(json) {
if(json.code == 200) {
scope.loadData();
}
} }
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment