index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 v-if="cutTable == 1" class="remindBtn" style="margin-right: 20px;" @click="excelBtn">
  39. 导出
  40. </div>
  41. <div v-if="cutTable == 1" class="remindBtn" @click="personBtn">
  42. 提醒
  43. </div>
  44. </div>
  45. </div>
  46. <div class="testCon">
  47. <targetPage :pType="pType" v-if="cutTable == 0"></targetPage>
  48. <personPage
  49. ref="child"
  50. :pType="pType"
  51. :teacherName="teacherName"
  52. v-if="cutTable == 1"
  53. ></personPage>
  54. </div>
  55. </div>
  56. </template>
  57. <script>
  58. import personPage from "./conpoments/personPage.vue";
  59. import targetPage from "./conpoments/targetPage";
  60. export default {
  61. components: {
  62. personPage,
  63. targetPage
  64. },
  65. data() {
  66. return {
  67. pType: 2,
  68. cutTable: 0,
  69. teacherName: "",
  70. cutTabOpts: [
  71. {
  72. value: 0,
  73. label: "按指标"
  74. },
  75. {
  76. value: 1,
  77. label: "按人员"
  78. }
  79. ]
  80. };
  81. },
  82. methods: {
  83. cutPage(e) {
  84. this.pType = e;
  85. },
  86. selectTeaName() {
  87. this.$refs.child.getData();
  88. },
  89. excelBtn(){
  90. this.$refs.child.getExcel();
  91. },
  92. personBtn() {
  93. this.$refs.child.remindExamine();
  94. }
  95. }
  96. };
  97. </script>
  98. <style scoped>
  99. .testExamine {
  100. width: 100%;
  101. /* min-width: calc(150px * 10); */
  102. min-height: 100%;
  103. padding: 10px;
  104. overflow: auto;
  105. box-sizing: border-box;
  106. background-color: #fff;
  107. }
  108. .testExamine > .testTit {
  109. height: 70px;
  110. display: flex;
  111. box-sizing: border-box;
  112. padding: 0 20px;
  113. justify-content: space-between;
  114. align-items: center;
  115. }
  116. .teaLis {
  117. display: flex;
  118. }
  119. .teal {
  120. padding: 10px 20px;
  121. cursor: pointer;
  122. }
  123. .Tbor {
  124. border-bottom: 2px rgba(54, 129, 252, 1) solid;
  125. font-weight: 600;
  126. }
  127. .testCon {
  128. box-sizing: border-box;
  129. padding: 20px;
  130. }
  131. .operate {
  132. display: flex;
  133. }
  134. .operate >>> .el-input {
  135. width: 200px !important;
  136. }
  137. .operate > .remindBtn {
  138. background: #409eff;
  139. padding: 10px 15px;
  140. box-sizing: border-box;
  141. width: 90px;
  142. text-align: center;
  143. border-radius: 4px;
  144. cursor: pointer;
  145. color: #fff;
  146. }
  147. </style>