mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-23 01:09:50 +08:00
更新 AlistConfigDialog.vue
This commit is contained in:
@@ -36,14 +36,14 @@ async function handleReset() {
|
||||
}
|
||||
|
||||
// 登录类型
|
||||
const loginType = computed(() => {
|
||||
if (props.conf.token) {
|
||||
return 'token'
|
||||
} else if (props.conf.username) {
|
||||
return 'username'
|
||||
}
|
||||
return 'username'
|
||||
})
|
||||
let loginType = ref('username')
|
||||
if (props.conf.token) {
|
||||
loginType = ref('token')
|
||||
} else if (props.conf.username) {
|
||||
loginType = ref('username')
|
||||
} else {
|
||||
loginType = ref('guest')
|
||||
}
|
||||
|
||||
// 数据源
|
||||
const sourceItems = [
|
||||
|
||||
Reference in New Issue
Block a user