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