DialogViewSurveyResult.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <div>
  3. <el-dialog
  4. :title="`查看问卷结果: ${props.rowData?.surveyMechanism?.name}(ID: ${props.rowData?.surveyMechanism?.id})`"
  5. v-model="visible"
  6. >
  7. <div class="page-logic-result">
  8. <div class="p-2 text-sm">
  9. <div v-for="(item, index) in state.surveyResultData" :key="index">
  10. <!-- <div>{{ item }}</div> -->
  11. <Component :is="comps[item.type]" :item="item" class="mb-2" />
  12. </div>
  13. </div>
  14. </div>
  15. </el-dialog>
  16. </div>
  17. </template>
  18. <script setup>
  19. import { request, msToDate, parseJsonData } from "@/utils";
  20. import {
  21. computed,
  22. onMounted,
  23. reactive,
  24. ref,
  25. defineProps,
  26. defineEmits,
  27. watch
  28. } from "vue";
  29. import { useRoute, useRouter } from "vue-router";
  30. import Text from "@/components/Survey/Text.vue";
  31. import TitleAndContents from "@/components/Survey/TitleAndContents.vue";
  32. import RichText from "@/components/Survey/RichText.vue";
  33. const route = useRoute();
  34. const router = useRouter();
  35. const key = ref(Date.now());
  36. const emits = defineEmits(["update:show"]);
  37. const props = defineProps({
  38. rowData: {
  39. type: Object,
  40. default: () => {}
  41. },
  42. show: Boolean
  43. });
  44. watch(
  45. () => props.show,
  46. (n, o) => {
  47. if (n) {
  48. console.log("监听成功");
  49. init();
  50. }
  51. }
  52. );
  53. const comps = {
  54. text: Text,
  55. titleAndContents: TitleAndContents,
  56. richText: RichText
  57. };
  58. const visible = computed({
  59. get() {
  60. return props.show;
  61. },
  62. set(n) {
  63. emits("update:show", n);
  64. }
  65. });
  66. const areaSelectRef = ref();
  67. const state = reactive({
  68. detail: {
  69. id: "",
  70. title: "",
  71. needPassword: false,
  72. canSaveArchives: ""
  73. },
  74. surveyResultData: []
  75. });
  76. let repeatCount = 0;
  77. const init = async () => {
  78. const { data } = await request.get(
  79. "/surveyService/mechanism/surveyResult/detail",
  80. {
  81. params: {
  82. id: props.rowData.id
  83. }
  84. }
  85. );
  86. console.log(data);
  87. if (!data.detail.resultRaw && repeatCount <= 5) {
  88. repeatCount++;
  89. setTimeout(() => {
  90. init();
  91. }, 5e2 * 2 ** repeatCount);
  92. return;
  93. }
  94. state.surveyResultData =
  95. parseJsonData(data.detail.resultRaw, {}).result?.surveyResultData || [];
  96. key.value = Date.now();
  97. console.log(state.surveyResultData);
  98. };
  99. // init();
  100. const reset = () => {
  101. router.replace({
  102. name: "decisionQuestion",
  103. query: {
  104. id: route.query.surveyMechanismId,
  105. _r: Date.now()
  106. }
  107. });
  108. };
  109. </script>
  110. <style lang="scss" scoped>
  111. .block {
  112. display: block;
  113. box-shadow: 0 0 2px #ddd;
  114. margin: 10px 0;
  115. box-sizing: border-box;
  116. padding: 10px;
  117. overflow: hidden;
  118. &.primary {
  119. background: #fefaeb;
  120. }
  121. }
  122. .block-title {
  123. font-size: 16px;
  124. color: #903128;
  125. }
  126. .block-tag {
  127. display: inline-block;
  128. background: #fcfcf9;
  129. border-radius: 4px;
  130. border: 1px solid #eeeeee;
  131. padding: 8px 15px;
  132. margin: 0 6px 6px 0;
  133. }
  134. .dot-item {
  135. padding-left: 16px;
  136. box-sizing: border-box;
  137. position: relative;
  138. font-size: 14px;
  139. color: #999;
  140. line-height: 1.8;
  141. margin-bottom: 10px;
  142. word-break: break-all;
  143. &::before {
  144. content: "";
  145. position: absolute;
  146. top: 8px;
  147. left: 4px;
  148. width: 8px;
  149. height: 8px;
  150. border-radius: 50%;
  151. background: #903128;
  152. }
  153. }
  154. .block-table {
  155. border-collapse: collapse;
  156. margin: 10px 0;
  157. width: 100%;
  158. tbody {
  159. width: 100%;
  160. }
  161. th {
  162. color: #903128;
  163. line-height: 40px;
  164. background: #f3eae0;
  165. }
  166. td {
  167. color: #888;
  168. width: 60%;
  169. }
  170. th:not(:last-of-type),
  171. td:not(:last-of-type) {
  172. border-right: 1px solid #eee;
  173. text-align: center;
  174. }
  175. td:not(:last-of-type) {
  176. color: #333;
  177. width: 40%;
  178. }
  179. tr:nth-child(even) {
  180. background: #fcfcf9;
  181. }
  182. tr:nth-child(odd) {
  183. background: #f4f0e1;
  184. }
  185. td {
  186. padding: 10px;
  187. }
  188. }
  189. .block-grid {
  190. display: grid;
  191. grid-template-columns: 1fr 1fr;
  192. grid-template-rows: 1fr 1fr;
  193. }
  194. .charts-style {
  195. width: 100%;
  196. height: 360px;
  197. }
  198. .exponent-item {
  199. display: flex;
  200. align-items: center;
  201. }
  202. </style>