ManageEvaluation.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. <template>
  2. <div class="wrap">
  3. <m-header v-if="headerStatus" />
  4. <div class="searchSection">
  5. <div class="searchDate">
  6. <div class="date startDate" @click="dateSection.status = true">
  7. 开始
  8. <span>{{dateSection.showStartDate}}</span>
  9. </div>-
  10. <div class="date endDate" @click="dateEndSection.status = true">
  11. 结束
  12. <span>{{dateEndSection.showEndDate}}</span>
  13. </div>
  14. </div>
  15. <!-- <div class="searchMore">
  16. 筛选<i class="arrowDown"></i>
  17. </div>-->
  18. <van-dropdown-menu active-color="#14928A">
  19. <van-dropdown-item title="筛选" ref="item" v-model="search.status">
  20. <div class="dropList">
  21. <div class="dropItem">
  22. <p class="dropTitle">课程类型</p>
  23. <div class="radioGroup">
  24. <span :class="search.type=='PRACTICE'?'actived':''" @click="search.type='PRACTICE'">网管课</span>
  25. <span :class="search.type=='VIP'?'actived':''" @click="search.type='VIP'">VIP课</span>
  26. <span :class="search.type==0?'actived':''" @click="search.type=0" style="margin-top: .08rem">全部</span>
  27. </div>
  28. </div>
  29. <div class="dropItem">
  30. <p class="dropTitle">评价进度</p>
  31. <div class="radioGroup">
  32. <span :class="search.hasReview==0?'actived':''" @click="search.hasReview=0">待完成</span>
  33. <span :class="search.hasReview==1?'actived':''" @click="search.hasReview=1">已完成</span>
  34. </div>
  35. </div>
  36. <div class="dropItem">
  37. <p class="dropTitle">提交作业</p>
  38. <div class="radioGroup">
  39. <span
  40. :class="search.hasHandHomework==1?'actived':''"
  41. @click="search.hasHandHomework=1"
  42. >是</span>
  43. <span
  44. :class="search.hasHandHomework==0?'actived':''"
  45. @click="search.hasHandHomework=0"
  46. >否</span>
  47. </div>
  48. </div>
  49. <div class="dropItem">
  50. <p class="dropTitle">完成双向沟通</p>
  51. <div class="radioGroup">
  52. <span :class="search.hasLiaison==1?'actived':''" @click="search.hasLiaison=1">是</span>
  53. <span :class="search.hasLiaison==0?'actived':''" @click="search.hasLiaison=0">否</span>
  54. </div>
  55. </div>
  56. <div class="dropItem">
  57. <p class="dropTitle">学生是否到课</p>
  58. <div class="radioGroup">
  59. <span :class="search.hasArrived==1?'actived':''" @click="search.hasArrived=1">是</span>
  60. <span :class="search.hasArrived==0?'actived':''" @click="search.hasArrived=0">否</span>
  61. </div>
  62. </div>
  63. </div>
  64. <div class="btnGroup">
  65. <div class="btn btn-reset" @click="resetSerach">重置</div>
  66. <div class="btn btn-sure" @click="submitInfo">确定</div>
  67. </div>
  68. </van-dropdown-item>
  69. </van-dropdown-menu>
  70. </div>
  71. <div v-if="dataShow" key="data">
  72. <van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="getList">
  73. <van-cell
  74. v-for="(item,index) in courseList"
  75. :key="index"
  76. class="cellGroup"
  77. :title="item.classDate | filterClass"
  78. title-class="sectionTitle"
  79. value-class="sectionValue"
  80. >
  81. <template solt="default">
  82. <p class="content van-ellipsis">{{ item.courseName }}</p>
  83. <van-button
  84. type="primary"
  85. round
  86. size="small"
  87. v-if="item.reviewId==0"
  88. @click="submitReview(item)"
  89. >提交评价</van-button>
  90. <van-button
  91. type="primary"
  92. round class="van-update"
  93. size="small"
  94. v-if="item.reviewId>0"
  95. @click="submitReview(item)"
  96. >修改评价</van-button>
  97. </template>
  98. </van-cell>
  99. </van-list>
  100. </div>
  101. <m-empty class="empty" msg="暂无数据" v-else key="data" />
  102. <!-- 日期开始弹窗 -->
  103. <van-popup position="bottom" v-model="dateSection.status">
  104. <van-datetime-picker
  105. v-model="dateSection.currentDate"
  106. type="date"
  107. :min-date="dateSection.minDate"
  108. :max-date="dateSection.maxDate"
  109. :formatter="formatter"
  110. @confirm="confirmStartTime()"
  111. @cancel="cancelTime()"
  112. />
  113. </van-popup>
  114. <!-- 日期结束弹窗 -->
  115. <van-popup position="bottom" v-model="dateEndSection.status">
  116. <van-datetime-picker
  117. v-model="dateEndSection.currentDate"
  118. type="date"
  119. :min-date="dateSection.minDate"
  120. :max-date="dateSection.maxDate"
  121. :formatter="formatter"
  122. @confirm="confirmEndTime()"
  123. @cancel="cancelTime()"
  124. />
  125. </van-popup>
  126. <!-- <van-popup position="bottom" v-model="search.status"></van-popup> -->
  127. </div>
  128. </template>
  129. <script>
  130. import MHeader from '@/components/MHeader'
  131. import MEmpty from "@/components/MEmpty"
  132. import { browser } from '@/common/common'
  133. import { getOnlineCourse } from "@/api/audition"
  134. // SINGLE,MIX,HIGH,VIP,DEMO,COMPREHENSIVE,PRACTICE,ENLIGHTENMENT,TRAINING_SINGLE,TRAINING_MIX,CLASSROOM,COMM,HIGH_ONLINE,MUSIC_NETWORK
  135. export default {
  136. name: "teacherList",
  137. components: { MHeader, MEmpty },
  138. data() {
  139. return {
  140. headerStatus: true,
  141. dateSection: {
  142. status: false,
  143. minDate: new Date(2020, 0, 1),
  144. maxDate: new Date(2025, 10, 1),
  145. currentDate: null,
  146. showStartDate: null
  147. },
  148. dateEndSection: {
  149. status: false,
  150. minDate: new Date(2020, 0, 1),
  151. maxDate: new Date(2025, 10, 1),
  152. currentDate: null,
  153. showEndDate: null
  154. },
  155. search: {
  156. status: false,
  157. hasReview: null,
  158. hasHandHomework: null,
  159. hasLiaison: null,
  160. hasArrived: null,
  161. type: null, //课程类型
  162. },
  163. courseList: [],
  164. loading: false,
  165. finished: false,
  166. dataShow: true, // 是否显示
  167. page: 1
  168. };
  169. },
  170. created() {
  171. let params = this.$route.query;
  172. if (params.Authorization) {
  173. localStorage.setItem("Authorization", decodeURI(params.Authorization));
  174. localStorage.setItem("userInfo", decodeURI(params.Authorization));
  175. }
  176. },
  177. mounted() {
  178. let params = this.$route.query;
  179. if (params.Authorization) {
  180. localStorage.setItem("Authorization", decodeURI(params.Authorization));
  181. localStorage.setItem("userInfo", decodeURI(params.Authorization));
  182. }
  183. if(browser().android || browser().iPhone) {
  184. this.headerStatus = false
  185. }
  186. this.dateSection.currentDate = new Date();
  187. this.dateSection.showStartDate = this.timeFormat(
  188. this.dateSection.currentDate
  189. );
  190. this.dateEndSection.currentDate = new Date();
  191. this.dateEndSection.showEndDate = this.timeFormat(
  192. this.dateEndSection.currentDate
  193. );
  194. let evaluationList = sessionStorage.getItem("evaluationList");
  195. if (evaluationList) {
  196. this.search = JSON.parse(evaluationList);
  197. this.dateSection.showStartDate = this.timeFormat(
  198. new Date(this.search.startTime.replace(/-/g, "/"))
  199. );
  200. this.dateSection.currentDate = new Date(this.search.startTime.replace(/-/g, "/"))
  201. this.dateEndSection.currentDate = new Date(this.search.endTime.replace(/-/g, "/"))
  202. this.dateEndSection.showEndDate = this.timeFormat(
  203. new Date(this.search.endTime.replace(/-/g, "/"))
  204. );
  205. }
  206. },
  207. methods: {
  208. formatter(type, val) {
  209. if (type === "year") {
  210. return `${val}年`;
  211. } else if (type === "month") {
  212. return `${val}月`;
  213. } else if (type == "day") {
  214. return `${val}日`;
  215. }
  216. return val;
  217. },
  218. confirmStartTime() {
  219. this.dateSection.showStartDate = this.timeFormat(
  220. this.dateSection.currentDate
  221. );
  222. this.dataShow = true
  223. this.page = 1
  224. this.onRefresh();
  225. this.dateSection.status = false;
  226. },
  227. confirmEndTime() {
  228. this.dateEndSection.showEndDate = this.timeFormat(
  229. this.dateEndSection.currentDate
  230. );
  231. this.dataShow = true
  232. this.page = 1
  233. this.onRefresh();
  234. this.dateEndSection.status = false;
  235. },
  236. cancelTime() {
  237. this.dateEndSection.status = false;
  238. this.dateSection.status = false;
  239. },
  240. timeFormat(time) {
  241. // 时间格式化 2019-09-08
  242. let year = time.getFullYear();
  243. let month = time.getMonth() + 1;
  244. let day = time.getDate();
  245. return year + "/" + month + "/" + day;
  246. },
  247. resetSerach() {
  248. this.search = {
  249. status: false,
  250. hasReview: null,
  251. hasHandHomework: null,
  252. hasLiaison: null,
  253. hasArrived: null,
  254. type: null
  255. };
  256. },
  257. submitInfo() {
  258. // 提交请求
  259. this.onRefresh();
  260. this.dataShow = true
  261. this.page = 1
  262. this.search.status = false;
  263. this.$refs.item.toggle();
  264. },
  265. getList() {
  266. this.loading = true;
  267. this.search.startTime =
  268. this.dateSection.showStartDate.replace(/\//g, "-") + " 00:00:00";
  269. (this.search.endTime =
  270. this.dateEndSection.showEndDate.replace(/\//g, "-") + " 23:59:59"),
  271. (this.search.page = this.page);
  272. this.search.type = this.search.type ? this.search.type : null
  273. this.search.rows = 20;
  274. getOnlineCourse(this.search).then(res => {
  275. let result = res.data;
  276. this.loading = false;
  277. if (result.code == 200) {
  278. sessionStorage.setItem("evaluationList", JSON.stringify(this.search));
  279. this.page = result.data.pageNo;
  280. this.courseList = this.courseList.concat(result.data.rows);
  281. if (this.page >= result.data.totalPage) {
  282. this.finished = true;
  283. }
  284. this.page++;
  285. } else {
  286. this.finished = true;
  287. }
  288. // 判断是否有数据
  289. if (this.courseList.length <= 0) {
  290. this.dataShow = false;
  291. }
  292. });
  293. },
  294. onRefresh() {
  295. // 清空列表数据
  296. this.finished = false;
  297. this.page = 1;
  298. // 重新加载数据
  299. // 将 loading 设置为 true,表示处于加载状态
  300. this.loading = false;
  301. this.courseList = [];
  302. this.getList();
  303. },
  304. submitReview(item) {
  305. this.$router.push({
  306. path: "/courseEvaluation",
  307. query: { id: item.id, reviewId: item.reviewId, isInside: true }
  308. });
  309. }
  310. },
  311. filters: {
  312. filterClass(val) {
  313. return val.substring(0, 10);
  314. }
  315. }
  316. };
  317. </script>
  318. <style lang="less" scoped>
  319. @import url("../../assets/commonLess/variable.less");
  320. .wrap {
  321. height: 100vh;
  322. overflow-y: auto;
  323. overflow-x: hidden;
  324. background-color: #F3F4F8;
  325. }
  326. /deep/.van-dropdown-item__content {
  327. height: 100%;
  328. max-height: 100%;
  329. }
  330. .searchSection {
  331. display: flex;
  332. justify-content: space-between;
  333. background: #fff;
  334. margin-bottom: 0.12rem;
  335. padding: .1rem 0.16rem;
  336. align-items: center;
  337. .searchDate {
  338. display: flex;
  339. align-items: center;
  340. color: #666666;
  341. height: auto;
  342. .startDate {
  343. margin-right: 0.05rem;
  344. }
  345. .endDate {
  346. margin-left: 0.05rem;
  347. }
  348. .date {
  349. padding: 0.02rem 0.06rem;
  350. border: 1px solid #e5e5e5;
  351. font-size: 0.14rem;
  352. color: #999999;
  353. span {
  354. padding-left: 0.04rem;
  355. font-size: 0.15rem;
  356. color: #666666;
  357. }
  358. }
  359. }
  360. /deep/.van-hairline--top-bottom::after,
  361. .van-hairline-unset--top-bottom::after {
  362. border-width: 0 0;
  363. }
  364. /deep/.van-dropdown-menu__title {
  365. font-size: 0.17rem;
  366. color: #1a1a1a;
  367. line-height: inherit;
  368. height: auto;
  369. }
  370. .btnGroup {
  371. display: flex;
  372. margin-top: 0.15rem;
  373. position: fixed;
  374. width: 100%;
  375. bottom: 0;
  376. .btn {
  377. width: 50%;
  378. text-align: center;
  379. font-size: 0.17rem;
  380. color: #000;
  381. padding: 0.12rem 0;
  382. }
  383. .btn-reset {
  384. background-color: #e1f6f4;
  385. color: #14928a;
  386. }
  387. .btn-sure {
  388. background-color: #14928a;
  389. color: #fff;
  390. }
  391. }
  392. .dropList {
  393. margin-bottom: .55rem;
  394. }
  395. .dropItem {
  396. padding: 0.1rem 0.16rem;
  397. .dropTitle {
  398. font-size: 0.17rem;
  399. color: #1a1a1a;
  400. }
  401. .radioGroup {
  402. display: flex;
  403. justify-content: space-between;
  404. padding-top: .08rem;
  405. flex-wrap: wrap;
  406. span {
  407. color: #000000;
  408. background-color: #f4f4f4;
  409. width: 48%;
  410. padding: .08rem 0;
  411. text-align: center;
  412. border-radius: 2px;
  413. &.actived {
  414. color: #14928a;
  415. background: url("../../assets/images/audition/icon_check.png")
  416. no-repeat bottom right #e4f6f5;
  417. background-size: 0.2rem;
  418. }
  419. }
  420. }
  421. }
  422. }
  423. .cellGroup {
  424. padding: 0.16rem;
  425. font-size: .14rem;
  426. line-height: .24rem;
  427. }
  428. .sectionTitle {
  429. font-size: 0.16rem;
  430. color: #808080;
  431. align-items: center;
  432. display: flex;
  433. }
  434. .sectionValue {
  435. display: flex;
  436. width: 70%;
  437. flex: 1 auto;
  438. justify-content: space-between;
  439. align-items: center;
  440. height: auto !important;
  441. .content {
  442. font-size: 0.17rem;
  443. color: #1a1a1a;
  444. }
  445. .van-button {
  446. font-size: 0.14rem;
  447. background-color: #14928a;
  448. border-color: #14928a;
  449. padding: 0 0.12rem;
  450. min-width: 0.88rem;
  451. height: .3rem;
  452. &.van-update {
  453. background-color: #fff;
  454. color: #14928a;
  455. }
  456. }
  457. }
  458. /deep/.van-cell__title {
  459. font-size: 0.14rem;
  460. color: @mFontColor;
  461. flex: 1 auto;
  462. }
  463. .logo {
  464. width: 0.35rem;
  465. height: 0.35rem;
  466. margin-right: 0.12rem;
  467. border-radius: 100%;
  468. }
  469. .input-cell {
  470. padding: 0.12rem 0.16rem 0.2rem;
  471. .van-radio {
  472. justify-content: flex-end;
  473. }
  474. }
  475. /deep/.van-cell__value {
  476. height: 0.2rem;
  477. }
  478. /deep/.van-radio__icon .van-icon {
  479. border-color: @sFontColor;
  480. }
  481. /deep/.van-radio__icon--checked {
  482. .van-icon {
  483. border-color: @orangeColor;
  484. background: @orangeColor;
  485. }
  486. }
  487. .van-tag {
  488. margin-left: 0.08rem;
  489. }
  490. .button-group {
  491. margin: 0.3rem 0.26rem 0.2rem;
  492. .van-button--primary {
  493. background: @mColor;
  494. border: 1px solid @mColor;
  495. font-size: 0.18rem;
  496. }
  497. }
  498. /deep/.van-dropdown-menu__bar {
  499. box-shadow: none;
  500. }
  501. </style>