teamCourseList.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. <template>
  2. <div class="m-container">
  3. <h2>
  4. <div class="squrt"></div>课表列表
  5. </h2>
  6. <div class="m-core">
  7. <!-- 搜索类型 -->
  8. <el-form :inline="true"
  9. class="searchForm"
  10. v-model.trim="searchForm">
  11. <el-form-item>
  12. <el-input style="width: 240px"
  13. v-model.trim="searchForm.search"
  14. @keyup.enter.native="search"
  15. placeholder="课程组编号/课程编号/课程名称" />
  16. </el-form-item>
  17. <el-form-item>
  18. <el-select v-model.trim="searchForm.schoolId"
  19. clearable
  20. filterable
  21. placeholder="请选择教学点">
  22. <el-option v-for="(item, index) in schoolList"
  23. :key="index"
  24. :value="item.id"
  25. :label="item.name"></el-option>
  26. </el-select>
  27. </el-form-item>
  28. <el-form-item>
  29. <el-select v-model.trim="searchForm.teacherIdList"
  30. clearable
  31. filterable
  32. placeholder="请选择老师">
  33. <el-option v-for="(item, index) in teacherList"
  34. :key="index"
  35. :value="item.id"
  36. :label="item.realName"></el-option>
  37. </el-select>
  38. </el-form-item>
  39. <el-form-item>
  40. <el-select class="multiple"
  41. v-model.trim="searchForm.organIdList"
  42. filterable
  43. clearable
  44. placeholder="请选择分部">
  45. <el-option v-for="(item,index) in organList"
  46. :key="index"
  47. :label="item.name"
  48. :value="item.id"></el-option>
  49. </el-select>
  50. </el-form-item>
  51. <el-form-item>
  52. <el-select v-model.trim="searchForm.groupType"
  53. clearable
  54. filterable
  55. placeholder="课程租类型">
  56. <el-option v-for="(item, index) in courseListType"
  57. :key="index"
  58. :value="item.value"
  59. :label="item.label"></el-option>
  60. </el-select>
  61. </el-form-item>
  62. <el-form-item>
  63. <el-select v-model.trim="searchForm.courseType"
  64. clearable
  65. filterable
  66. placeholder="课程类型">
  67. <el-option v-for="(item, index) in courseType"
  68. :key="index"
  69. :value="item.value"
  70. :label="item.label"></el-option>
  71. </el-select>
  72. </el-form-item>
  73. <el-form-item>
  74. <el-select v-model.trim="searchForm.teachMode"
  75. clearable
  76. filterable
  77. placeholder="教学模式">
  78. <el-option label="线上课"
  79. value="ONLINE"></el-option>
  80. <el-option label="线下课"
  81. value="OFFLINE"></el-option>
  82. </el-select>
  83. </el-form-item>
  84. <el-form-item>
  85. <el-select v-model.trim="searchForm.courseStatus"
  86. clearable
  87. filterable
  88. placeholder="课程状态">
  89. <el-option label="未开始"
  90. value="NOT_START"></el-option>
  91. <el-option label="进行中"
  92. value="UNDERWAY"></el-option>
  93. <el-option label="已结束"
  94. value="OVER"></el-option>
  95. </el-select>
  96. </el-form-item>
  97. <el-form-item>
  98. <el-select v-model.trim="searchForm.isCallNames"
  99. clearable
  100. filterable
  101. placeholder="是否点名">
  102. <el-option label="是"
  103. value="1"></el-option>
  104. <el-option label="否"
  105. value="0"></el-option>
  106. </el-select>
  107. </el-form-item>
  108. <el-form-item>
  109. <el-date-picker v-model.trim="searchForm.timer"
  110. style="width:420px;"
  111. type="daterange"
  112. value-format="yyyy-MM-dd"
  113. range-separator="至"
  114. start-placeholder="上课开始日期"
  115. end-placeholder="上课结束日期"
  116. :picker-options="{
  117. firstDayOfWeek: 1
  118. }"></el-date-picker>
  119. </el-form-item>
  120. <el-form-item>
  121. <el-date-picker v-model.trim="searchForm.creatTimer"
  122. style="width:420px;"
  123. type="daterange"
  124. value-format="yyyy-MM-dd"
  125. range-separator="至"
  126. start-placeholder="创建开始日期"
  127. end-placeholder="创建结束日期"
  128. :picker-options="{
  129. firstDayOfWeek: 1
  130. }"></el-date-picker>
  131. </el-form-item>
  132. <el-form-item>
  133. <div class="searchBtn"
  134. @click="search">搜索</div>
  135. </el-form-item>
  136. <el-form-item>
  137. <div class="searchBtn exportBtn"
  138. v-permission="'export/superFindCourseSchedules'"
  139. @click="onCourseExport">导出课表</div>
  140. </el-form-item>
  141. </el-form>
  142. <div class="btnWraps"></div>
  143. <!-- 列表 -->
  144. <div class="tableWrap">
  145. <el-table :data="tableList"
  146. :header-cell-style="{background:'#EDEEF0',color:'#444'}">
  147. <el-table-column align="center"
  148. prop="organName"
  149. label="分部名称"></el-table-column>
  150. <el-table-column align="center"
  151. width="130px"
  152. prop="musicGroupId"
  153. label="乐团/课程组编号"></el-table-column>
  154. <el-table-column align="center"
  155. prop="id"
  156. label="课程编号"></el-table-column>
  157. <el-table-column align="center"
  158. label="创建时间">
  159. <template slot-scope="scope">
  160. <div>{{scope.row.createTime | dayjsFormat}}</div>
  161. </template>
  162. </el-table-column>
  163. <el-table-column align="center"
  164. width="200px"
  165. label="上课时间">
  166. <template slot-scope="scope">{{ scope.row.startClassTime ? scope.row.startClassTime.substr(0, 16) : '' }}-{{ scope.row.endClassTime ? scope.row.endClassTime.substr(11,5) : ''}}</template>
  167. </el-table-column>
  168. <!-- <el-table-column align="center" prop="groupName" label="乐团/VIP名"></el-table-column> -->
  169. <!-- <el-table-column align="center" prop="classGroupName" label="班级名称"></el-table-column> -->
  170. <el-table-column align="center"
  171. prop="studentId"
  172. label="学生ID">
  173. <template slot-scope="scope">
  174. <div v-if="scope.row.groupType != 'MUSIC'">{{scope.row.studentId}}</div>
  175. </template>
  176. </el-table-column>
  177. <el-table-column align="center"
  178. prop="subjectName"
  179. label="声部"></el-table-column>
  180. <el-table-column align="center"
  181. prop="name"
  182. label="课程名称"></el-table-column>
  183. <el-table-column align="center"
  184. label="课程类型">
  185. <template slot-scope="scope">
  186. <div>{{ scope.row.type | coursesType}}</div>
  187. </template>
  188. </el-table-column>
  189. <el-table-column align="center"
  190. label="教学模式">
  191. <template slot-scope="scope">
  192. <div>{{ scope.row.teachMode | teachMode}}</div>
  193. </template>
  194. </el-table-column>
  195. <el-table-column align="center"
  196. prop="schoolName"
  197. label="教学点">
  198. <template slot-scope="scope">
  199. <div>{{scope.row.schoolName?scope.row.schoolName:'网络教室'}}</div>
  200. </template>
  201. </el-table-column>
  202. <el-table-column align="center"
  203. prop="courseScheduleStatus"
  204. label="课程状态">
  205. <template slot-scope="scope">
  206. <div>{{ scope.row.status | coursesStatus }}</div>
  207. </template>
  208. </el-table-column>
  209. <!-- <el-table-column align="center"
  210. label="是否签到">
  211. <template slot-scope="scope">
  212. <div>{{ scope.row.isSignIn | attendanceType}}</div>
  213. </template>
  214. </el-table-column> -->
  215. <!-- <el-table-column align="center"
  216. label="是否签退"
  217. fixed="right">
  218. <template slot-scope="scope">
  219. <div>{{ scope.row.isSignOut | attendanceOutType}}</div>
  220. </template>
  221. </el-table-column> -->
  222. <el-table-column align="center"
  223. prop="isCallNames"
  224. label="是否点名"
  225. fixed="right">
  226. <template slot-scope="scope">{{ scope.row.isCallNames ? '是' : '否' }}</template>
  227. </el-table-column>
  228. <el-table-column align="center"
  229. width="150px"
  230. prop="teacherName"
  231. label="指导老师"
  232. fixed="right">
  233. <template slot-scope="scope">
  234. <div>
  235. {{scope.row.teacherName}}({{scope.row.actualTeacherId}})
  236. </div>
  237. </template>
  238. </el-table-column>
  239. <el-table-column align="center"
  240. label="详情"
  241. fixed="right"
  242. width="120px">
  243. <template slot-scope="scope">
  244. <div>
  245. <el-button type="text"
  246. v-if="permission('teamCourseList/details')"
  247. @click="lookDetail(scope.row)">详情</el-button>
  248. <el-button type="text"
  249. v-if="permission('courseSchedule/classStartDateAdjust?hight')"
  250. @click="resetClass(scope.row)">调整</el-button>
  251. </div>
  252. </template>
  253. </el-table-column>
  254. </el-table>
  255. <pagination :total="rules.total"
  256. :page.sync="rules.page"
  257. :limit.sync="rules.limit"
  258. :page-sizes="rules.page_size"
  259. @pagination="getList" />
  260. </div>
  261. </div>
  262. <el-dialog title="课表详情"
  263. :visible.sync="classVisible"
  264. width="1000px">
  265. <el-form :model="maskForm"
  266. :inline="true">
  267. <el-form-item label="老师姓名">
  268. <!-- <el-input v-model.trim="maskForm.teacherName"
  269. disabled></el-input>-->
  270. <div class="inputStyle">{{maskForm.teacherName}}</div>
  271. </el-form-item>
  272. <el-form-item label="课程模式">
  273. <!-- <el-input :value="maskForm.teachMode | teachMode"
  274. disabled></el-input>-->
  275. <div class="inputStyle">{{maskForm.teachMode| teachMode}}</div>
  276. <!-- <span>{{maskForm.teachMode }}</span> -->
  277. </el-form-item>
  278. <el-form-item label="课程类型">
  279. <!-- <el-input :value="maskForm.type |classType"
  280. disabled></el-input>-->
  281. <div class="inputStyle">{{maskForm.type|coursesType}}</div>
  282. </el-form-item>
  283. <!-- courseScheduleStatus -->
  284. <el-form-item label="课程状态">
  285. <!-- <el-input :value="maskForm.type |classType"
  286. disabled></el-input>-->
  287. <div class="inputStyle">{{maskForm.status | coursesStatus}}</div>
  288. </el-form-item>
  289. <el-form-item label="签到时间">
  290. <!-- <el-input v-model.trim=" maskForm.signInTime"
  291. disabled></el-input>-->
  292. <div class="inputStyle">{{maskForm.signInTime | dateForMinFormat}}</div>
  293. </el-form-item>
  294. <el-form-item label="签退时间">
  295. <!-- <el-input v-model.trim="maskForm.signOutTime"
  296. disabled></el-input>-->
  297. <div class="inputStyle">{{maskForm.signOutTime | dateForMinFormat}}</div>
  298. </el-form-item>
  299. <el-form-item label="是否点名">
  300. <!-- <el-input :value="maskForm.isCallNames | isCall"
  301. disabled></el-input>-->
  302. <div class="inputStyle">{{maskForm.isCallNames | isCall}}</div>
  303. </el-form-item>
  304. <el-form-item label="签到状态">
  305. <!-- <el-input :value=" maskForm.isSignIn | attendanceType"
  306. disabled></el-input>-->
  307. <div class="inputStyle"
  308. :class="maskForm.isSignIn==1?'':'red'">{{ maskForm.isSignIn | attendanceType}}</div>
  309. </el-form-item>
  310. <el-form-item label="签退状态">
  311. <!-- <el-input :value=" maskForm.isSignOut | attendanceOutType"
  312. disabled></el-input>-->
  313. <div class="inputStyle"
  314. :class="maskForm.isSignIn==1?'':'red'">{{ maskForm.isSignOut | attendanceOutType}}</div>
  315. </el-form-item>
  316. <el-form-item label="上课时长">
  317. <div class="inputStyle"
  318. :class=" (maskForm.attendClassTime <= 120)?'':'red'">{{ maskForm.attendClassTime>=0?maskForm.attendClassTime:0+'分钟'}}</div>
  319. </el-form-item>
  320. <el-form-item label="备注">
  321. <!-- <el-input :value=" maskForm.isSignOut | attendanceOutType"
  322. disabled></el-input>-->
  323. <div class="inputStyle">{{ maskForm.remark}}</div>
  324. </el-form-item>
  325. </el-form>
  326. <!-- v-if="maskForm.status != 'NOT_START'" -->
  327. <el-tabs v-model.trim="activeName"
  328. type="card"
  329. @tab-click="handleClick">
  330. <el-tab-pane label="点名"
  331. name="first">
  332. <div v-if="activeName == 'first'">
  333. <!-- studentRollCall -->
  334. <studentRollCall :courseScheduleId="maskForm.id"></studentRollCall>
  335. </div>
  336. </el-tab-pane>
  337. <el-tab-pane label="GPS定位"
  338. v-if="maskForm.teachMode == 'OFFLINE'"
  339. name="second">
  340. <div v-if="activeName == 'second'">
  341. <gpsLoction :courseScheduleId="maskForm.id"></gpsLoction>
  342. </div>
  343. </el-tab-pane>
  344. <el-tab-pane label="作业"
  345. v-if="maskForm.teachMode != 'OFFLINE'"
  346. name="third">
  347. <div v-if="activeName == 'third'">
  348. <studentWork :courseScheduleId="maskForm.id"></studentWork>
  349. </div>
  350. </el-tab-pane>
  351. <el-tab-pane label="评论"
  352. v-if="maskForm.type == 'VIP' || maskForm.type == 'PRACTICE'"
  353. name="four">
  354. <div v-if="activeName == 'four'">
  355. <courseEvaluate :courseScheduleId="maskForm.id"></courseEvaluate>
  356. </div>
  357. </el-tab-pane>
  358. </el-tabs>
  359. </el-dialog>
  360. <el-dialog :visible.sync="show"
  361. width="400px">
  362. <resetClass :show="show"
  363. @closeReset='closeReset'
  364. @getList='getList'
  365. :id='id' />
  366. </el-dialog>
  367. </div>
  368. </template>
  369. <script>
  370. import pagination from "@/components/Pagination/index";
  371. import {
  372. getTeacher,
  373. getMusicGroupAllClass,
  374. superFindCourseSchedules,
  375. getEmployeeOrgan
  376. } from "@/api/buildTeam";
  377. import { getTeacherPersonalAttendanceDetail } from "@/api/teacherManager";
  378. import { getSchool } from "@/api/systemManage";
  379. import { courseType, courseListType } from "@/utils/searchArray";
  380. import studentRollCall from "./componentCourse/studentRollCall";
  381. import gpsLoction from "./componentCourse/gpsLocation";
  382. import studentWork from "./componentCourse/studentWork";
  383. import courseEvaluate from "./componentCourse/courseEvaluate";
  384. import { permission } from "@/utils/directivePage";
  385. import axios from "axios";
  386. import { getToken } from "@/utils/auth";
  387. import load from "@/utils/loading";
  388. import resetClass from './componentCourse/resetClass'
  389. let nowTime = new Date();
  390. nowTime =
  391. nowTime.getFullYear() +
  392. "-" +
  393. (nowTime.getMonth() + 1) +
  394. "-" +
  395. nowTime.getDate();
  396. export default {
  397. data () {
  398. return {
  399. classVisible: false,
  400. timerVisible: false,
  401. courseVisible: false,
  402. courseType: courseType,
  403. courseListType: courseListType,
  404. searchForm: {
  405. teachMode: null, // 教学模式
  406. organIdList: null,
  407. courseStatus: null,
  408. courseType: null,
  409. timer: [nowTime, nowTime], // 时间
  410. class: null,
  411. isCallNames: null, // 是否点名
  412. search: null, // 乐团名称 编号 vip课名称
  413. teacherIdList: null, // 老师编号
  414. schoolId: null, // 教学点编号
  415. creatTimer: []
  416. },
  417. tableList: [],
  418. searchLsit: [],
  419. organList: [],
  420. rules: {
  421. // 分页规则
  422. limit: 10, // 限制显示条数
  423. page: 1, // 当前页
  424. total: 0, // 总条数
  425. page_size: [10, 20, 40, 50] // 选择限制显示条数
  426. },
  427. teacherList: [],
  428. schoolList: [],
  429. maskForm: {},
  430. activeName: "first",
  431. id: null,
  432. show: false
  433. // classList: []
  434. };
  435. },
  436. components: {
  437. pagination,
  438. studentRollCall,
  439. gpsLoction,
  440. studentWork,
  441. courseEvaluate,
  442. resetClass
  443. },
  444. activated () {
  445. this.init();
  446. },
  447. mounted () {
  448. this.init();
  449. },
  450. methods: {
  451. init () {
  452. this.getList();
  453. // 获取所有老师
  454. getTeacher().then(res => {
  455. if (res.code == 200) {
  456. this.teacherList = res.data;
  457. }
  458. });
  459. // 获取教学点
  460. getSchool().then(res => {
  461. if (res.code == 200) {
  462. this.schoolList = res.data;
  463. }
  464. });
  465. getEmployeeOrgan().then(res => {
  466. if (res.code == 200) {
  467. this.organList = res.data;
  468. }
  469. });
  470. },
  471. permission (str, parent) {
  472. return permission(str, parent);
  473. },
  474. search () {
  475. this.rules.page = 1;
  476. this.getList();
  477. },
  478. onCourseExport () {
  479. // 课表导出
  480. let searchForm = this.searchForm;
  481. if (!searchForm.timer || searchForm.timer.length <= 0) {
  482. searchForm.timer = [];
  483. }
  484. if (!searchForm.creatTimer || searchForm.creatTimer.length <= 0) {
  485. searchForm.creatTimer = []
  486. }
  487. let count = 0
  488. for (let item in searchForm) {
  489. if (searchForm[item] && !Array.isArray(searchForm[item])) {
  490. count++
  491. } else if (Array.isArray(searchForm[item]) && searchForm[item].length > 0) {
  492. count++
  493. }
  494. }
  495. if (count <= 0) {
  496. this.$message.error('请至少选择一个搜索条件')
  497. return
  498. }
  499. let obj = {
  500. teachMode: searchForm.teachMode || null,
  501. courseStatus: searchForm.courseStatus || null,
  502. courseType: searchForm.courseType || null,
  503. startTime: searchForm.timer[0] || null,
  504. endTime: searchForm.timer[1] || null,
  505. classGroupId: searchForm.class || null,
  506. organIdList: searchForm.organIdList || null,
  507. search: searchForm.search || null,
  508. teacherIdList: searchForm.teacherIdList || null,
  509. isCallNames: searchForm.isCallNames,
  510. schoolId: searchForm.schoolId || null,
  511. groupType: searchForm.groupType || null,
  512. createStartDate: searchForm.creatTimer[0] || null,
  513. createEndDate: searchForm.creatTimer[1] || null
  514. };
  515. let url = "/api-web/export/superFindCourseSchedules";
  516. const options = {
  517. method: "get",
  518. headers: {
  519. Authorization: getToken()
  520. },
  521. params: obj,
  522. url,
  523. responseType: "blob"
  524. };
  525. this.$confirm("您确定导出报表", "提示", {
  526. confirmButtonText: "确定",
  527. cancelButtonText: "取消",
  528. type: "warning"
  529. })
  530. .then(() => {
  531. load.startLoading();
  532. axios(options)
  533. .then(res => {
  534. let blob = new Blob([res.data], {
  535. // type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
  536. type: "application/vnd.ms-excel;charset=utf-8"
  537. //word文档为application/msword,pdf文档为application/pdf,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8
  538. });
  539. let text = new Response(blob).text();
  540. text.then(res => {
  541. // 判断是否报错
  542. if (res.indexOf("code") != -1) {
  543. let json = JSON.parse(res);
  544. this.$message.error(json.msg);
  545. } else {
  546. let objectUrl = URL.createObjectURL(blob);
  547. let link = document.createElement("a");
  548. let fname = "课表列表" + new Date().getTime(); //下载文件的名字
  549. link.href = objectUrl;
  550. link.setAttribute("download", fname);
  551. document.body.appendChild(link);
  552. link.click();
  553. }
  554. });
  555. load.endLoading();
  556. })
  557. .catch(error => {
  558. this.$message.error("导出数据失败,请联系管理员");
  559. load.endLoading();
  560. });
  561. })
  562. .catch(() => { });
  563. },
  564. getList () {
  565. let searchForm = this.searchForm;
  566. if (!searchForm.timer || searchForm.timer.length <= 0) {
  567. searchForm.timer = [];
  568. // this.$message.error("请选择时间段");
  569. // return;
  570. }
  571. if (!searchForm.creatTimer || searchForm.creatTimer.length <= 0) {
  572. searchForm.creatTimer = []
  573. }
  574. let count = 0
  575. for (let item in searchForm) {
  576. if (searchForm[item] && !Array.isArray(searchForm[item])) {
  577. count++
  578. } else if (Array.isArray(searchForm[item]) && searchForm[item].length > 0) {
  579. count++
  580. }
  581. }
  582. if (count <= 0) {
  583. this.$message.error('请至少选择一个搜索条件')
  584. return
  585. }
  586. let obj = {
  587. teachMode: searchForm.teachMode || null,
  588. courseStatus: searchForm.courseStatus || null,
  589. courseType: searchForm.courseType || null,
  590. startTime: searchForm.timer[0] || null,
  591. endTime: searchForm.timer[1] || null,
  592. page: this.rules.page,
  593. rows: this.rules.limit,
  594. classGroupId: searchForm.class || null,
  595. organIdList: searchForm.organIdList || null,
  596. search: searchForm.search || null,
  597. teacherIdList: searchForm.teacherIdList || null,
  598. isCallNames: searchForm.isCallNames,
  599. schoolId: searchForm.schoolId || null,
  600. groupType: searchForm.groupType || null,
  601. createStartDate: searchForm.creatTimer[0] ? searchForm.creatTimer[0] : null,
  602. createEndDate: searchForm.creatTimer[1] ? searchForm.creatTimer[1] : null
  603. };
  604. superFindCourseSchedules(obj).then(res => {
  605. if (res.code == 200) {
  606. this.tableList = res.data.rows;
  607. this.rules.total = res.data.total;
  608. }
  609. });
  610. },
  611. lookDetail (row) {
  612. // this.maskForm = row;
  613. // 发请求 获取详情 row.id
  614. getTeacherPersonalAttendanceDetail({ courseScheduleId: row.id }).then(res => {
  615. if (res.code == 200) {
  616. this.maskForm = res.data;
  617. this.maskForm.id = row.id;
  618. this.activeName = "first";
  619. this.classVisible = true;
  620. }
  621. })
  622. },
  623. handleClick (tab, event) {
  624. // console.log(tab, event);
  625. },
  626. resetClass (row) {
  627. console.log(row)
  628. this.id = row.id
  629. this.show = true
  630. },
  631. closeReset () {
  632. this.show = false
  633. }
  634. },
  635. filters: {
  636. isCall (val) {
  637. if (val == 0) {
  638. return "未点名";
  639. } else if (val == 1) {
  640. return "已点名";
  641. }
  642. }
  643. },
  644. watch: {
  645. classVisible (val) {
  646. if (!val) {
  647. this.activeName = null;
  648. }
  649. }
  650. }
  651. };
  652. </script>
  653. <style lang="scss" scoped>
  654. .visible {
  655. visibility: hidden;
  656. }
  657. .cl-container {
  658. .topFrom {
  659. margin: 20px 30px 0;
  660. .classlist {
  661. display: flex;
  662. flex-direction: row;
  663. justify-content: flex-start;
  664. align-items: center;
  665. ul {
  666. li {
  667. list-style: none;
  668. }
  669. }
  670. }
  671. }
  672. .searchForm {
  673. margin: 0 30px;
  674. }
  675. }
  676. .btnWraps {
  677. display: flex;
  678. flex-direction: row;
  679. justify-content: flex-start;
  680. div {
  681. margin-right: 20px;
  682. }
  683. }
  684. .inputStyle {
  685. width: 180px;
  686. }
  687. .red {
  688. color: red;
  689. }
  690. .exportBtn {
  691. background: #13817a;
  692. }
  693. </style>