feat: 样式布局优化

This commit is contained in:
GoldenZqqq
2024-12-27 09:43:32 +08:00
parent 7c7fbba2a3
commit 6cf3de0166
2 changed files with 4 additions and 10 deletions

View File

@ -52,7 +52,7 @@
<!-- 主体内容 -->
<div class="mt-50px">
<!-- 第一步基本信息 -->
<div v-if="currentStep === 0" class="mx-auto max-w-1024px">
<div v-if="currentStep === 0" class="mx-auto w-560px">
<BasicInfo
v-model="formData"
:categoryList="categoryList"
@ -62,7 +62,7 @@
</div>
<!-- 第二步表单设计 -->
<div v-if="currentStep === 1" class="mx-auto max-w-1024px">
<div v-if="currentStep === 1" class="mx-auto w-560px">
<FormDesign v-model="formData" :formList="formList" ref="formDesignRef" />
</div>