|
@@ -88,9 +88,14 @@ export default {
|
|
},
|
|
},
|
|
/** 导出按钮操作 */
|
|
/** 导出按钮操作 */
|
|
handleExportZero() {
|
|
handleExportZero() {
|
|
- // this.download('system/user/export', {
|
|
|
|
- // ...this.queryParams
|
|
|
|
- // }, `user_${new Date().getTime()}.xlsx`)
|
|
|
|
|
|
+ var that = this;
|
|
|
|
+ that.exportLoadingZero = true;
|
|
|
|
+ this.downloadNew('data/customer/exportSameZero', {}, `customer_${new Date().getTime()}.csv`).then(response => {
|
|
|
|
+ console.log(response);
|
|
|
|
+ if(response){
|
|
|
|
+ that.exportLoadingZero = false;
|
|
|
|
+ }
|
|
|
|
+ })
|
|
},
|
|
},
|
|
handleExportOne() {
|
|
handleExportOne() {
|
|
var that = this;
|
|
var that = this;
|