feat: 新增银行系统前端
This commit is contained in:
@@ -1,36 +1,41 @@
|
||||
<template>
|
||||
<el-menu
|
||||
default-active="1"
|
||||
class="el-menu-vertical-demo"
|
||||
@open="handleOpen"
|
||||
@close="handleClose"
|
||||
router
|
||||
>
|
||||
<el-menu-item index="1" :route="{path:'/activity/sign'}">
|
||||
<el-icon><Present /></el-icon>
|
||||
<span>每日签到</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="2" :route="{path:'/activity/level'}">
|
||||
<el-icon><Ticket /></el-icon>
|
||||
<span>等级</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="3" :route="{path:'/activity/sign'}">
|
||||
<el-icon><Memo /></el-icon>
|
||||
<span>任务列表</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="4" :route="{path:'/activity/lucky'}">
|
||||
<el-icon><HelpFilled /></el-icon>
|
||||
<span>大转盘</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="5" :route="{path:'/activity/bank'}">
|
||||
<el-icon><Sunrise /></el-icon>
|
||||
<span>银行</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="6" :route="{path:'/activity/sign'}">
|
||||
<el-icon><Sunrise /></el-icon>
|
||||
<span>娱乐城</span>
|
||||
</el-menu-item>
|
||||
</el-menu>
|
||||
<el-menu default-active="1" class="el-menu-vertical-demo" @open="handleOpen" @close="handleClose" router>
|
||||
<el-menu-item index="1" :route="{ path: '/activity/sign' }">
|
||||
<el-icon>
|
||||
<Present />
|
||||
</el-icon>
|
||||
<span>每日签到</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="2" :route="{ path: '/activity/level' }">
|
||||
<el-icon>
|
||||
<Ticket />
|
||||
</el-icon>
|
||||
<span>等级</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="3" :route="{ path: '/activity/x' }">
|
||||
<el-icon>
|
||||
<Memo />
|
||||
</el-icon>
|
||||
<span>任务列表(暂未开放)</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="4" :route="{ path: '/activity/lucky' }">
|
||||
<el-icon>
|
||||
<HelpFilled />
|
||||
</el-icon>
|
||||
<span>大转盘</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="5" :route="{ path: '/activity/bank' }">
|
||||
<el-icon>
|
||||
<Money />
|
||||
</el-icon> <span>银行(即将开放)</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="6" :route="{ path: '/activity/x' }">
|
||||
<el-icon>
|
||||
<Sunrise />
|
||||
</el-icon>
|
||||
<span>娱乐城(暂未开放)</span>
|
||||
</el-menu-item>
|
||||
</el-menu>
|
||||
|
||||
</template>
|
||||
<script setup>
|
||||
@@ -42,12 +47,12 @@ const handleClose = (key, keyPath) => {
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.el-menu-item
|
||||
{
|
||||
justify-content: center;
|
||||
.el-menu-item {
|
||||
justify-content: center;
|
||||
}
|
||||
.el-menu{
|
||||
border-right-width: 0px !important;
|
||||
|
||||
.el-menu {
|
||||
border-right-width: 0px !important;
|
||||
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user