This commit is contained in:
BianLzhaoMin 2025-09-06 18:16:10 +08:00
parent 903bb8d670
commit e05b492bcf
1 changed files with 9 additions and 9 deletions

View File

@ -285,25 +285,25 @@ export default {
const teamList = await getTeamSelectListCommonFun()
const postTypeList = await getPostTypeSelectListCommonFun()
this.formLabel[3].f_selList = lotProjectList.map((item) => {
this.formLabel[2].f_selList = lotProjectList.map((item) => {
return {
label: item.proName,
value: item.id,
}
})
this.formLabel[4].f_selList = postTypeList.map((item) => {
return {
label: item.postName,
value: item.id,
}
})
this.formLabel[5].f_selList = subList.map((item) => {
// this.formLabel[4].f_selList = postTypeList.map((item) => {
// return {
// label: item.postName,
// value: item.id,
// }
// })
this.formLabel[3].f_selList = subList.map((item) => {
return {
value: item.id,
label: item.subName,
}
})
this.formLabel[6].f_selList = teamList.map((item) => {
this.formLabel[4].f_selList = teamList.map((item) => {
return {
value: item.id,
label: item.teamName,