fix : 修复菜单图标、金额单位为元、项目实施台账上传费用功能、

This commit is contained in:
2024-06-02 11:04:54 +08:00
parent a796e7622f
commit cd715fbf98
26 changed files with 94 additions and 86 deletions

View File

@@ -8,7 +8,7 @@
</template>
<script setup lang="jsx">
import {reactive} from "vue";
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
const searchConfig = reactive([
{
@@ -24,13 +24,14 @@ const searchConfig = reactive([
},
{
label: '项目费用',
prop: 'requirementName',
component: 'el-input',
prop: 'projectCost',
component: shallowRef(fvSelect),
props: {
placeholder: '请输入项目费用查询',
placeholder: '请选择项目费用查询',
clearable: true,
filterable: true,
checkStrictly: true
checkStrictly: true,
cacheKey: 'project_cost'
}
},
{
@@ -59,38 +60,38 @@ const tableConfig = reactive({
align: 'center'
},
{
prop: 'projectType',
prop: 'researchPersonnel',
label: '研发人员',
align: 'center'
},
{
prop: 'productMainBody',
prop: 'wagesPayable',
label: '应发工资',
align: 'center'
},
{
prop: 'projectEffect',
prop: 'performance',
label: '绩效',
align: 'center'
},
{
prop: 'survey',
prop: 'reserveFund',
label: '公积金',
align: 'center'
},{
prop: 'survey',
prop: 'socialSecurity',
label: '社保',
align: 'center'
},{
prop: 'survey',
prop: 'annuity',
label: '年金',
align: 'center'
},{
prop: 'survey',
prop: 'workday',
label: '工作日(天)',
align: 'center'
},{
prop: 'survey',
prop: 'researchDuration',
label: '研发工时(天)',
align: 'center'
},{
@@ -101,9 +102,6 @@ const tableConfig = reactive({
],
api: '',
params: {},
btns: [
{name: '上传分摊', key: '_export', color: '#DED0B2',auth: ''}
]
})
</script>