chore(ci): 移除 Woodpecker CI 配置,全面采用 Jenkins

- 删除 .woodpecker.yml
- 删除 .woodpecker-e2e.yml
- 删除 .woodpecker-test-suite.yml
This commit is contained in:
张翔
2026-04-27 15:38:41 +08:00
parent d03253617c
commit 0c3b67eb64
13 changed files with 165 additions and 557 deletions
@@ -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 || []