feat: 增加消息中心菜单

This commit is contained in:
fit2cloud-chenyw 2024-11-14 14:44:26 +08:00
parent 26ecaac4ac
commit ea82b92c54
2 changed files with 16 additions and 0 deletions

View File

@ -1,2 +1,5 @@
INSERT INTO `core_sys_setting`(`id`, `pkey`, `pval`, `type`, `sort`)
VALUES (1048232869488627719, 'basic.defaultSort', '1', 'text', 13);
INSERT INTO `core_menu` VALUES (70, 0, 1, 'msg', NULL, 200, NULL, '/msg', 1, 1, 0);
INSERT INTO `core_menu` VALUES (71, 70, 2, 'msg-fill', 'msg/fill', 1, 'icon_msg_fill', '/msg-fill', 0, 1, 0);

View File

@ -0,0 +1,13 @@
<template>
<div class="fill-template">{{ info }}</div>
</template>
<script setup lang="ts">
const info = 'This is msg-fill page for tong.shu'
</script>
<style lang="less" scoped>
.fill-template {
width: 100%;
}
</style>