feat: 添加系统管理-菜单管理 (#929)

* feat: 添加系统管理-菜单管理

* chore: update

* chore: add Copyright in login page

* chore: 将页脚放在一屏可视区

* chore: 依赖更新

* chore: update

* chore: update

* chore: 更新依赖

* chore: update `husky v9`

* style: 适配`el-dialog`样式的更新

* style: update `src/layout/components/search/components/SearchResult.vue`

* chore: update

* style: update

* fix: 修复`ReDialog`中点击取消和确定按钮会触发两次关闭回调

* chore: update

* chore: update src/views/system/menu/README.md

* chore: update

* chore: update

* chore: done

* chore: update
This commit is contained in:
xiaoming
2024-02-26 22:17:40 +08:00
committed by GitHub
parent f762587fa7
commit c314b0cd1c
45 changed files with 2743 additions and 1118 deletions

View File

@@ -6,10 +6,10 @@ defineOptions({
name: "AnimateCss"
});
const icon = ref("");
const animate = ref("");
watch(icon, () => {
console.log("icon", icon.value);
watch(animate, () => {
console.log("animate", animate.value);
});
</script>
@@ -29,6 +29,6 @@ watch(icon, () => {
</span>
</div>
</template>
<ReAnimateSelector v-model="icon" class="!w-[200px]" />
<ReAnimateSelector v-model="animate" class="!w-[200px]" />
</el-card>
</template>

View File

@@ -203,7 +203,7 @@ function onCloseCallBackClick() {
} else if (args?.command === "sure") {
text = "您点击了确定按钮";
} else {
text = "您点击了右上角关闭按钮或空白页";
text = "您点击了右上角关闭按钮或空白页或按下了esc键";
}
message(text);
},
@@ -301,7 +301,9 @@ function onFormOneClick() {
} else if (args?.command === "sure") {
message(`您点击了确定按钮,当前表单数据为 ${text}`);
} else {
message(`您点击了右上角关闭按钮或者空白页,当前表单数据为 ${text}`);
message(
`您点击了右上角关闭按钮或空白页或按下了esc键当前表单数据为 ${text}`
);
}
}
});

View File

@@ -12,8 +12,8 @@ const checked2 = ref(false);
const baseTag = ref("dark");
const tagList = ref([
{
type: "",
text: "Default"
type: "primary",
text: "Primary"
},
{
type: "success",