|
@@ -309,16 +309,11 @@ $(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
|
|
@@ -347,7 +342,6 @@ $(function() {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
error: function(err) {
|
|
error: function(err) {
|
|
- loading.close()
|
|
|
|
toPaydataExport();
|
|
toPaydataExport();
|
|
}
|
|
}
|
|
});
|
|
});
|