index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. <template>
  2. <div class="c_box">
  3. <div class="c_box_title">{{ title }}</div>
  4. <div class="c_box_score">总分:{{ score }}</div>
  5. <div class="c_body" v-if="isloading">
  6. <div v-if="type == 3">
  7. <div v-for="(item, index) in checkArray[page].array" :key="index" class="check_box">
  8. <div class="title" v-if="item.ttype != 1 || (!item.json && item.ttype == 1)" :style="{fontSize:item.ttype == 1 && '16px'}">{{ selectType(item, index) }}</div>
  9. <div v-if="item.ttype == 1" class="answerBox">
  10. <choiceV :tindex="index" :cJson.sync="item.json" v-if="item.type == 1"></choiceV>
  11. <gapV :tindex="index" :cJson.sync="item.json" v-if="item.type == 3"></gapV>
  12. <fileV :tindex="index" :cJson.sync="item.json" v-if="item.type == 5"></fileV>
  13. <courseV :tindex="index" :cJson.sync="item.json" v-if="item.type == 6"></courseV>
  14. <evaV :tindex="index" :cJson.sync="item.json" v-if="item.type == 7"></evaV>
  15. <timeV :tindex="index" :cJson.sync="item.json" v-if="item.type == 8"></timeV>
  16. <courseV2 :tindex="index" :cJson.sync="item.json" v-if="item.type == 11"></courseV2>
  17. <sweep :tindex="index" :cJson.sync="item.json" v-if="item.type == 12"/>
  18. <!-- <span v-else>暂未设置题目</span> -->
  19. </div>
  20. <div v-for="(item2, index2) in item.array" :key="`${index}-${index2}`" class="check_box_xia">
  21. <div class="title" v-if="item2.ttype != 1 || (!item2.json && item2.ttype == 1)" :style="{fontSize:item2.ttype == 1 && '16px'}">{{ selectType(item2, index2) }}</div>
  22. <div v-if="item2.ttype == 1" class="answerBox">
  23. <choiceV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 1"></choiceV>
  24. <gapV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 3"></gapV>
  25. <fileV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 5"></fileV>
  26. <courseV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 6"></courseV>
  27. <evaV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 7"></evaV>
  28. <timeV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 8"></timeV>
  29. <courseV2 :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 11"></courseV2>
  30. <sweep :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 12"></sweep>
  31. <!-- <span v-else>暂未设置题目</span> -->
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. <div v-else>
  37. <div v-for="(item, index) in checkArray" :key="index" class="check_box">
  38. <div class="title" v-if="item.ttype != 1 || (!item.json && item.ttype == 1)" :style="{fontSize:item.ttype == 1 && '16px'}">{{ selectType(item, index) }}</div>
  39. <div v-if="item.ttype == 1" class="answerBox">
  40. <choiceV :tindex="index" :cJson.sync="item.json" v-if="item.type == 1"></choiceV>
  41. <gapV :tindex="index" :cJson.sync="item.json" v-if="item.type == 3"></gapV>
  42. <fileV :tindex="index" :cJson.sync="item.json" v-if="item.type == 5"></fileV>
  43. <courseV :tindex="index" :cJson.sync="item.json" v-if="item.type == 6"></courseV>
  44. <evaV :tindex="index" :cJson.sync="item.json" v-if="item.type == 7"></evaV>
  45. <timeV :tindex="index" :cJson.sync="item.json" v-if="item.type == 8"></timeV>
  46. <courseV2 :tindex="index" :cJson.sync="item.json" v-if="item.type == 11"></courseV2>
  47. <sweep :tindex="index" :cJson.sync="item.json" v-if="item.type == 12"></sweep>
  48. <!-- <span v-else>暂未设置题目</span> -->
  49. </div>
  50. <div v-for="(item2, index2) in item.array" :key="`${index}-${index2}`" class="check_box_xia">
  51. <div class="title" v-if="item2.ttype != 1 || (!item2.json && item2.ttype == 1)" :style="{fontSize:item2.ttype == 1 && '16px'}">{{ selectType(item2, index2) }}</div>
  52. <div v-if="item2.ttype == 1" class="answerBox">
  53. <choiceV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 1"></choiceV>
  54. <gapV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 3"></gapV>
  55. <fileV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 5"></fileV>
  56. <courseV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 6"></courseV>
  57. <evaV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 7"></evaV>
  58. <timeV :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 8"></timeV>
  59. <courseV2 :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 11"></courseV2>
  60. <sweep :tindex="index2" :cJson.sync="item2.json" v-if="item2.type == 12"></sweep>
  61. <!-- <span v-else>暂未设置题目</span> -->
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. <div v-if="checkArray.length > 1 && type == 3" class="page">
  67. <el-button type="primary" size="mini" :disabled="page == 0" @click="setPage('-1')">上一页</el-button>
  68. <div class="p_page"><span>{{ page + 1 }}</span><span>/</span><span>{{ checkArray.length }}</span></div>
  69. <el-button type="primary" size="mini" :disabled="page == (checkArray.length - 1)" @click="setPage('1')">下一页</el-button>
  70. </div>
  71. </div>
  72. </div>
  73. </template>
  74. <script>
  75. import choiceV from './choice.vue';
  76. import gapV from './gap.vue';
  77. import fileV from './file.vue';
  78. import courseV from './course.vue';
  79. import evaV from './eva.vue';
  80. import timeV from './time.vue';
  81. import courseV2 from './course2.vue';
  82. import sweep from './sweep.vue'
  83. export default {
  84. props: {
  85. cJson: {
  86. type: Array,
  87. },
  88. title: {
  89. type: String,
  90. }
  91. },
  92. components: {
  93. choiceV,
  94. gapV,
  95. fileV,
  96. courseV,
  97. evaV,
  98. timeV,
  99. courseV2,
  100. sweep
  101. },
  102. data() {
  103. return {
  104. checkArray: [],
  105. type: 1,
  106. page: 0,
  107. options2: {
  108. 1: "选择题",
  109. // 2: "问答题",
  110. 3: "问答题",
  111. 4: "添加文档",
  112. 5: "附件",
  113. 6: "课程",
  114. 7: "评分",
  115. },
  116. isloading:true,
  117. }
  118. },
  119. computed: {
  120. selectType() {
  121. return function (item, index) {
  122. if (item.ttype == 1) {
  123. return index + 1 + "、" + this.options2[item.type];
  124. } else if (item.ttype == 2) {
  125. return `${item.name ? item.name : `第${index + 1}组`}(共${item.array.length}题)`;
  126. } else if (item.ttype == 3) {
  127. return `分页${index + 1}`;
  128. }
  129. };
  130. },
  131. score() {
  132. let score = 0
  133. this.cJson.forEach(el => {
  134. if ((el.ttype == 3 || el.ttype == 2) && el.array.length > 0) {
  135. el.array.forEach(item => {
  136. if (item.ttype == 2 && item.array.length > 0) {
  137. item.array.forEach(item2 => {
  138. if (item2.ttype == 1 && item2.json) {
  139. score += item2.json.score ? parseFloat(item2.json.score) : 0
  140. }
  141. })
  142. } else if (item.ttype == 1 && item.json) {
  143. score += item.json.score ? parseFloat(item.json.score) : 0
  144. }
  145. })
  146. } else if (el.ttype == 1 && el.json) {
  147. score += el.json.score ? parseFloat(el.json.score) : 0
  148. }
  149. })
  150. return score > 0 ? score + '分' : '未设置分数'
  151. }
  152. },
  153. watch: {
  154. cJson: {
  155. handler(newVal, oldVal) {
  156. console.log(newVal);
  157. console.log(oldVal);
  158. this.checkArray = this.setJson(this.depthCopy(newVal))
  159. },
  160. deep: true
  161. },
  162. },
  163. methods: {
  164. setPage(index){
  165. this.isloading = false
  166. if(index == '1'){
  167. this.page++
  168. }else if(index == '-1'){
  169. this.page--
  170. }
  171. setTimeout(()=>{
  172. this.isloading = true
  173. }, 50)
  174. this.$forceUpdate()
  175. },
  176. depthCopy(s) {
  177. return JSON.parse(JSON.stringify(s));
  178. },
  179. setJson(json) {
  180. if (json.length > 0) {
  181. let _json = this.depthCopy(json)
  182. this.type = _json[0].ttype
  183. let checkArray = _json.filter(item => {
  184. if (item.array) {
  185. item.array = item.array.filter((item2) => {
  186. if (item2.ttype == 1 && item2.json && !item2.json.answer2 && item2.type != 6 && item.type != 7 && item.type != 8 && item.type != 12) {
  187. item2.json.answer2 = [];
  188. } else if (item2.ttype == 1 && item2.json && !item2.json.answer2 && item2.type == 6) {
  189. item2.json.answer2 = item2.json.courses[0];
  190. } else if (item2.ttype == 1 && item2.json && !item2.json.answer2 && item2.type == 7) {
  191. item2.json.answer2 = '';
  192. } else if (item2.ttype == 1 && item2.json && !item2.json.answer2 && item2.type == 8) {
  193. item2.json.answer2 = '';
  194. }else if (item2.ttype == 1 && item2.json && !item2.json.answer2 && item2.type == 12) {
  195. item2.json.answer2 = '';
  196. }
  197. if (item2.array) {
  198. item2.array = item2.array.filter((item3) => {
  199. if (item3.ttype == 1 && item3.json && !item3.json.answer2 && item3.type != 6 && item3.type != 7 && item3.type != 8 && item3.type != 12) {
  200. item3.json.answer2 = [];
  201. } else if (item3.ttype == 1 && item3.json && !item3.json.answer2 && item3.type == 6) {
  202. item3.json.answer2 = item3.json.courses[0];
  203. } else if (item3.ttype == 1 && item3.json && !item3.json.answer2 && item3.type == 7) {
  204. item3.json.answer2 = '';
  205. } else if (item3.ttype == 1 && item3.json && !item3.json.answer2 && item3.type == 8) {
  206. item3.json.answer2 = '';
  207. }else if (item3.ttype == 1 && item3.json && !item3.json.answer2 && item3.type == 12) {
  208. item3.json.answer2 = '';
  209. }
  210. return item3;
  211. });
  212. }
  213. return (
  214. (item2.ttype != 1 && item2.array.length > 0) || item2.ttype == 1
  215. );
  216. });
  217. }
  218. if (item.ttype == 1 && item.json && !item.json.answer2 && item.type != 6 && item.type != 7 && item.type != 8 && item.type != 12) {
  219. item.json.answer2 = [];
  220. } else if (item.ttype == 1 && item.json && !item.json.answer2 && item.type == 6) {
  221. item.json.answer2 = item.json.courses[0];
  222. } else if (item.ttype == 1 && item.json && !item.json.answer2 && item.type == 7) {
  223. item.json.answer2 = '';
  224. } else if (item.ttype == 1 && item.json && !item.json.answer2 && item.type == 8) {
  225. item.json.answer2 = '';
  226. }else if (item.ttype == 1 && item.json && !item.json.answer2 && item.type == 12) {
  227. item.json.answer2 = '';
  228. }
  229. console.log(item.array);
  230. return (item.ttype != 1 && item.array.length > 0) || item.ttype == 1;
  231. })
  232. console.log(checkArray);
  233. return checkArray
  234. } else {
  235. return []
  236. }
  237. }
  238. },
  239. mounted() {
  240. this.checkArray = this.setJson(this.depthCopy(this.cJson))
  241. },
  242. }
  243. </script>
  244. <style scoped>
  245. .c_box {
  246. padding: 10px 0;
  247. box-sizing: border-box;
  248. width: 100%;
  249. margin: 0 auto 0;
  250. background: #fff;
  251. height: calc(100% - 0px);
  252. overflow: auto;
  253. }
  254. .c_box_title {
  255. width: 90%;
  256. text-align: center;
  257. font-size: 24px;
  258. font-weight: bold;
  259. word-break: break-all;
  260. margin: 10px auto;
  261. }
  262. .c_box_score {
  263. width: 90%;
  264. text-align: center;
  265. word-break: break-all;
  266. margin: 0 auto 20px;
  267. font-size: 16px;
  268. color: #373737;
  269. }
  270. .c_body {
  271. width: 90%;
  272. margin: 0 auto;
  273. }
  274. .check_box {
  275. }
  276. .check_box+.check_box {
  277. margin-top: 10px;
  278. padding-top: 10px;
  279. /* border-top: 1px solid #eee; */
  280. }
  281. .check_box>.title {
  282. font-size: 24px;
  283. word-break: break-all;
  284. font-weight: bold;
  285. margin-left: 45px;
  286. }
  287. .check_box>.answerBox {
  288. margin-top: 10px;
  289. }
  290. .check_box>.noanswerBox {
  291. margin-top: 10px;
  292. }
  293. .check_box_xia {
  294. padding: 15px 0;
  295. }
  296. .check_box_xia + .check_box_xia {
  297. /* border-top: 1px solid #eee; */
  298. }
  299. .check_box_xia>.title {
  300. font-size: 22px;
  301. font-weight: bold;
  302. margin-left: 45px;
  303. }
  304. .check_box_xia>.answerBox {
  305. margin-top: 10px;
  306. }
  307. .check_box_xia>.noanswerBox {
  308. margin-top: 10px;
  309. }
  310. .page {
  311. margin: 20px;
  312. display: flex;
  313. align-items: center;
  314. justify-content: center;
  315. }
  316. .p_page {
  317. margin: 0 10px;
  318. }</style>