CpmdQuestionnaire.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. <script lang="ts" setup>
  2. import { queryQuestionApi, sqveQuesQuestionApi, userPlanDetailApi } from '@/api/home';
  3. import { userInfoStore } from '@/stores';
  4. import Plan from '@/views/Plan.vue';
  5. import { Model } from 'echarts';
  6. import { ElMessage } from 'element-plus';
  7. import { format } from 'date-fns/format';
  8. import { ref, defineExpose, reactive, defineEmits } from 'vue'
  9. import { useRouter } from 'vue-router'
  10. const router = useRouter()
  11. const userInfo = userInfoStore()
  12. const dialogVisible = ref<boolean>(false)
  13. //设置防止重复点击的事件
  14. const isLock = ref<boolean>(false)
  15. const ruleForm = reactive<any>({
  16. //是否是少数民族
  17. isMinority: false,
  18. //出生年月
  19. birthday: '',
  20. //是否是独生子女
  21. isOnlyChild: false,
  22. //父母婚姻状况
  23. matrimony: 1,
  24. //异常体质
  25. abnormal: '',
  26. //吸烟程度
  27. smoking: '',
  28. //饮酒程度
  29. drink: '',
  30. //您在成长过程中是否有过被寄养在别人家的经历
  31. isFoster: false,
  32. //您在成长过程中是否有过超过六个月的留守经历
  33. isLeftBehind: false,
  34. //有无经济压力
  35. economy: false,
  36. //有无学业压力
  37. schoolWork: false,
  38. //有无就业压力
  39. job: false,
  40. //是否迷茫
  41. confused: false
  42. })
  43. //子组件调用父组件的方法
  44. const emit = defineEmits(['continueFun'])
  45. const visible = ref<boolean>(false)
  46. const questionList = ref<any>()
  47. //调用接口 查询问卷调查项的接口
  48. const queryQuestion = async (planId: string) => {
  49. //
  50. questionList.value = [];
  51. let paramsNum = ''
  52. if (userInfo.userInfo.roleType == '2') {
  53. paramsNum = '1'
  54. }
  55. if (userInfo.userInfo.roleType == '1') {
  56. paramsNum = '0'
  57. }
  58. //查询当前用户登录类型
  59. let list: any = await queryQuestionApi(paramsNum)
  60. for (let i = 0; i < list.data.length; i++) {
  61. let obj = {
  62. quesId: list.data[i].id,
  63. optionValue: "",//问题已选的答案
  64. idMandatory: list.data[i].idMandatory,
  65. mulValue: list.data[i].optionValue.split(';'),//全部备选答案
  66. orgNo: userInfo.userInfo.orgNo,//组织编号
  67. planId: planId,//计划ID
  68. quesName: list.data[i].name,//计划问题
  69. quesType: list.data[i].quesType,//问题类型
  70. sortValue: list.data[i].sortValue,//排序值
  71. topicType: list.data[i].topicType,//本题类型
  72. userName: userInfo.userInfo.userName,//用户姓名
  73. userNo: userInfo.userInfo.userNo,//用户编号
  74. }
  75. questionList.value.push(obj)
  76. }
  77. //从此得到返回列表
  78. }
  79. //提交答案时校验
  80. const submitQuestion = () => {
  81. //如果已经上锁---则直接退出
  82. if (isLock.value) {
  83. return
  84. }
  85. isLock.value = true;
  86. for (let i = 0; i < questionList.value.length; i++) {
  87. if (questionList.value[i].topicType == '3' && questionList.value[i].optionValue != '') {
  88. //格式化时间格式
  89. questionList.value[i].optionValue = format(questionList.value[i].optionValue, "yyyy-MM-dd");
  90. }
  91. if (questionList.value[i].idMandatory == '1') {
  92. if (questionList.value[i].optionValue == '') {
  93. ElMessage({
  94. message: `请完成必选项:${questionList.value[i].quesName}`,
  95. type: 'error'
  96. })
  97. isLock.value = false;
  98. return
  99. }
  100. }
  101. }
  102. //调用保存的接口
  103. //保存接口
  104. saveQuesQuestion()
  105. }
  106. const comT = () => {
  107. if (transmitType.value == '0') {
  108. //跳转到测试计划页面
  109. router.push({ name: 'plan' })
  110. } else if (transmitType.value == '1') {
  111. //调用父组件接口
  112. emit('continueFun')
  113. } else {
  114. //跳转到测试计划页面
  115. router.push({ name: 'plan' })
  116. }
  117. }
  118. //保存问卷接口
  119. //设置一个防止重复调用的接口
  120. const saveQuesQuestion = async () => {
  121. let res: any = await sqveQuesQuestionApi(questionList.value)
  122. if (res.code == 200) {
  123. //跳转到测试计划
  124. ElMessage({
  125. type: 'success',
  126. message: '提交完成'
  127. })
  128. dialogVisible.value = false
  129. visible.value = true
  130. }
  131. //当前的标志是---为0时 需要
  132. // if (transmitType.value == '0') {
  133. // //都需要弹出--弹出框
  134. // }
  135. //提交完成后、弹出框提示是进入测试计划页面----还是直接开始测试页面
  136. //弹出框进行提示
  137. //是否跳转到测试计划页面
  138. //是否弹出测试计划页面
  139. //是否弹出开始测试弹出框
  140. isLock.value = false;
  141. }
  142. const disbledData = (time: any) => {
  143. return time.getTime() >= Date.now()
  144. }
  145. const transmitType = ref('')
  146. const open = (planId: string, type: string) => {
  147. dialogVisible.value = true
  148. transmitType.value = type
  149. //拿到登录用户的信息
  150. queryQuestion(planId)
  151. }
  152. //
  153. defineExpose({ open })
  154. </script>
  155. <template>
  156. <el-dialog v-model="dialogVisible" title="" width="600px" top="15vh">
  157. <template #header>
  158. <p style="text-align: center;font-weight: 700;">问卷填写</p>
  159. </template>
  160. <span style="height: 60vh;display: flex;overflow-y: auto;padding:0px 20px">
  161. <div v-if="questionList.length > 0">
  162. <div v-for="item, index in questionList" :key="item.id" class="question_out">
  163. <div class="title_out">{{ index + 1 }}:
  164. <span class="xing">{{ item.idMandatory == '1' ? '*' : '' }}</span><span>{{
  165. item.quesName }}</span>
  166. </div>
  167. <el-radio-group v-model="item.optionValue" v-if="item.topicType == '1'" class="question_radio">
  168. <el-radio :label="ch" v-for="ch in item.mulValue" :key="ch"></el-radio>
  169. <!-- <el-radio label="线下场地免费"></el-radio> -->
  170. </el-radio-group>
  171. <el-date-picker v-model="item.optionValue" type="date" placeholder="选择出生年月" class="question_radio"
  172. v-if="item.topicType == '3'" :disabled-date="disbledData" />
  173. </div>
  174. </div>
  175. </span>
  176. <template #footer>
  177. <div class="footer_cus">
  178. <div class="start_button_out_close">
  179. <div class="start_button_self_close" @click="dialogVisible = false">
  180. <span>关闭</span>
  181. </div>
  182. </div>
  183. <!-- <el-button type="primary" @click="submitQuestion">
  184. 提交
  185. </el-button> -->
  186. <div class="start_button_out">
  187. <div class="start_button_self" @click="submitQuestion">
  188. <span>提交</span>
  189. </div>
  190. </div>
  191. <!-- <div>
  192. 提交
  193. </div> -->
  194. </div>
  195. </template>
  196. </el-dialog>
  197. <!-- //另一个框 弹出确认是否跳转 -->
  198. <el-dialog v-model="visible" :show-close="true" width="500" style="border-radius: 20px;">
  199. <template #header>
  200. <div class="my-header" style="text-align: center;">
  201. <div class="exit_login_title">提示</div>
  202. <div class="exit_login_info" v-if="transmitType == '0'">是否跳转到测试计划页面?</div>
  203. <div class="exit_login_info" v-if="transmitType == '1'">是否直接开始测试计划?</div>
  204. <div class="start_button_out" style="margin-top:20px;display: flex;justify-content: space-around;">
  205. <div class="start_button_self_close" @click="visible = false">
  206. 取消
  207. </div>
  208. <div class="start_button_self" @click="comT">
  209. 确定
  210. </div>
  211. </div>
  212. </div>
  213. </template>
  214. </el-dialog>
  215. </template>
  216. <style lang="scss">
  217. .el-dialog {
  218. border-radius: 20px;
  219. }
  220. .footer_cus {
  221. display: flex;
  222. justify-content: space-around;
  223. }
  224. .exit_login_title {
  225. text-align: center;
  226. color: #222222;
  227. font-weight: 700;
  228. font-size: 20px;
  229. letter-spacing: 3px;
  230. }
  231. .exit_login_info {
  232. text-align: center;
  233. letter-spacing: 3px;
  234. font-size: 18px;
  235. margin-top: 20px;
  236. }
  237. .start_button_out {
  238. // margin-top: 40px;
  239. // margin-bottom: 40px;
  240. display: flex;
  241. flex-direction: row;
  242. justify-content: end;
  243. .start_button_self_close {
  244. cursor: pointer;
  245. // width: 100px;
  246. border-radius: 12px;
  247. border: 1px solid #dddddd;
  248. color: #000000;
  249. background-color: #ffffff;
  250. margin-right: 20px;
  251. padding: 8px 20px;
  252. cursor: pointer;
  253. display: flex;
  254. align-items: center;
  255. }
  256. .start_button_self {
  257. cursor: pointer;
  258. // width: 100px;
  259. border-radius: 12px;
  260. border: 3px solid #48D68E;
  261. color: #ffffff;
  262. background-color: #000000;
  263. margin-right: 20px;
  264. padding: 8px 20px;
  265. cursor: pointer;
  266. display: flex;
  267. align-items: center;
  268. }
  269. }
  270. .start_button_out_close {
  271. // margin-top: 40px;
  272. // margin-bottom: 40px;
  273. display: flex;
  274. flex-direction: row;
  275. justify-content: end;
  276. .start_button_self_close {
  277. cursor: pointer;
  278. // width: 100px;
  279. border-radius: 12px;
  280. border: 1px solid #dddddd;
  281. color: #000000;
  282. background-color: #ffffff;
  283. margin-right: 20px;
  284. padding: 8px 20px;
  285. cursor: pointer;
  286. display: flex;
  287. align-items: center;
  288. }
  289. }
  290. .question_out {
  291. display: flex;
  292. flex-direction: column;
  293. .title_out {
  294. display: flex;
  295. .xing {
  296. width: 10px;
  297. text-align: right;
  298. color: red;
  299. }
  300. }
  301. .question_radio {
  302. margin-top: 5px;
  303. margin-bottom: 10px;
  304. margin-left: 10px;
  305. }
  306. }
  307. </style>