fix : 修复页面bug

This commit is contained in:
2024-07-18 22:06:23 +08:00
parent 3ec7a9c78e
commit 9d5c393ebe
28 changed files with 562 additions and 286 deletions

View File

@@ -21,7 +21,6 @@
<!-- 步骤内容 -->
<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" />
@@ -97,20 +96,6 @@ const baseForm = ref()
const schema = computed(() => {
return [
{
label: '征集名称',
prop: 'requirementName',
colProps: {
span: 24
}
},
{
label: '征集描述',
prop: 'collectExplain',
colProps: {
span: 24
}
},
{
label: '项目名称',
prop: 'projectName',
@@ -125,6 +110,20 @@ const schema = computed(() => {
span: 24
}
},
{
label: '征集名称',
prop: 'requirementName',
colProps: {
span: 24
}
},
{
label: '征集描述',
prop: 'collectExplain',
colProps: {
span: 24
}
}
]
})
@@ -328,4 +327,11 @@ watchEffect(() => {
.is-end {
color: #BEA266;
}
:deep(.el-step__title.is-success) {
color: #A8abb2;
}
:deep(.el-step__head.is-success) {
border-color: #A8abb2;
}
</style>