Merge pull request 'fix : 调整台账显示信息' (#439) from dd into master

Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/439
This commit is contained in:
2024-06-30 12:04:04 +00:00
2 changed files with 6 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ const formDataArray = ref([
},
{
label: '项目负责人',
prop: 'projectChargePerson',
prop: 'projectChargePersonName',
colProps: {
span: 8
}
@@ -101,11 +101,11 @@ const formDataArray = ref([
])
const tableData = ref({})
const schema = computed(() => {
if (JSON.stringify(tableData.value) !== '{}') {
// if (JSON.stringify(tableData.value) !== '{}') {
return formDataArray.value
} else {
return formArray.value
}
// } else {
// return formArray.value
// }
})
const baseForm = ref()
const tableIns = ref()

View File

@@ -11,7 +11,7 @@
<el-form-item prop="projectChargePerson" label="项目负责人">
{{tableForm.projectChargePersonName}}
<el-button @click="showPersonnelPicker">
{{ tableForm.projectChargePersonName ? '更改' : '请选择研发人员' }}
{{ tableForm.projectChargePersonName ? '更改' : '请选择项目负责人' }}
</el-button>
</el-form-item>
</el-col>