提交 5ef05d72 编写于 作者: Shine-zwj's avatar Shine-zwj

update:更新

上级 59d77b0f
...@@ -6,7 +6,7 @@ import { JobsInfoEditView } from '@page/jobs-info/jobs-info-edit-view'; ...@@ -6,7 +6,7 @@ import { JobsInfoEditView } from '@page/jobs-info/jobs-info-edit-view';
</script> </script>
<template> <template>
<JobsInfoEditView :context="{}"/> <PlatformIndexView :context="{}"/>
</template> </template>
<style> <style>
......
...@@ -3,10 +3,10 @@ import { IParam } from "@ibiz-core"; ...@@ -3,10 +3,10 @@ import { IParam } from "@ibiz-core";
import { import {
UserOutlined, UserOutlined,
} from '@ant-design/icons-vue'; } from '@ant-design/icons-vue';
interface MenuItemProps{ interface Props{
items: IParam[]; items: IParam[];
} }
const props = withDefaults(defineProps<MenuItemProps>(), {}); const props = withDefaults(defineProps<Props>(), {});
</script> </script>
<template> <template>
...@@ -16,7 +16,7 @@ const props = withDefaults(defineProps<MenuItemProps>(), {}); ...@@ -16,7 +16,7 @@ const props = withDefaults(defineProps<MenuItemProps>(), {});
<template #icon> <template #icon>
<UserOutlined /> <UserOutlined />
</template> </template>
{{ item.caption }} {{item.caption}}
</a-menu-item> </a-menu-item>
</template> </template>
<template v-else> <template v-else>
...@@ -24,7 +24,7 @@ const props = withDefaults(defineProps<MenuItemProps>(), {}); ...@@ -24,7 +24,7 @@ const props = withDefaults(defineProps<MenuItemProps>(), {});
<template #icon> <template #icon>
<UserOutlined /> <UserOutlined />
</template> </template>
<template #title>{{ item.caption }}</template> <template #title> {{item.caption}}</template>
<app-menu-item :items="item.items" /> <app-menu-item :items="item.items" />
</a-sub-menu> </a-sub-menu>
</template> </template>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册