index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <div class="testExamine">
  3. <div class="testTit">
  4. <div class="teaLis">
  5. <div
  6. class="teal"
  7. @click="cutPage(2)"
  8. :class="[pType == 2 ? 'Tbor' : '']"
  9. >
  10. 专任教师
  11. </div>
  12. <div
  13. class="teal"
  14. @click="cutPage(1)"
  15. :class="[pType == 1 ? 'Tbor' : '']"
  16. >
  17. 班主任
  18. </div>
  19. </div>
  20. <div class="operate">
  21. <el-input
  22. v-if="cutTable == 1"
  23. v-model="teacherName"
  24. @change="selectTeaName"
  25. placeholder="请输入教师姓名"
  26. ></el-input>
  27. <div style="margin: 0 20px;">
  28. <el-select v-model="cutTable" placeholder="请选择">
  29. <el-option
  30. v-for="item in cutTabOpts"
  31. :key="item.value"
  32. :label="item.label"
  33. :value="item.value"
  34. >
  35. </el-option>
  36. </el-select>
  37. </div>
  38. <div
  39. v-if="cutTable == 1"
  40. class="remindBtn"
  41. style="margin-right: 20px;"
  42. @click="excelBtn"
  43. >
  44. 导出
  45. </div>
  46. <div v-if="cutTable == 1" class="remindBtn" @click="personBtn">
  47. 提醒
  48. </div>
  49. </div>
  50. </div>
  51. <div class="testCon">
  52. <targetPage :pType="pType" v-if="cutTable == 0"></targetPage>
  53. <personPage
  54. ref="child"
  55. :pType="pType"
  56. :teacherName="teacherName"
  57. v-if="cutTable == 1"
  58. ></personPage>
  59. </div>
  60. </div>
  61. </template>
  62. <script>
  63. import personPage from "./conpoments/personPage.vue";
  64. import targetPage from "./conpoments/targetPage";
  65. export default {
  66. components: {
  67. personPage,
  68. targetPage
  69. },
  70. data() {
  71. return {
  72. pType: 2,
  73. cutTable: 0,
  74. teacherName: "",
  75. cutTabOpts: [
  76. {
  77. value: 0,
  78. label: "按指标"
  79. },
  80. {
  81. value: 1,
  82. label: "按人员"
  83. }
  84. ]
  85. };
  86. },
  87. methods: {
  88. cutPage(e) {
  89. this.pType = e;
  90. },
  91. selectTeaName() {
  92. this.$refs.child.getData();
  93. },
  94. excelBtn() {
  95. this.$refs.child.getExcel();
  96. },
  97. personBtn() {
  98. this.$refs.child.remindExamine();
  99. }
  100. }
  101. };
  102. </script>
  103. <style scoped>
  104. .testExamine {
  105. width: 100%;
  106. /* min-width: calc(150px * 10); */
  107. min-height: 100%;
  108. padding: 10px;
  109. overflow: auto;
  110. box-sizing: border-box;
  111. background-color: #fff;
  112. }
  113. .testExamine > .testTit {
  114. height: 70px;
  115. display: flex;
  116. box-sizing: border-box;
  117. padding: 0 20px;
  118. justify-content: space-between;
  119. align-items: center;
  120. }
  121. .teaLis {
  122. display: flex;
  123. }
  124. .teal {
  125. padding: 10px 20px;
  126. cursor: pointer;
  127. }
  128. .Tbor {
  129. border-bottom: 2px rgba(54, 129, 252, 1) solid;
  130. font-weight: 600;
  131. }
  132. .testCon {
  133. box-sizing: border-box;
  134. padding: 20px;
  135. }
  136. .operate {
  137. display: flex;
  138. }
  139. .operate >>> .el-input {
  140. width: 200px !important;
  141. }
  142. .operate > .remindBtn {
  143. background: #409eff;
  144. padding: 10px 15px;
  145. box-sizing: border-box;
  146. width: 90px;
  147. text-align: center;
  148. border-radius: 4px;
  149. cursor: pointer;
  150. color: #fff;
  151. }
  152. </style>