|
@@ -309,11 +309,16 @@ $(function() {
|
|
}else if($(this).attr("id")=="right-export"){
|
|
}else if($(this).attr("id")=="right-export"){
|
|
//数据导出
|
|
//数据导出
|
|
if(!searchInnerVue.listState.allCount) return
|
|
if(!searchInnerVue.listState.allCount) return
|
|
|
|
+ var loading = searchInnerVue.$loading({
|
|
|
|
+ background: 'rgba(255, 255, 255, .1)',
|
|
|
|
+ customClass: 'self-list-loading'
|
|
|
|
+ })
|
|
$.ajax({
|
|
$.ajax({
|
|
type: "POST",
|
|
type: "POST",
|
|
url: "/front/dataExport/getDontPromptAgain",
|
|
url: "/front/dataExport/getDontPromptAgain",
|
|
contentType: "application/x-www-form-urlencoded",
|
|
contentType: "application/x-www-form-urlencoded",
|
|
success: function (res) {
|
|
success: function (res) {
|
|
|
|
+ loading.close()
|
|
if(res.error_code === 0) {
|
|
if(res.error_code === 0) {
|
|
// 数据导出-判断是否展示弹框
|
|
// 数据导出-判断是否展示弹框
|
|
let countBool = false
|
|
let countBool = false
|
|
@@ -342,6 +347,7 @@ $(function() {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
error: function(err) {
|
|
error: function(err) {
|
|
|
|
+ loading.close()
|
|
toPaydataExport();
|
|
toPaydataExport();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -349,7 +355,7 @@ $(function() {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
- $('.have-thousand-close').click(function (e) {
|
|
|
|
|
|
+ $('.have-thousand-close').click(function (e) {
|
|
e.preventDefault();
|
|
e.preventDefault();
|
|
$('.have-thousand-dialog').hide()
|
|
$('.have-thousand-dialog').hide()
|
|
});
|
|
});
|