diff --git a/src/views/Home/components/Market/components/MarketItem.vue b/src/views/Home/components/Market/components/MarketItem.vue index 89d9ddb..d694047 100644 --- a/src/views/Home/components/Market/components/MarketItem.vue +++ b/src/views/Home/components/Market/components/MarketItem.vue @@ -203,9 +203,15 @@ onMounted(() => { background: #979797; opacity: 0.1; } - + div p:first-child { + font-size: 11px; + color: #828282; + //color: #000; + } div p:last-child { - color: #000; + margin-top:13px; + font-size: 13px; + //color: #000; } } } diff --git a/src/views/Survey/Index.vue b/src/views/Survey/Index.vue index 0e7fe13..9b67294 100644 --- a/src/views/Survey/Index.vue +++ b/src/views/Survey/Index.vue @@ -36,7 +36,7 @@ alt="Content Icon" style="width: 15px; height: 15px" /> - {{ item.scene_name }} + {{ item.owner }}
diff --git a/src/views/Survey/views/Create/Index.vue b/src/views/Survey/views/Create/Index.vue index 5111b65..2ce58d4 100644 --- a/src/views/Survey/views/Create/Index.vue +++ b/src/views/Survey/views/Create/Index.vue @@ -462,7 +462,10 @@ const saveTitle = () => { introduction: questionInfo.value.survey.introduction }).then((res) => { if (res.data) { - saveProjectName(route.query.sn, { project_name: questionInfo.value.survey.title }); + + // questionInfo.value.survey.title 富文本转为html获取innertext + let title = questionInfo.value.survey.title.replace(/<[^>]*>/g, ''); + saveProjectName(route.query.sn, { project_name: title }); } }); };