gaoluyang
7 小时以前 311712d06356714169281a2bbc20c171f1c2e661
src/views/system/post/index.vue
@@ -146,6 +146,7 @@
<script setup name="Post">
import { listPost, addPost, delPost, getPost, updatePost } from "@/api/system/post"
import {onMounted} from "vue";
const { proxy } = getCurrentInstance()
const { sys_normal_disable } = proxy.useDict("sys_normal_disable")
@@ -283,5 +284,7 @@
  }, `post_${new Date().getTime()}.xlsx`)
}
getList()
onMounted(() => {
   getList();
});
</script>