fix : 修复页面细节功能及附件上传组件

This commit is contained in:
2024-05-20 00:29:31 +08:00
parent 1f4389eb5e
commit 9661cdbb2b
10 changed files with 268 additions and 157 deletions

View File

@@ -4,13 +4,13 @@
<baseTitle title="各流程信息"></baseTitle>
<div class="steps-box">
<el-steps :active="localActive" finish-status="success">
<el-step
v-for="(item, index) in localSteps"
:key="item.key"
:title="item.title"
<el-step
v-for="(item, index) in localSteps"
:key="item.key"
:title="item.title"
:class="stepClass(index)"
@click="handleStep(item.key, index)"
@click="handleStep(item.key, index)"
/>
</el-steps>
</div>
@@ -91,7 +91,7 @@ const schema = computed(()=>{
colProps: {
span: 12
}
// component:
// component:
},
{
label: '征集类型',
@@ -99,7 +99,7 @@ const schema = computed(()=>{
colProps: {
span: 12
}
// component:
// component:
},
{
label: '截止时间',
@@ -107,7 +107,7 @@ const schema = computed(()=>{
colProps: {
span: 12
}
// component:
// component:
},
{
label: '需求名称',
@@ -115,7 +115,7 @@ const schema = computed(()=>{
colProps: {
span: 12
}
// component:
// component:
},
]
})
@@ -236,6 +236,7 @@ getBaseInfo()
watchEffect(() => {
console.log(props.active, 'props.active');
localActive.value = props.active
getBaseInfo()
})
</script>
@@ -251,4 +252,4 @@ watchEffect(() => {
.step-error {
cursor: not-allowed;
}
</style>
</style>