|
@@ -385,7 +385,7 @@ export default {
|
|
|
},
|
|
|
handleSucces(res) {
|
|
|
this.loading = false
|
|
|
- if (res.code) {
|
|
|
+ if (res.code === 200) {
|
|
|
if (res.data.length) {
|
|
|
res.data.map((e) => {
|
|
|
/* e.fBsdate = this.form.fBsdate;
|
|
@@ -403,6 +403,9 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
this.excelList = res.data;
|
|
|
+ }else{
|
|
|
+ return this.$message.error(res.msg);
|
|
|
+ //todo
|
|
|
}
|
|
|
},
|
|
|
//列设置全选
|