index.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <template>
  2. <div style="background: #fff">
  3. <div class="one">
  4. <div class="class"><img src="../assets/img/class.png" alt="" /></div>
  5. <div class="right">
  6. <div class="buttonClass">
  7. <div class="noOnclick" :class="{Volume :type1 == 0}" @click="type1= 0">上册</div>
  8. <div class="noOnclick" :class="{Volume :type1 == 1}" @click="type1= 1">下册</div>
  9. </div>
  10. <div class="grade"><img src="../assets/img/grade.png" alt="" /></div>
  11. </div>
  12. </div>
  13. <div class="two" v-if="type1 == 0">
  14. <div class="all" :class="{ active: type == 0 }" @click="type = 0">
  15. <img src="../assets/img/all.png" alt="" />
  16. </div>
  17. <div class="third" :class="{ active: type == 1 }" @click="type = 1">
  18. <img src="../assets/img/third.png" alt="" />
  19. </div>
  20. <div class="fourth" :class="{ active: type == 2 }" @click="type = 2">
  21. <img src="../assets/img/fourth.png" alt="" />
  22. </div>
  23. <div class="fiveth" :class="{ active: type == 3 }" @click="type = 3">
  24. <img src="../assets/img/fiveth.png" alt="" />
  25. </div>
  26. <div class="sixth" :class="{ active: type == 4 }" @click="type = 4">
  27. <img src="../assets/img/sixth.png" alt="" />
  28. </div>
  29. <div class="seven" :class="{ active: type == 5 }" @click="type = 5">
  30. <img src="../assets/img/seven.png" alt="" />
  31. </div>
  32. <div class="eight" :class="{ active: type == 6 }" @click="type = 6">
  33. <img src="../assets/img/eight.png" alt="" />
  34. </div>
  35. </div>
  36. <div class="five" v-else>
  37. <div class="all" :class="{ active: type2 == 0 }" @click="type2 = 0">
  38. <img src="../assets/img/all.png" alt="" />
  39. </div>
  40. <div class="third" :class="{ active: type2 == 1 }" @click="type2 = 1">
  41. <img src="../assets/img/threeLast.png" alt="" />
  42. </div>
  43. <div class="fourth" :class="{ active: type2 == 2 }" @click="type2 = 2">
  44. <img src="../assets/img/fourLast.png" alt="" />
  45. </div>
  46. <div class="fiveth" :class="{ active: type2 == 3 }" @click="type2 = 3">
  47. <img src="../assets/img/fiveLast.png" alt="" />
  48. </div>
  49. <div class="sixth" :class="{ active: type2 == 4 }" @click="type2 = 4">
  50. <img src="../assets/img/sixLast.png" alt="" />
  51. </div>
  52. <div class="seven" :class="{ active: type2 == 5 }" @click="type2 = 5">
  53. <img src="../assets/img/sevenLast.png" alt="" />
  54. </div>
  55. <div class="eight" :class="{ active: type2 == 6 }" @click="type2 = 6">
  56. <img src="../assets/img/eightLast.png" alt="" />
  57. </div>
  58. </div>
  59. <div class="three" v-if="res[type].length > 0 && type1 == 0">
  60. <div v-for="(r, index) in res[type]" :key="index">
  61. <img
  62. :src="r.poster"
  63. alt=""
  64. @click="goto(r.path)"
  65. class="tp"
  66. :class="{ dan: r.path == '' }"
  67. />
  68. </div>
  69. </div>
  70. <div class="six" v-else-if="res1[type2].length > 0 && type1 == 1">
  71. <div v-for="(r, index) in res1[type2]" :key="index">
  72. <img
  73. :src="r.poster"
  74. alt=""
  75. @click="goto(r.path)"
  76. class="tp"
  77. :class="{ dan: r.path == '' }"
  78. />
  79. </div>
  80. </div>
  81. <div class="four" v-else>
  82. <div class="null"><img src="../assets/img/null.png" alt="" /></div>
  83. </div>
  84. </div>
  85. </template>
  86. <script>
  87. export default {
  88. data() {
  89. return {
  90. type: 0,//判断上册哪个年级
  91. type1: 0,//判断上册还是下册
  92. type2: 0,//判断下册哪个年级
  93. res1: [
  94. [
  95. { poster: require("../assets/img/qcRobot.png"), path: "" },
  96. { poster: require("../assets/img/necklace.png"), path: "" },
  97. { poster: require("../assets/img/qiRobot.png"), path: "" },
  98. { poster: require("../assets/img/policeCard.png"), path: "police" },
  99. ],
  100. [],
  101. [],
  102. [
  103. { poster: require("../assets/img/qcRobot.png"), path: "" },
  104. ],
  105. [
  106. { poster: require("../assets/img/necklace.png"), path: "" },
  107. { poster: require("../assets/img/qiRobot.png"), path: "" },
  108. ],
  109. [
  110. { poster: require("../assets/img/policeCard.png"), path: "police" },
  111. ],
  112. []
  113. ],
  114. res: [
  115. [
  116. { poster: require("../assets/img/light.png"), path: "light" },
  117. { poster: require("../assets/img/door.png"), path: "door" },
  118. { poster: require("../assets/img/curtain.png"), path: "" },
  119. { poster: require("../assets/img/robot.png"), path: "" },
  120. { poster: require("../assets/img/car.png"), path: "" },
  121. { poster: require("../assets/img/pay.png"), path: "" },
  122. { poster: require("../assets/img/traffic.png"), path: "traffic" },
  123. ],
  124. [
  125. { poster: require("../assets/img/light.png"), path: "light" },
  126. { poster: require("../assets/img/door.png"), path: "door" },
  127. ],
  128. [],
  129. [
  130. { poster: require("../assets/img/curtain.png"), path: "" },
  131. { poster: require("../assets/img/robot.png"), path: "" },
  132. ],
  133. [
  134. { poster: require("../assets/img/car.png"), path: "" },
  135. { poster: require("../assets/img/traffic.png"), path: "traffic" },
  136. ],
  137. [],
  138. [
  139. { poster: require("../assets/img/pay.png"), path: "" },
  140. ]
  141. ],
  142. };
  143. },
  144. directives: {
  145. drag: {},
  146. },
  147. methods: {
  148. goto(value) {
  149. if (value != "") {
  150. this.$router.push(value);
  151. }
  152. },
  153. },
  154. };
  155. </script>
  156. <style scoped>
  157. html,
  158. body {
  159. margin: 0;
  160. padding: 0;
  161. width: 100%;
  162. }
  163. .one {
  164. display: flex;
  165. flex-direction: row;
  166. justify-content: space-between;
  167. }
  168. .four {
  169. width: 300px;
  170. margin: auto;
  171. padding-top: 100px;
  172. box-sizing: border-box;
  173. }
  174. .upnone{
  175. display: none;
  176. }
  177. .class {
  178. margin: 30px 0 0 35px;
  179. width: 250px;
  180. }
  181. .grade {
  182. margin: 30px 35px 0 0;
  183. width: 110px;
  184. }
  185. .active {
  186. opacity: 1 !important;
  187. }
  188. .dan {
  189. width: 380px;
  190. margin: 0 60px 40px 0;
  191. opacity: 0.5 !important;
  192. }
  193. .tp {
  194. width: 380px;
  195. margin: 0 60px 40px 0;
  196. cursor: pointer;
  197. }
  198. .two,
  199. .five {
  200. margin: 10px 0 0 55px;
  201. display: flex;
  202. flex-direction: row;
  203. justify-content: flex-start;
  204. }
  205. .three,
  206. .six {
  207. width: 100%;
  208. display: flex;
  209. -webkit-box-orient: horizontal;
  210. -webkit-box-direction: normal;
  211. flex-direction: row;
  212. padding: 50px 0 0 45px;
  213. box-sizing: border-box;
  214. flex-wrap: wrap;
  215. justify-content: flex-start;
  216. }
  217. .all,
  218. .first,
  219. .second,
  220. .third,
  221. .fourth,
  222. .fiveth,
  223. .sixth,
  224. .seven,
  225. .eight {
  226. width: 115px;
  227. margin-right: 30px;
  228. cursor: pointer;
  229. opacity: 0.5;
  230. }
  231. .right {
  232. display: flex;
  233. align-items: center;
  234. }
  235. .buttonClass {
  236. margin-right: 10px;
  237. display: flex;
  238. width: 150px;
  239. justify-content: space-around;
  240. }
  241. .noOnclick {
  242. background: #eeeeee;
  243. color: #ccc;
  244. width: 60px;
  245. text-align: center;
  246. padding: 5px 0;
  247. border-radius: 5px;
  248. cursor: pointer;
  249. }
  250. .Volume{
  251. background: #7194f7;
  252. color: #fff;
  253. }
  254. .class > img,
  255. .grade > img,
  256. .all > img,
  257. .first > img,
  258. .second > img,
  259. .third > img,
  260. .fourth > img,
  261. .fiveth > img,
  262. .sixth > img,
  263. .seven > img,
  264. .eight > img,
  265. .light > img,
  266. .door > img,
  267. .curtain > img,
  268. .robot > img,
  269. .car > img,
  270. .null > img,
  271. .traffic > img,
  272. .pay > img,
  273. .police > img {
  274. width: 100%;
  275. }
  276. </style>