From abd060b5305ebc2cfd06655b25893daa22c3fe48 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Mon, 3 Jun 2024 15:53:21 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=AE=9E=E6=96=BD=E6=9F=A5=E7=9C=8B=E5=88=86=E6=91=8A=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../implementation/share.vue | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/views/project-management/implementation/share.vue b/src/views/project-management/implementation/share.vue index 2fdac5c..c1e1d87 100644 --- a/src/views/project-management/implementation/share.vue +++ b/src/views/project-management/implementation/share.vue @@ -12,37 +12,36 @@ import fvSelect from '@/fvcomponents/fvSelect/index.vue' const searchConfig = reactive([ { - label: '需求名称', + label: '关键词', prop: 'requirementName', component: 'el-input', props: { - placeholder: '请输入需求名称查询', + placeholder: '请输入关键词查询', clearable: true, filterable: true, checkStrictly: true } }, { - label: '项目费用', + label: '项目人员', prop: 'projectCost', component: shallowRef(fvSelect), props: { - placeholder: '请选择项目费用查询', + placeholder: '请选择项目人员查询', clearable: true, filterable: true, checkStrictly: true, - cacheKey: 'project_cost' + cacheKey: '' } }, { - label: '起始时间', + label: '时间', prop: 'datetime', component: 'el-date-picker', props: { - placeholder: '请选择起始时间', + placeholder: '请选择时间', clearable: true, - }, - colProps: {} + } } ]) const tableIns = ref() @@ -52,6 +51,7 @@ const tableConfig = reactive({ prop: 'name', type: 'index', label: '序号', + align: 'center', width:'80' }, { @@ -100,7 +100,7 @@ const tableConfig = reactive({ align: 'center' } ], - api: '', + api: '/workflow/mosr/cost/allocation/usr', params: {}, })