diff --git a/.env.dev b/.env.dev index d953bf63..a6c33e62 100644 --- a/.env.dev +++ b/.env.dev @@ -8,4 +8,4 @@ VUE_APP_DELiVERY_BASEURL='https://javaxq.test.automark.cc/' VUE_APP_MESSAGE_CENTER ='http://gtech-gateway.dcin-test.digitalyili.com/apigtech/message-send-center/'; VUE_APP_SOCKETURL = 'wss://ylst-api-uat.dctest.digitalyili.com/survey_sync' -VUE_APP_JSONPURL = 'https://iam-uat.dctest.digitalyili.com/idp/restful/getIDPToken' +VUE_APP_JSONPURL = 'https://iam-uat.dctest.digitalyili.com/idp/restful/getIDPToken' \ No newline at end of file diff --git a/src/components/LeftMenuBar.vue b/src/components/LeftMenuBar.vue index 1bb075b4..c16c9cd1 100644 --- a/src/components/LeftMenuBar.vue +++ b/src/components/LeftMenuBar.vue @@ -41,12 +41,14 @@ v-for="(child, childIndex) in item.children" :key="childIndex" > - + @@ -189,7 +192,9 @@ function menusStatusToFalsefather(menus) { font-size: 13px; z-index: 99999; &-item { + position: relative; width: 220px; + z-index: 99; background: rgba(245, 245, 245, 0.6); &-child { background-color: #ffffff; @@ -275,4 +280,24 @@ function menusStatusToFalsefather(menus) { position: relative; z-index: 99; } +.menu-bar-item-child{ +height: 50px; + display: block; + position: relative; + top: 0; + left: 0; + /* background: #ffffff; */ + z-index: 999; +} +.menu-bar-item-parent{ + height: 50px; + position: absolute; + z-index: 999; + left: 0; + top: 0; + background: #ffffff; + opacity: 1; + z-index: 100; + height: 50px; +} diff --git a/src/views/Answer/components/Modal/SurveyDownload.vue b/src/views/Answer/components/Modal/SurveyDownload.vue index 9c5bfed3..1588cd85 100644 --- a/src/views/Answer/components/Modal/SurveyDownload.vue +++ b/src/views/Answer/components/Modal/SurveyDownload.vue @@ -7,25 +7,28 @@ - + - diff --git a/src/views/Answer/questions/QMatrix/components/MRate.vue b/src/views/Answer/questions/QMatrix/components/MRate.vue index fa660b30..f0136da3 100644 --- a/src/views/Answer/questions/QMatrix/components/MRate.vue +++ b/src/views/Answer/questions/QMatrix/components/MRate.vue @@ -49,9 +49,9 @@
{{ - config.show_label + config.show_label || "总和" }} {{ - config.show_label + config.show_label || "总和" }}
diff --git a/src/views/Answer/questions/high/QBPTO.vue b/src/views/Answer/questions/high/QBPTO.vue index 1dadad4f..2c685a0c 100644 --- a/src/views/Answer/questions/high/QBPTO.vue +++ b/src/views/Answer/questions/high/QBPTO.vue @@ -464,11 +464,7 @@ export default defineComponent({ } .footer { - left: 0; - bottom: 0; - width: 100%; - position: absolute; - padding: 20px 0; + margin-top: 48px; :deep(.previous) { border: 1px solid $yili-default-color; diff --git a/src/views/Answer/questions/high/QMXD.vue b/src/views/Answer/questions/high/QMXD.vue index 8ca73bf6..d8d21ba6 100644 --- a/src/views/Answer/questions/high/QMXD.vue +++ b/src/views/Answer/questions/high/QMXD.vue @@ -2,7 +2,7 @@
-
+
@@ -69,8 +69,8 @@
- -
+ +
@@ -85,8 +85,8 @@
- -
+ +
@@ -104,8 +104,8 @@
- -
+ +
- -
+ +
- -
+ +
@@ -146,8 +146,8 @@ :class="index % 2 === 0 ? '' : 'bg-gray answer-background10'" >
- -
+ +
@@ -192,9 +192,10 @@ import PfePagination from "@/components/PfePagination.vue"; import { defineComponent, ref, watch } from "vue"; import { message } from "ant-design-vue"; import Remark from "@/views/Answer/components/Remark"; +import RichText from '@/components/RichText.vue'; export default defineComponent({ - components: { PfePagination, Remark }, + components: { PfePagination, Remark, RichText }, props: { // 错误 error: { @@ -328,10 +329,10 @@ export default defineComponent({ // 当前页答案 const currentOptions = allOptions.value[page.value - 1]; if (currentOptions.findIndex((option) => option.value === "b") === -1) { - return message.error("请选择高相关"); + return message.error(`请选择${props.config.first_text}`); } if (currentOptions.findIndex((option) => option.value === "w") === -1) { - return message.error("请选择不相关"); + return message.error(`请选择${props.config.second_text}`); } // 最后一页 if (page.value === pages.value) { @@ -366,7 +367,8 @@ export default defineComponent({ () => props.answer, () => { context.emit("changeAnswer", { - options: allOptions.value, + options: options.value, + mxdOptions: allOptions.value, }); }, { @@ -399,13 +401,8 @@ export default defineComponent({ align-items: center; justify-content: space-between; - .left { - width: 100%; - margin-right: 24px; - } - .iconfont { - color: #70b936; + color: #3461ff; cursor: pointer; margin-left: 12px; } @@ -431,15 +428,20 @@ export default defineComponent({ .td { width: 106px; - padding: 12px 0; - text-align: center; + padding: 12px 10px; + // text-align: center; overflow: auto; + display: flex; + align-items: center; + justify-content: center; } .option { flex: 1; + display: block; + text-align: center; - img { + :deep(img) { width: 87px; // height: 119px; } @@ -456,11 +458,7 @@ export default defineComponent({ } .footer { - left: 0; - bottom: 0; - width: 100%; - position: absolute; - padding: 20px 0; + margin-top: 48px; :deep(.previous) { border: 1px solid $yili-default-color; diff --git a/src/views/DataAnalyse/diagram/components/Layouts/Header.vue b/src/views/DataAnalyse/diagram/components/Layouts/Header.vue index 108f5349..ca7d018e 100644 --- a/src/views/DataAnalyse/diagram/components/Layouts/Header.vue +++ b/src/views/DataAnalyse/diagram/components/Layouts/Header.vue @@ -10,7 +10,7 @@ -
+
@@ -21,14 +21,14 @@
@@ -131,6 +131,11 @@ export default defineComponent({ font-size: 14px; margin-bottom: 0; color: #70b936; + .drag-item { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + } } } .action { diff --git a/src/views/DataAnalyse/diagram/components/diagram-item-new.vue b/src/views/DataAnalyse/diagram/components/diagram-item-new.vue index 0b29824e..2dc15360 100644 --- a/src/views/DataAnalyse/diagram/components/diagram-item-new.vue +++ b/src/views/DataAnalyse/diagram/components/diagram-item-new.vue @@ -24,9 +24,9 @@