fix : 修复金额千位格式化,新增征集时添加"新增专项资金"按钮

This commit is contained in:
2024-09-07 15:09:37 +08:00
parent cff3198dcd
commit fc41bd8e6d
22 changed files with 191 additions and 34 deletions

View File

@@ -204,7 +204,16 @@ const schema = computed(() => {
prop: 'specialFundAmount',
colProps: {
span: 6
}
},
component: () => (
<div>
{
baseFormData.value?.specialFundAmount ?
<span>{toThousands(baseFormData.value?.specialFundAmount)}</span>
: <span>{'--'}</span>
}
</div>
)
},
{
label: '部门分管领导',
@@ -219,11 +228,11 @@ const schema = computed(() => {
const baseForm = ref()
const searchConfig = reactive([
{
label: '项目人员',
label: '研发人员',
prop: 'researchPersonnel',
component: 'el-input',
props: {
placeholder: '请输入项目人员查询'
placeholder: '请输入研发人员查询'
}
},
{