This commit is contained in:
qsh
2024-07-31 18:43:37 +08:00
parent 48689642d8
commit 440dfe8747
2 changed files with 22 additions and 21 deletions

View File

@@ -130,27 +130,27 @@ const remainingRouter: AppRouteRecordRaw[] = [
// } // }
// ] // ]
// }, // },
{ // {
path: '/Basic', // path: '/Basic',
component: Layout, // component: Layout,
name: 'Basic', // name: 'Basic',
meta: {}, // meta: {},
redirect: '/Basic/menu', // redirect: '/Basic/menu',
children: [ // children: [
{ // {
path: 'menu', // path: 'menu',
component: () => import('@/views/Basic/Menu/index.vue'), // component: () => import('@/views/Basic/Menu/index.vue'),
name: 'Menu', // name: 'Menu',
meta: { // meta: {
canTo: true, // canTo: true,
hidden: true, // hidden: true,
noTagsView: false, // noTagsView: false,
icon: 'ep:user', // icon: 'ep:user',
title: '菜单管理' // title: '菜单管理'
} // }
} // }
] // ]
}, // },
{ {
path: '/login', path: '/login',
component: () => import('@/views/Login/Login.vue'), component: () => import('@/views/Login/Login.vue'),

View File

@@ -194,6 +194,7 @@
style="padding: 0" style="padding: 0"
text text
v-if="row.state == 1" v-if="row.state == 1"
v-hasPermi="['clue:order:update-return-money']"
@click="handleUpdate(row)" @click="handleUpdate(row)"
> >
<span>{{ row.edit ? '保存' : '修改金额' }}</span> <span>{{ row.edit ? '保存' : '修改金额' }}</span>