Compare commits

...

2 Commits

  1. 7
      jeecgboot-vue3/src/views/projectApplication/kejigongguan/data.ts
  2. 1
      jeecgboot-vue3/src/views/projectApplication/kejigongguan/projectApplicationList.vue
  3. 4
      jeecgboot-vue3/src/views/projectApplication/project/ProjectList.vue

@ -18,10 +18,13 @@ export const projectBaseInfoSchemas: FormSchema[] = [
}, },
{ {
field: 'annualId', field: 'annualId',
component: 'Input', component: 'JDictSelectTag',
componentProps: {
dictCode: 'project_type,annual_name,id',
},
label: '计划年度', label: '计划年度',
dynamicDisabled: true, dynamicDisabled: true,
defaultValue: '2025', // defaultValue: '2025',
}, },
{ {
field: 'batchNo', field: 'batchNo',

@ -44,6 +44,7 @@
const setformValue1 = async () => { const setformValue1 = async () => {
// console.log(route,'route') // console.log(route,'route')
await setFieldsValue({projectTypeid: route.query.projectTypeId}) await setFieldsValue({projectTypeid: route.query.projectTypeId})
await setFieldsValue({annualId: route.query.projectTypeId})
}; };
nextTick(() => { nextTick(() => {
setformValue1(); setformValue1();

@ -175,9 +175,9 @@ async function getProjectType(){
await getProjectTypeList(params).then(res=>{ await getProjectTypeList(params).then(res=>{
console.log("getProjectType is invoke-----------",JSON.stringify(res.records)) console.log("getProjectType is invoke-----------",JSON.stringify(res.records))
projectTypeList.value = res.records.map(item => { projectTypeList.value = res.records.map(item => {
return {label:item.typeName,key:item.id} return {label:item.typeName, key:item.id, annualId:item.annualName}
}) })
console.log(JSON.stringify(projectTypeList)); console.log("the projectTypeList :",JSON.stringify(projectTypeList));
}) })
} }

Loading…
Cancel
Save