Commit 40c96294 authored by Quxl's avatar Quxl

x

parent 83af2358
......@@ -194,9 +194,14 @@
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
$.post("video/doImport", function(json) {
if(json.code == 200) {
scope.loadData();
$.ajax({
type: "post",
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