chore(ci): 移除 Woodpecker CI 配置,全面采用 Jenkins
- 删除 .woodpecker.yml - 删除 .woodpecker-e2e.yml - 删除 .woodpecker-test-suite.yml
This commit is contained in:
@@ -246,7 +246,7 @@ const sortInfo = reactive({
|
||||
const modalVisible = ref(false)
|
||||
const modalTitle = ref('')
|
||||
const formRef = ref()
|
||||
const formState = reactive<CreateUserRequest & { id?: number; status?: UserStatus }>({
|
||||
const formState = reactive<CreateUserRequest & { id?: string; status?: UserStatus }>({
|
||||
username: '',
|
||||
password: '',
|
||||
nickname: '',
|
||||
@@ -414,7 +414,7 @@ const handleAssignRoles = async (row: User) => {
|
||||
try {
|
||||
const roles = await roleApi.getAll()
|
||||
allRoles.value = roles.map((role: Role) => ({
|
||||
key: role.id,
|
||||
key: String(role.id),
|
||||
label: role.roleName
|
||||
}))
|
||||
selectedRoles.value = row.roles || []
|
||||
|
||||
Reference in New Issue
Block a user