index.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <div class="i_body">
  3. <div class="i_body_title">
  4. <div class="title_box">
  5. <div
  6. @click="checkType(1)"
  7. :class="{ active: type == 1 }"
  8. class="title_item"
  9. >
  10. <div></div>
  11. <div>观察日记</div>
  12. </div>
  13. <div
  14. @click="checkType(2)"
  15. :class="{ active: type == 2 }"
  16. class="title_item"
  17. >
  18. <div></div>
  19. <div>期末打分</div>
  20. </div>
  21. <div
  22. @click="checkType(3)"
  23. :class="{ active: type == 3 }"
  24. class="title_item"
  25. >
  26. <div></div>
  27. <div>学情报告</div>
  28. </div>
  29. </div>
  30. <div class="backClassCss" @click="backClaBtn">返回</div>
  31. </div>
  32. <div class="i_body_contant">
  33. <Diary
  34. v-if="type == 1"
  35. :oid="oid"
  36. :userid="userid"
  37. :org="org"
  38. :cid="cid"
  39. ></Diary>
  40. <Score
  41. v-if="type == 2"
  42. :oid="oid"
  43. :userid="userid"
  44. :org="org"
  45. :cid="cid"
  46. ></Score>
  47. <Report v-if="type == 3" :oid="oid" :userid="userid" :org="org"></Report>
  48. </div>
  49. </div>
  50. </template>
  51. <script>
  52. import Diary from "./diary.vue";
  53. import Score from "./score.vue";
  54. import Report from "./report.vue";
  55. export default {
  56. props: {
  57. userid: {
  58. type: String
  59. },
  60. oid: {
  61. type: String
  62. },
  63. org: {
  64. type: String
  65. },
  66. cid: {
  67. type: String
  68. }
  69. },
  70. components: {
  71. Diary,
  72. Score,
  73. Report
  74. },
  75. data() {
  76. return {
  77. type: 1,
  78. role: ""
  79. };
  80. },
  81. methods: {
  82. checkType(type) {
  83. this.type = type;
  84. },
  85. backClaBtn() {
  86. this.$router.push(
  87. `/studentEva?userid=${this.userid}&oid=${this.oid}&org=${this.org}&cid=${this.cid}&role=${this.role}`
  88. );
  89. }
  90. },
  91. mounted() {
  92. this.role = this.$route.query.role;
  93. // console.log('this.$route.query',this.$route.query);
  94. }
  95. };
  96. </script>
  97. <style scoped>
  98. .i_body {
  99. width: calc(100% - 20px);
  100. height: calc(100% - 20px);
  101. background: #fff;
  102. border-radius: 10px;
  103. margin-bottom: 10px;
  104. overflow: hidden;
  105. display: flex;
  106. flex-direction: column;
  107. flex-wrap: nowrap;
  108. align-items: flex-start;
  109. padding: 20px 10px 0 10px;
  110. }
  111. .i_body_title {
  112. font-size: 20px;
  113. display: flex;
  114. align-items: center;
  115. justify-content: space-between;
  116. margin-left: 20px;
  117. box-sizing: border-box;
  118. width: calc(100% - 25px);
  119. padding-right: 45px;
  120. }
  121. .i_body_title > .title_box {
  122. display: flex;
  123. flex-direction: row;
  124. flex-wrap: nowrap;
  125. align-items: center;
  126. }
  127. .i_body_title > .backClassCss {
  128. background-color: #3681fc;
  129. font-size: 16px;
  130. color: #fff;
  131. padding: 5px 20px;
  132. display: flex;
  133. justify-content: center;
  134. align-items: center;
  135. border-radius: 3px;
  136. cursor: pointer;
  137. }
  138. .i_body_title > .title_box > .title_item {
  139. cursor: pointer;
  140. color: #666666;
  141. background: #fff;
  142. display: flex;
  143. flex-direction: row;
  144. flex-wrap: nowrap;
  145. justify-content: center;
  146. align-items: center;
  147. width: 150px;
  148. height: 70px;
  149. border-radius: 10px;
  150. }
  151. .i_body_title > .title_box > .title_item > div:last-child {
  152. margin-left: 10px;
  153. }
  154. .i_body_title > .title_box > .title_item:nth-child(1) div:first-child,
  155. .i_body_title > .title_box > .active:nth-child(1) div:first-child {
  156. width: 20px;
  157. height: 20px;
  158. background-size: 100% 100%;
  159. background-image: url("../../../../assets/icon/studentEva/diary.png");
  160. }
  161. .i_body_title > .title_box > .title_item:nth-child(2) div:first-child,
  162. .i_body_title > .title_box > .active:nth-child(2) div:first-child {
  163. width: 20px;
  164. height: 20px;
  165. background-size: 100% 100%;
  166. background-image: url("../../../../assets/icon/studentEva/score.png");
  167. }
  168. .i_body_title > .title_box > .title_item:nth-child(3) div:first-child,
  169. .i_body_title > .title_box > .active:nth-child(3) div:first-child {
  170. width: 20px;
  171. height: 20px;
  172. background-size: 100% 100%;
  173. background-image: url("../../../../assets/icon/studentEva/report.png");
  174. }
  175. .i_body_title > .title_box > .active {
  176. background: #f8fafe;
  177. border-radius: 10px 10px 0 0;
  178. }
  179. .i_body_title > .title_box > .active:nth-child(1) div:first-child {
  180. background-image: url("../../../../assets/icon/studentEva/isDiary.png") !important;
  181. }
  182. .i_body_title > .title_box > .active:nth-child(2) div:first-child {
  183. background-image: url("../../../../assets/icon/studentEva/isScore.png") !important;
  184. }
  185. .i_body_title > .title_box > .active:nth-child(3) div:first-child {
  186. background-image: url("../../../../assets/icon/studentEva/isReport.png") !important;
  187. }
  188. .i_body_title > .title_box > .active > div:last-child {
  189. color: #4288fc;
  190. }
  191. .i_body_contant {
  192. margin: 0 auto;
  193. width: calc(100% - 40px);
  194. height: calc(100% - 90px);
  195. background: #f8fafe;
  196. border-radius: 0 10px 10px 10px;
  197. overflow: hidden;
  198. }
  199. </style>