gaoluyang
2025-09-17 4b3f8e5bcb537b8fd53695046da56efa44e98c85
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>