|
@@ -382,6 +382,11 @@ export default {
|
|
|
pageSize: this.page.pageSize,
|
|
|
};
|
|
|
getList(data).then((response) => {
|
|
|
+ response.rows.forEach(e=>{
|
|
|
+ if(e.atd){
|
|
|
+ e.atd=e.atd.substring(0,10)
|
|
|
+ }
|
|
|
+ })
|
|
|
this.tableData = response.rows;
|
|
|
this.page.total = response.total;
|
|
|
this.loading = false;
|