exam.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. <template>
  2. <view class="page">
  3. <!-- <view class="aaa" style=""> -->
  4. <u-sticky>
  5. <view class="top">
  6. <view class="top_left">
  7. 考生: {{$store.getters.username}}({{$store.getters.usercode}})
  8. </view>
  9. <view class="top_right">
  10. 考生须知
  11. </view>
  12. </view>
  13. </u-sticky>
  14. <view class="content">
  15. <view class="list" v-for="(v,i) in dataList.titleInfos" :key="i">
  16. <view class="list_title">
  17. <view class="list_title_left">
  18. ({{v.titleType===0? '单选题':v.titleType===1?'多选题':'判断题'}}) {{i+1}}.{{v.titleName}}({{v.score}}分)
  19. </view>
  20. <!-- <view class="list_title_right">
  21. (3分)
  22. </view> -->
  23. </view>
  24. <!-- 单选题 -->
  25. <view v-if="v.titleType===0" class="">
  26. <u-radio-group v-model="v.answer" style='flex-wrap: wrap;'>
  27. <u-radio :customStyle=" {marginBottom: '8px',width: '50%' }" v-for="(value,i) in v.options" :key="i"
  28. :name="value.sequence" :label="value.sequence+':'+value.option">
  29. </u-radio>
  30. </u-radio-group>
  31. </view>
  32. <!-- 多选题 -->
  33. <view v-if="v.titleType===1" class="">
  34. <u-checkbox-group v-model="v.answer" style='flex-wrap: wrap;'>
  35. <u-checkbox :customStyle="{marginBottom: '8px',width: '50%'}" v-for="(value,i) in v.options" :key="i"
  36. :name="value.sequence" :label="value.sequence+':'+value.option">
  37. </u-checkbox>
  38. </u-checkbox-group>
  39. </view>
  40. <!-- 判断提 -->
  41. <view v-if="v.titleType === 2" class="">
  42. <u-radio-group v-model="v.answer" style='flex-wrap: wrap;'>
  43. <u-radio :customStyle=" {marginBottom: '8px',width: '50%' }" v-for="(value,i) in v.options" :key="i"
  44. :name="value.sequence" :label="value.sequence+':'+value.option">
  45. </u-radio>
  46. </u-radio-group>
  47. </view>
  48. </view>
  49. </view>
  50. <u-button @click='answersFn' style='width: 160rpx;position: fixed;left: 20rpx;bottom: 20rpx;' type='primary'
  51. text="答题情况"></u-button>
  52. <u-button @click='submitFn' style='width: 500rpx;position: fixed;right: 20rpx;bottom: 20rpx;' type='primary'
  53. text="提交">
  54. </u-button>
  55. <!-- 答题情况 -->
  56. <u-popup :show="show" :round="10" mode="bottom" @close="close" @open="open">
  57. <view class="answers">
  58. <view class="">
  59. <u-cell-group>
  60. <u-cell title="试题列表">
  61. <text @click="close" slot="value">X</text>
  62. </u-cell>
  63. </u-cell-group>
  64. </view>
  65. <view class="list">
  66. <view :class="v.answer=='' || v.answer == [] ? 'ball_no' : 'ball'" v-for="(v,i) in dataList.titleInfos"
  67. :key="i">
  68. {{i+1}}
  69. </view>
  70. </view>
  71. <u-divider :text="`本券共${titleInfos.length}题`"></u-divider>
  72. <view class="all">
  73. <view class="all_ball">
  74. {{titleInfos.length-unanswered}}
  75. </view>
  76. <view class="all_ok">
  77. 已答
  78. </view>
  79. <view class="all_ball_no">
  80. {{titleInfos.length}}
  81. </view>
  82. <view class="all_no">
  83. 未答
  84. </view>
  85. </view>
  86. <!-- <view style="margin-top: 40rpx;">
  87. <u-button @click='submitFn' shape='circle' style='width: 700rpx' type='primary' text="提交考试"></u-button>
  88. </view> -->
  89. </view>
  90. </u-popup>
  91. <!-- 模态框 -->
  92. <u-modal @confirm='confirmFn' @cancel='cancelFn' :show="showModal" :title="title" :content='content'
  93. showCancelButton></u-modal>
  94. <!-- 遮罩层 -->
  95. <u-overlay :show="showOverlay" :opacity='1' style='background-color: #c1c1c1;'>
  96. <view class="warp">
  97. <u-modal @confirm='confirmOverlayFn' @cancel='cancelOverlayFn' :show="showModalOverlay" title="考生须知"
  98. showCancelButton>
  99. <view class="slot-content">
  100. <rich-text :nodes="contentSlot"></rich-text>
  101. </view>
  102. </u-modal>
  103. </view>
  104. </u-overlay>
  105. </view>
  106. </template>
  107. <script>
  108. export default {
  109. data() {
  110. return {
  111. options: {},
  112. dataList: {},
  113. titleInfos: [],
  114. showOverlay: false,
  115. showModalOverlay: false,
  116. showModal: false,
  117. title: '提示',
  118. content: '请确认作答全部完成再提交,提交后将不可 修改作答结果!',
  119. contentSlot: `
  120. <div style="font-size: 12px; color: #666666">
  121. <p>考生须诚信考试,端正考试态度,实事求是</p>
  122. <p>一、考试环境要求</p>
  123. <p>&emsp;1.PC端要求:谷歌浏览器(建议使用6.0版本以上)、IE9以上浏览器、火狐浏览器50版本以上。</p>
  124. <p>&emsp;2.移动端要求:登录嘉讯茂-学习平台进行考试,请勿在移动设备使用浏览器登录考试。</p>
  125. <p>二、考生答题要求</p>
  126. <p>&emsp;1.如果当前考试设置了切屏,当达到本次考试设置的切屏次数时,系统将自动交卷。</p>
  127. <p>&emsp;2.考试过程中如意外退出考试系统(如死机、断电等情况),系统不会自动交卷,考生需尽快再次登录系统进入考试,之前的答卷信息会保留。如在考试倒计时截止前进入考试,可继续答题;考试倒计时截止后进入,系统将提示交卷,不可继续答题。</p>
  128. <p>&emsp;3.考试过程中,可在答题卡中快速查看已答题目、未答题目和待检查的题目。</p>
  129. <p>&emsp;4.考生在使用移动设备答题时,需要注意右下角答题数量,如果在已经答题的情况下,已答题数依然显示为0,则需要马上更换设备进行作答。</p>
  130. <p>&emsp;5. 答题完毕后,一定要点击交卷按钮进行交卷,请勿直接关闭浏览器。</p>
  131. <p>三、其他</p>
  132. <p>&emsp;1.如果当前考试允许多次考试,最终成绩取最高分。</p>
  133. <p>&emsp;2.交卷后,考生在考试记录中查看考试得分和答卷详情。</p>
  134. <p>&emsp;3.考试过程中如遇特殊情况,可与考试组织方联系。</p>
  135. </div>`,
  136. show: false,
  137. value: null,
  138. checkboxValue1: [],
  139. checkboxList1: [{
  140. name: '苹果',
  141. disabled: false
  142. },
  143. {
  144. name: '香蕉',
  145. disabled: false
  146. },
  147. {
  148. name: '橙子',
  149. disabled: false
  150. },
  151. {
  152. name: '11',
  153. disabled: false
  154. }
  155. ],
  156. };
  157. },
  158. computed: {
  159. unanswered() {
  160. let num = 0
  161. this.titleInfos.forEach(v => {
  162. if (v.answer === '' || v.answer === []) {
  163. num = num + 1
  164. }
  165. })
  166. return num
  167. }
  168. },
  169. onLoad(options) {
  170. this.showOverlay = true
  171. this.showModalOverlay = true
  172. this.options = options
  173. },
  174. onShow() {
  175. this.getData(this.options)
  176. },
  177. methods: {
  178. //提交
  179. async submit() {
  180. let dataList = JSON.parse(JSON.stringify(this.dataList)).titleInfos;
  181. // 遍历试题
  182. for (let i = 0; i < dataList.length; i++) {
  183. // 遍历选项
  184. for (let j = 0; j < dataList[i].options.length; j++) {
  185. if (dataList[i].answer.indexOf(dataList[i].options[j].sequence) > -1) {
  186. dataList[i].options[j].answer = true;
  187. }
  188. }
  189. }
  190. let params = {
  191. "disciplineId": this.options.disciplineId,
  192. "projectDisciplineFlag": this.options.projectDisciplineId ? true : false,
  193. "projectDisciplineId": this.options.projectDisciplineId ? this.options.projectDisciplineId : '',
  194. "titles": dataList
  195. }
  196. await this.$api.post('/homepage/confirm', params)
  197. uni.navigateBack({
  198. delta: 1
  199. });
  200. },
  201. //获取数据
  202. async getData(options) {
  203. let params = {
  204. "accountCode": this.$store.getters.usercode,
  205. "disciplineId": options.disciplineId,
  206. "projectDisciplineFlag": options.projectDisciplineId === '' ? false : true,
  207. "projectDisciplineId": options.projectDisciplineId === '' ? '' : options.projectDisciplineId,
  208. }
  209. let {
  210. data
  211. } = await this.$api.post('/homepage/gettitle', params)
  212. data.titleInfos.forEach((v, i) => {
  213. if (v.titleType === 1) {
  214. v.answer = []
  215. } else {
  216. v.answer = ''
  217. }
  218. })
  219. this.dataList = data
  220. this.titleInfos = data.titleInfos
  221. },
  222. // 遮罩层模态框确认
  223. confirmOverlayFn() {
  224. this.showOverlay = false
  225. this.showModalOverlay = false
  226. },
  227. // 遮罩层模态框取消
  228. cancelOverlayFn() {
  229. this.$router.go(-1)
  230. },
  231. // 模态框确认
  232. confirmFn() {
  233. this.submit()
  234. this.cancelFn()
  235. },
  236. // 模态框取消
  237. cancelFn() {
  238. this.showModal = false
  239. },
  240. // 提交考试
  241. submitFn() {
  242. this.showModal = true
  243. },
  244. open() {
  245. // console.log('open');
  246. },
  247. close() {
  248. this.show = false
  249. // console.log('close');
  250. },
  251. answersFn() {
  252. this.show = true
  253. }
  254. }
  255. }
  256. </script>
  257. <style scoped lang="scss">
  258. page {
  259. background-color: #fff;
  260. }
  261. .warp {
  262. display: flex;
  263. align-items: center;
  264. justify-content: center;
  265. height: 100%;
  266. }
  267. .answers {
  268. .list {
  269. display: flex;
  270. flex-wrap: wrap;
  271. // margin-bottom: 20rpx;
  272. }
  273. .ball {
  274. margin: 20rpx 54rpx;
  275. width: 40rpx;
  276. height: 40rpx;
  277. line-height: 40rpx;
  278. text-align: center;
  279. color: #fff;
  280. font-size: 28rpx;
  281. background: #00b226;
  282. border-radius: 40rpx;
  283. }
  284. .ball_no {
  285. margin: 20rpx 54rpx;
  286. width: 40rpx;
  287. height: 40rpx;
  288. line-height: 40rpx;
  289. text-align: center;
  290. color: #fff;
  291. font-size: 28rpx;
  292. background: #FF8519;
  293. border-radius: 40rpx;
  294. }
  295. .all {
  296. display: flex;
  297. justify-content: center;
  298. align-items: center;
  299. margin-bottom: 40rpx;
  300. .all_ball {
  301. width: 40rpx;
  302. height: 40rpx;
  303. line-height: 40rpx;
  304. text-align: center;
  305. color: #fff;
  306. font-size: 28rpx;
  307. background: #00b226;
  308. border-radius: 40rpx;
  309. }
  310. .all_ball_no {
  311. width: 40rpx;
  312. height: 40rpx;
  313. line-height: 40rpx;
  314. text-align: center;
  315. color: #fff;
  316. font-size: 28rpx;
  317. background: #FF8519;
  318. border-radius: 40rpx;
  319. }
  320. .all_ok {
  321. padding: 0 30rpx;
  322. }
  323. .all_no {
  324. padding: 0 30rpx;
  325. }
  326. }
  327. }
  328. .page {
  329. // height: 93vh;
  330. // position: relative;
  331. padding-bottom: 76rpx;
  332. }
  333. .content {
  334. padding: 20rpx;
  335. }
  336. .top {
  337. display: flex;
  338. justify-content: space-around;
  339. align-items: center;
  340. height: 120rpx;
  341. background-color: #6DA7FF;
  342. color: #fff;
  343. .top_left {
  344. font-size: 28rpx;
  345. }
  346. .top_right {
  347. font-size: 24rpx;
  348. }
  349. }
  350. .list {
  351. margin-bottom: 20rpx;
  352. .list_title {
  353. display: flex;
  354. font-size: 28rpx;
  355. margin-bottom: 20rpx;
  356. .list_title_left {
  357. line-height: 40rpx;
  358. flex: 1;
  359. }
  360. .list_title_right {
  361. width: 150rpx;
  362. }
  363. }
  364. }
  365. </style>