fix:修复矩阵题显示

This commit is contained in:
du.meimei
2025-03-25 16:30:01 +08:00
parent b711045da5
commit 681b334cd0
5 changed files with 10 additions and 11 deletions

View File

@@ -18,7 +18,7 @@
<!-- v-html="modelValue"-->
<!-- :placeholder="placeholder"-->
<!-- ></p>-->
<div class="right-icon ml10">
<div class="right-icon ml10" style="margin-left: 20px">
<slot name="right-icon"></slot>
</div>
</div>

View File

@@ -39,13 +39,13 @@ function goBack() {
</script>
<style scoped lang="scss">
@import '@/assets/css/main';
.model{
width:100%;
height:100vh;
.model {
width: 100%;
height: 100vh;
position: absolute;
background-color: rgba(255,255,255,0.8);
background-color: rgba(255, 255, 255, 0.8);
z-index:-2;
z-index: -2;
}
.common-layout {
overflow: hidden;

View File

@@ -209,7 +209,7 @@ onMounted(() => {
//color: #000;
}
div p:last-child {
margin-top:13px;
margin-top: 13px;
font-size: 13px;
//color: #000;
}

View File

@@ -71,12 +71,12 @@
<div class="survey_item_action">
<!-- <el-space direction="horizontal">-->
<div>
<!-- <el-button :disabled="item.source === 0" @click="deleteItem(item)"> 删除</el-button>-->
<el-button :disabled="item.source === 0" @click="editItem(item)">编辑</el-button>
<!-- <el-button :disabled="item.source === 0" @click="deleteItem(item)"> 删除</el-button>-->
<el-button :disabled="item.source === 0" @click="editItem(item)">编辑</el-button>
<el-button style="border: 1px solid #71b73c" @click="toPreview(item)">
<el-text style="color: #71b73c">预览</el-text>
</el-button>
<el-button color="#6fb937" @click="toPublish(item)">
<el-button color="#6fb937" @click="toPublish(item)">
<el-text style="color: white">
{{ item.status === 1 ? '结束投放' : '开启投放' }}
</el-text>

View File

@@ -462,7 +462,6 @@ const saveTitle = () => {
introduction: questionInfo.value.survey.introduction
}).then((res) => {
if (res.data) {
// questionInfo.value.survey.title 富文本转为html获取innertext
let title = questionInfo.value.survey.title.replace(/<[^>]*>/g, '');
saveProjectName(route.query.sn, { project_name: title });