fix : 调整部门管理演示,优化移动端详情

This commit is contained in:
2024-06-30 22:49:37 +08:00
parent 47a5cd3338
commit 09e2bfc605
11 changed files with 59 additions and 37 deletions

View File

@@ -1,7 +1,6 @@
<template>
<baseTitle title="基础信息"></baseTitle>
<fvForm :schema="schema" @getInstance="(e)=>baseForm = e"></fvForm>
<baseTitle title="各流程信息"></baseTitle>
<div class="steps-box">
<el-steps :active="localActive" finish-status="success">
<el-step
@@ -22,6 +21,7 @@
<!-- 步骤内容 -->
<div>
<baseTitle title="各流程信息"></baseTitle>
<slot name="content" :localActive="localActive"></slot>
<!-- <template v-for="(item, index) in stepList" :key="item.key">
<component v-if="localActive == index" v-bind="item.props || {}" :is="item.component" />
@@ -101,28 +101,28 @@ const schema = computed(() => {
label: '征集名称',
prop: 'requirementName',
colProps: {
span: 12
}
},
{
label: '项目名称',
prop: 'projectName',
colProps: {
span: 12
span: 24
}
},
{
label: '征集描述',
prop: 'collectExplain',
colProps: {
span: 12
span: 24
}
},
{
label: '项目名称',
prop: 'projectName',
colProps: {
span: 24
}
},
{
label: '所属公司',
prop: 'affiliatedCompany',
colProps: {
span: 12
span: 24
}
},
]