feat: 添加工作台

This commit is contained in:
Ray.Hao
2025-10-15 21:39:33 +08:00
parent 78740b0e50
commit 703171a2d8
7 changed files with 204 additions and 25 deletions

View File

@@ -1,11 +1,11 @@
<template>
<view class="page-container work">
<view class="work">
<template v-for="(item, index) in gridList" :key="index">
<wd-card :title="item.title">
<wd-grid clickable :column="4">
<wd-grid-item
v-for="(child, index) in item.children"
:key="index"
v-for="(child, childIndex) in item.children"
:key="childIndex"
:v-has-perm="child.prem"
use-slot
@click="handleNavClick(child)"