fix : 修复页面细节
This commit is contained in:
@@ -18,6 +18,7 @@ const searchConfig = reactive([
|
||||
prop: 'name',
|
||||
component: 'el-input',
|
||||
props: {
|
||||
clearable: true,
|
||||
placeholder: '请输入专项资金名称查询'
|
||||
}
|
||||
},
|
||||
@@ -31,6 +32,31 @@ const searchConfig = reactive([
|
||||
cacheKey: 'special_fund'
|
||||
}
|
||||
},
|
||||
{
|
||||
label: '资金金额',
|
||||
prop: 'fundAmount',
|
||||
component: 'el-input',
|
||||
props: {
|
||||
clearable: true,
|
||||
placeholder: '请输入资金金额查询'
|
||||
}
|
||||
}, {
|
||||
label: '剩余金额',
|
||||
prop: 'residualAmount',
|
||||
component: 'el-input',
|
||||
props: {
|
||||
clearable: true,
|
||||
placeholder: '请输入剩余金额查询'
|
||||
}
|
||||
}, {
|
||||
label: '项目数量',
|
||||
prop: 'projectNumber',
|
||||
component: 'el-input',
|
||||
props: {
|
||||
clearable: true,
|
||||
placeholder: '请输入项目数量查询'
|
||||
}
|
||||
}
|
||||
])
|
||||
const tableConfig = reactive({
|
||||
columns: [
|
||||
@@ -41,7 +67,7 @@ const tableConfig = reactive({
|
||||
},
|
||||
{
|
||||
prop: 'fundAmount',
|
||||
label: '专项资金金额',
|
||||
label: '资金金额',
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
@@ -49,6 +75,11 @@ const tableConfig = reactive({
|
||||
label: '剩余金额',
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
prop: 'projectNumber',
|
||||
label: '项目数量',
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
prop: 'state',
|
||||
label: '状态',
|
||||
|
||||
Reference in New Issue
Block a user