This commit is contained in:
jingna 2025-06-17 18:25:29 +08:00
parent b759f16558
commit 4da294d37a
2 changed files with 11 additions and 4 deletions

View File

@ -77,7 +77,7 @@ const runCode = async () => {
'@/viewsnew/application/permissionset/user/userinfo.vue': Vue.defineAsyncComponent(() =>
import('@/viewsnew/application/permissionset/user/userinfo.vue')
),
'@/hooks/web/useCache': { useCache }
'@/hooks/web/useCache': { useCache }
},
getFile: async (fileName) => {
if (fileName === 'dynamic.vue') {

View File

@ -3,9 +3,9 @@ import Header from './header.vue'
import { findApplicationById } from "@/api/application/application";
import { useRoute, useRouter } from 'vue-router'
import { computed,reactive, ref, shallowRef, nextTick, watch, onMounted } from 'vue'
import Organization from './organization/index.vue'
import Role from './role/index.vue'
import User from './user/index.vue'
import Organization from '@/viewsnew/application/permissionset/organization/index.vue'
import Role from '@/viewsnew/application/permissionset/role/index.vue'
import User from '@/viewsnew/application/permissionset/user/index.vue'
const projectInfo:any =ref({})
const route = useRoute()
const router = useRouter()
@ -218,4 +218,11 @@ function menuclick(name){
box-shadow:none;
border: 1px solid #f54a45;
}
:deep(.ed-pagination__total){
color: #1f2329 !important;
}
:deep(.ed-checkbox__inner){
background-color: #ffffff !important;
border:1px solid #bbbfc4 !important;
}
</style>