fix:概念方案弹窗样式

This commit is contained in:
王博冉
2024-09-23 14:04:00 +08:00
parent 45705cd57e
commit b605bc5c42
2 changed files with 14 additions and 3 deletions

View File

@@ -462,7 +462,7 @@ const getConceptInfo = () => {
.then(() => {
let params = {
survey_brand_id: ruleFormSet.surveyBrandId,
brand_id: ruleFormSet.surveyBrandId,
...standardConceptConfigRef.value.ruleForm,
}

View File

@@ -2,7 +2,7 @@
<a-form ref="formRef" :model="ruleForm" :rules="rules" :label-col="{ span: 4 }">
<a-form-item label="问卷名称" name="project_name">
<a-input
style="border-radius: 4px;width: 80%"
class="project-input"
v-model:value="ruleForm.project_name"
placeholder="请输入问卷名称"
:maxlength="30"
@@ -16,7 +16,7 @@
</a-input>
<a-button style="width: 20%;" @click="onAutoCreate">自动生成</a-button>
<a-button class="auto-button" @click="onAutoCreate">自动生成</a-button>
</a-form-item>
<a-form-item label="问卷场景" name="scene_code_info" v-if="isShow">
@@ -461,4 +461,15 @@ export default defineComponent({
.show-select:deep(.ant-select-selector){
border-radius:4px;
}
.project-input {
width: 80%;
border-radius: 4px 0 0 4px;
border-right: 0px;
}
.auto-button {
width: 20%;
border-radius: 0 4px 4px 0;
}
</style>