-
+
{{
@@ -380,8 +388,14 @@ export default {
console.log(e);
if (e.prop == "statDate") {
this.tableData.sort((a, b) => {
- let timeA = a[e.prop] == null ? null : new Date(a[e.prop].replace(/-/g, "/")).getTime();
- let timeB = b[e.prop] == null ? null : new Date(b[e.prop].replace(/-/g, "/")).getTime();
+ let timeA =
+ a[e.prop] == null
+ ? null
+ : new Date(a[e.prop].replace(/-/g, "/")).getTime();
+ let timeB =
+ b[e.prop] == null
+ ? null
+ : new Date(b[e.prop].replace(/-/g, "/")).getTime();
if (e.order == "ascending") {
return timeA - timeB;
}
@@ -555,7 +569,7 @@ export default {
})
.then((res) => {
this.tableData = res.data.records;
-
+
// 表格中设置ref属性,在数据渲染之后或者updated()之后
this.$nextTick(() => {
this.$refs.table.doLayout();