Compare commits

...

2 Commits

Author SHA1 Message Date
fit2bot
6729382fc0 feat: Update v3.1.1 2023-03-27 17:55:53 +08:00
Bai
351e08d542 fix: 修复 LAN 账号保存 Platform 问题 2023-03-17 15:45:08 +08:00
2 changed files with 12 additions and 0 deletions

1
GITSHA Normal file
View File

@@ -0,0 +1 @@
351e08d542e675885c47121a303ec887912baa58

View File

@@ -79,6 +79,17 @@ export default {
},
password: {
rules: this.$route.params.id ? [] : [RequiredChange]
},
platform: {
el: {
multiple: false,
ajax: {
url: `/api/v1/assets/platforms/`,
transformOption: (item) => {
return { label: item.name, value: item.id }
}
}
}
}
}
},