index.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <div class="c_box">
  3. <div class="c_box_title">{{ title }}</div>
  4. <div class="c_body">
  5. <div v-if="type == 3">
  6. <div v-for="(item, index) in checkArray[page].array" :key="index" class="check_box">
  7. <div class="title">{{ selectType(item, index) }}</div>
  8. <div v-if="item.ttype == 1" class="answerBox">
  9. <choiceV :cJson.sync="item.json" v-if="item.type == 1"></choiceV>
  10. <gapV :cJson.sync="item.json" v-if="item.type == 3"></gapV>
  11. <span v-else>暂未设置题目</span>
  12. </div>
  13. <div v-for="(item2, index2) in item.array" :key="`${index}-${index2}`" class="check_box_xia">
  14. <div class="title">{{ selectType(item2, index2) }}</div>
  15. <div v-if="item2.ttype == 1" class="answerBox">
  16. <choiceV :cJson.sync="item2.json" v-if="item2.type == 1"></choiceV>
  17. <gapV :cJson.sync="item2.json" v-if="item2.type == 3"></gapV>
  18. <span v-else>暂未设置题目</span></div>
  19. </div>
  20. </div>
  21. </div>
  22. <div v-else>
  23. <div v-for="(item, index) in checkArray" :key="index" class="check_box">
  24. <div class="title">{{ selectType(item, index) }}</div>
  25. <div v-if="item.ttype == 1" class="answerBox">
  26. <choiceV :cJson.sync="item.json" v-if="item.type == 1"></choiceV>
  27. <gapV :cJson.sync="item.json" v-if="item.type == 3"></gapV>
  28. <span v-else>暂未设置题目</span>
  29. </div>
  30. <div v-for="(item2, index2) in item.array" :key="`${index}-${index2}`" class="check_box_xia">
  31. <div class="title">{{ selectType(item2, index2) }}</div>
  32. <div v-if="item2.ttype == 1" class="answerBox">
  33. <choiceV :cJson.sync="item2.json" v-if="item2.type == 1"></choiceV>
  34. <gapV :cJson.sync="item2.json" v-if="item2.type == 3"></gapV>
  35. <span v-else>暂未设置题目</span>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. <div v-if="checkArray.length > 1 && type == 3" class="page">
  41. <el-button type="primary" size="mini" :disabled="page == 0" @click="page--">上一页</el-button>
  42. <div class="p_page"><span>{{ page + 1 }}</span><span>/</span><span>{{ checkArray.length }}</span></div>
  43. <el-button type="primary" size="mini" :disabled="page == (checkArray.length - 1)" @click="page++">下一页</el-button>
  44. </div>
  45. </div>
  46. </div>
  47. </template>
  48. <script>
  49. import choiceV from './choice.vue';
  50. import gapV from './gap.vue';
  51. export default {
  52. props: {
  53. cJson: {
  54. type: Array,
  55. },
  56. title: {
  57. type: String,
  58. }
  59. },
  60. components: {
  61. choiceV,
  62. gapV
  63. },
  64. data() {
  65. return {
  66. checkArray: [],
  67. type: 1,
  68. page: 0,
  69. options2: {
  70. 1: "选择题",
  71. 2: "问答题",
  72. 3: "填空题",
  73. 4: "添加文档"
  74. },
  75. }
  76. },
  77. computed: {
  78. selectType() {
  79. return function (item, index) {
  80. if (item.ttype == 1) {
  81. return index + 1 + "、" + this.options2[item.type];
  82. } else if (item.ttype == 2) {
  83. return `第${index + 1}组 (共${item.array.length}题)`;
  84. } else if (item.ttype == 3) {
  85. return `分页${index + 1}`;
  86. }
  87. };
  88. }
  89. },
  90. watch: {
  91. cJson: {
  92. handler(newVal, oldVal) {
  93. console.log(newVal);
  94. console.log(oldVal);
  95. this.checkArray = this.setJson(this.depthCopy(newVal))
  96. },
  97. deep: true
  98. }
  99. },
  100. methods: {
  101. depthCopy(s) {
  102. return JSON.parse(JSON.stringify(s));
  103. },
  104. setJson(json) {
  105. if (json.length > 0) {
  106. let _json = this.depthCopy(json)
  107. this.type = _json[0].ttype
  108. let checkArray = _json.filter(item => {
  109. if (item.array) {
  110. item.array = item.array.filter(item2 => {
  111. if (item2.ttype == 1 && item2.json && !item2.json.answer2) {
  112. item2.json.answer2 = []
  113. }
  114. if (item2.array) {
  115. item2.array = item2.array.filter(item3 => {
  116. if (item3.ttype == 1 && item3.json && !item3.json.answer2) {
  117. item3.json.answer2 = []
  118. }
  119. return item3
  120. })
  121. }
  122. return (item2.ttype != 1 && item2.array.length > 0) || (item2.ttype == 1)
  123. })
  124. }
  125. if (item.ttype == 1 && item.json && !item.json.answer2) {
  126. item.json.answer2 = []
  127. }
  128. console.log(item.array);
  129. return (item.ttype != 1 && item.array.length > 0) || (item.ttype == 1)
  130. })
  131. console.log(checkArray);
  132. return checkArray
  133. } else {
  134. return []
  135. }
  136. }
  137. },
  138. mounted() {
  139. this.checkArray = this.setJson(this.depthCopy(this.cJson))
  140. },
  141. }
  142. </script>
  143. <style scoped>
  144. .c_box {
  145. padding: 10px 0 0;
  146. box-sizing: border-box;
  147. width: 95%;
  148. margin: 10px auto 0;
  149. background: #fff;
  150. height: calc(100% - 10px);
  151. overflow: auto;
  152. }
  153. .c_box_title {
  154. width: 90%;
  155. text-align: center;
  156. font-size: 24px;
  157. font-weight: bold;
  158. word-break: break-all;
  159. margin: 20px;
  160. }
  161. .c_body {
  162. width: 90%;
  163. margin: 0 auto;
  164. }
  165. .check_box{
  166. }
  167. .check_box + .check_box{
  168. margin-top: 10px;
  169. }
  170. .check_box > .title{
  171. font-size:20px;
  172. word-break: break-all;
  173. font-weight: bold;
  174. }
  175. .check_box > .answerBox{
  176. margin-top: 10px;
  177. }
  178. .check_box > .noanswerBox{
  179. margin-top: 10px;
  180. }
  181. .check_box_xia{
  182. margin-top: 10px;
  183. }
  184. .check_box_xia > .title{
  185. font-size: 18px;
  186. font-weight: bold;
  187. }
  188. .check_box_xia > .answerBox{
  189. margin-top: 10px;
  190. }
  191. .check_box_xia > .noanswerBox{
  192. margin-top: 10px;
  193. }
  194. .page{
  195. margin: 20px;
  196. display: flex;
  197. align-items: center;
  198. }
  199. .p_page{
  200. margin: 0 10px;
  201. }
  202. </style>