|
@@ -18,12 +18,11 @@ export default defineUI({
|
|
|
},
|
|
|
|
|
|
setup(props) {
|
|
|
-
|
|
|
const footerOptions: TextListProps[] = [
|
|
|
{
|
|
|
label: "退出",
|
|
|
icon: IconDownload,
|
|
|
- onClick: ()=>props.Controller.loginOut(),
|
|
|
+ onClick: () => props.Controller.loginOut(),
|
|
|
},
|
|
|
];
|
|
|
const menuOptions = [
|
|
@@ -39,18 +38,18 @@ export default defineUI({
|
|
|
icon: IconCamera,
|
|
|
// suffix: "32",
|
|
|
},
|
|
|
- {
|
|
|
- link: "/settings",
|
|
|
- label: "设置",
|
|
|
- icon: IconSettings,
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // link: "/settings",
|
|
|
+ // label: "设置",
|
|
|
+ // icon: IconSettings,
|
|
|
+ // },
|
|
|
];
|
|
|
return () => {
|
|
|
const { userInfo } = props.Controller.state;
|
|
|
|
|
|
return (
|
|
|
- <div class={cx(rootStyles, "p-30px h-1/1 flex flex-col")}>
|
|
|
- <div class="mt-20px">
|
|
|
+ <div class={cx(rootStyles, "px-25px py-16px h-1/1 flex flex-col")}>
|
|
|
+ <div>
|
|
|
<Logo />
|
|
|
</div>
|
|
|
<div class="my-50px flex items-center">
|
|
@@ -62,7 +61,7 @@ export default defineUI({
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <router-link to="/">
|
|
|
+ {/* <router-link to="/">
|
|
|
<TextListItem
|
|
|
option={{
|
|
|
label: "资源中心",
|
|
@@ -76,8 +75,8 @@ export default defineUI({
|
|
|
),
|
|
|
}}
|
|
|
/>
|
|
|
- </router-link>
|
|
|
- <Divider />
|
|
|
+ </router-link> */}
|
|
|
+ <Divider class="!-mt-10px" />
|
|
|
<div class="flex-1">
|
|
|
{menuOptions?.map((option, index) => (
|
|
|
<router-link to={option.link} key={index}>
|