@@ -183,7 +183,7 @@ export default { | |||
methods: { | |||
exportData(data){ | |||
this.loading=true; | |||
api.exportList(Object.assign({sheetName:"链长制配合申请审核记录"},data)).then(res=>{ | |||
api.exportList(Object.assign({sheetName:"链长制配合申请审核记录", isChecked: 1},data)).then(res=>{ | |||
if (res.data.code == 0) { | |||
window.open(res.data.data); | |||
this.$message({ |
@@ -259,9 +259,10 @@ export default { | |||
.then((res) => { | |||
let data = res.data.data; | |||
this.count = data.total; | |||
data = data.records.filter((item) => { | |||
return !this.judge(item); | |||
}); | |||
// data = data.records.filter((item) => { | |||
// return !this.judge(item); | |||
// }); | |||
data = data.records | |||
this.dataList = this.reduceData(data); | |||
}) | |||
.catch((e) => { |