fix:修复矩阵题显示
This commit is contained in:
@@ -18,7 +18,7 @@
|
|||||||
<!-- v-html="modelValue"-->
|
<!-- v-html="modelValue"-->
|
||||||
<!-- :placeholder="placeholder"-->
|
<!-- :placeholder="placeholder"-->
|
||||||
<!-- ></p>-->
|
<!-- ></p>-->
|
||||||
<div class="right-icon ml10">
|
<div class="right-icon ml10" style="margin-left: 20px">
|
||||||
<slot name="right-icon"></slot>
|
<slot name="right-icon"></slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -39,13 +39,13 @@ function goBack() {
|
|||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
@import '@/assets/css/main';
|
@import '@/assets/css/main';
|
||||||
.model{
|
.model {
|
||||||
width:100%;
|
width: 100%;
|
||||||
height:100vh;
|
height: 100vh;
|
||||||
position: absolute;
|
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 {
|
.common-layout {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|||||||
@@ -209,7 +209,7 @@ onMounted(() => {
|
|||||||
//color: #000;
|
//color: #000;
|
||||||
}
|
}
|
||||||
div p:last-child {
|
div p:last-child {
|
||||||
margin-top:13px;
|
margin-top: 13px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
//color: #000;
|
//color: #000;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,12 +71,12 @@
|
|||||||
<div class="survey_item_action">
|
<div class="survey_item_action">
|
||||||
<!-- <el-space direction="horizontal">-->
|
<!-- <el-space direction="horizontal">-->
|
||||||
<div>
|
<div>
|
||||||
<!-- <el-button :disabled="item.source === 0" @click="deleteItem(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 :disabled="item.source === 0" @click="editItem(item)">编辑</el-button>
|
||||||
<el-button style="border: 1px solid #71b73c" @click="toPreview(item)">
|
<el-button style="border: 1px solid #71b73c" @click="toPreview(item)">
|
||||||
<el-text style="color: #71b73c">预览</el-text>
|
<el-text style="color: #71b73c">预览</el-text>
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button color="#6fb937" @click="toPublish(item)">
|
<el-button color="#6fb937" @click="toPublish(item)">
|
||||||
<el-text style="color: white">
|
<el-text style="color: white">
|
||||||
{{ item.status === 1 ? '结束投放' : '开启投放' }}
|
{{ item.status === 1 ? '结束投放' : '开启投放' }}
|
||||||
</el-text>
|
</el-text>
|
||||||
|
|||||||
@@ -462,7 +462,6 @@ const saveTitle = () => {
|
|||||||
introduction: questionInfo.value.survey.introduction
|
introduction: questionInfo.value.survey.introduction
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.data) {
|
if (res.data) {
|
||||||
|
|
||||||
// questionInfo.value.survey.title 富文本转为html获取innertext
|
// questionInfo.value.survey.title 富文本转为html获取innertext
|
||||||
let title = questionInfo.value.survey.title.replace(/<[^>]*>/g, '');
|
let title = questionInfo.value.survey.title.replace(/<[^>]*>/g, '');
|
||||||
saveProjectName(route.query.sn, { project_name: title });
|
saveProjectName(route.query.sn, { project_name: title });
|
||||||
|
|||||||
Reference in New Issue
Block a user