gaoluyang
2 天以前 37da59952d4cf8b68942e90ab5c2a6164986b2af
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>