PeriodChange.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. <template>
  2. <div class="periodchange">
  3. <div :class="[dataShow ? 'container' : '']">
  4. <!-- <m-header /> -->
  5. <m-calendar
  6. @onSelectDay="onSelectDay"
  7. :dayList="getMonthDay"
  8. @onChangeMonth="onChangeMonth"
  9. />
  10. <van-radio-group v-if="dataShow" key="data" v-model="radioSelect" class="cellList">
  11. <van-cell-group v-for="(item, index) in dataList" :key="index">
  12. <van-cell @click="onCheckRadio(item)" class="titleCell">
  13. <template slot="default">
  14. <div class="signImgBox">
  15. <img
  16. class="signImg"
  17. :src="getSignInIcon(item.isSignIn)"
  18. alt=""
  19. />
  20. </div>
  21. </template>
  22. <template slot="title">
  23. <div class="classTitleWrap" style="word-break: break-all">
  24. <img
  25. class="teacherModelImg"
  26. :src="getTeacherImg(item.teachMode)"
  27. alt=""
  28. />
  29. <img class="courseImg" :src="squrtList.squrt2" alt="" />
  30. {{ item.name }}
  31. </div>
  32. <!-- -->
  33. </template>
  34. </van-cell>
  35. <van-cell>
  36. <template slot="title">
  37. <p
  38. class="studentTitle"
  39. style="word-break: break-all"
  40. v-if="item.schoolName"
  41. >
  42. 上课地点 : &nbsp;{{ item.schoolName }}
  43. </p>
  44. <p class="studentTitle" style="word-break: break-all">
  45. 上课学生 : &nbsp;{{ item.studentNames }}
  46. </p>
  47. </template>
  48. </van-cell>
  49. <van-cell
  50. class="input-cell"
  51. title-class="title-content"
  52. value-class="value-content"
  53. :center="true"
  54. @click="onCheckRadio(item)"
  55. >
  56. <template slot="title">
  57. <div class="chioseWrap">
  58. <img class="clockIcon" :src="squrtList.squrt8" alt="" />
  59. <p class="timer">
  60. {{ item.startClassTime | formatDate }}-{{
  61. item.endClassTime | formatDate
  62. }}
  63. </p>
  64. </div>
  65. </template>
  66. <template slot="default">
  67. <van-radio
  68. ref="radioes"
  69. :disabled="radioDisabled"
  70. :name="item.id"
  71. ></van-radio>
  72. </template>
  73. </van-cell>
  74. </van-cell-group>
  75. </van-radio-group>
  76. <m-empty v-else key="data" />
  77. </div>
  78. <van-sticky v-if="dataShow">
  79. <div class="button-group">
  80. <van-button type="primary" @click="onChangeClass" size="large"
  81. >确认交换</van-button
  82. >
  83. </div>
  84. </van-sticky>
  85. </div>
  86. </template>
  87. <script>
  88. /* eslint-disable */
  89. // import MHeader from '@/components/MHeader'
  90. import MCalendar from "@/components/MCalendar";
  91. import MEmpty from "@/components/MEmpty";
  92. import dayjs from "dayjs";
  93. import { browser } from "@/common/common";
  94. import {
  95. getCourseSchedulesWithDate,
  96. getCourseScheduleDateByMonth,
  97. courseSwap,
  98. } from "@/api/teacher";
  99. import setLoading from "@/utils/loading";
  100. export default {
  101. name: "periodchange",
  102. components: { MCalendar, MEmpty },
  103. data() {
  104. return {
  105. dataShow: true,
  106. dataList: [],
  107. radioSelect: null,
  108. radioSelectList: [], // 选中的列表
  109. radioDisabled: true, // 今天或今天之前的数据禁用
  110. getMonthDay: [],
  111. squrtList: {
  112. squrt2: require("@/assets/images/squrt2.png"),
  113. squrt3: require("@/assets/images/squrt3.png"),
  114. squrt4: require("@/assets/images/squrt4.png"),
  115. squrt5: require("@/assets/images/squrt5.png"),
  116. squrt6: require("@/assets/images/squrt6.png"),
  117. squrt7: require("@/assets/images/squrt7.png"),
  118. squrt8: require("@/assets/images/squrt8.png"),
  119. },
  120. };
  121. },
  122. created() {
  123. // let toDay = this.getFormartDate(new Date())
  124. // this.getCourseDate(toDay)
  125. },
  126. mounted() {
  127. let params = this.$route.query;
  128. if (params.Authorization) {
  129. localStorage.setItem("Authorization", decodeURI(params.Authorization));
  130. localStorage.setItem("userInfo", decodeURI(params.Authorization));
  131. }
  132. document.title = "课程交换";
  133. let toDay = this.getFormartDate(new Date());
  134. this.getCourseMonth(toDay);
  135. this.getCourseDate(toDay);
  136. },
  137. methods: {
  138. onSelectDay(value) {
  139. if (
  140. new Date(this.getFormartDate(new Date())) >=
  141. new Date(this.getFormartDate(value))
  142. ) {
  143. this.radioDisabled = true;
  144. } else {
  145. this.radioDisabled = false;
  146. }
  147. this.getCourseDate(this.getFormartDate(value));
  148. },
  149. onChangeMonth(value) {
  150. this.getCourseMonth(dayjs(value).format("YYYY-MM-DD"));
  151. },
  152. async getCourseMonth(month) {
  153. setLoading(true);
  154. try {
  155. await getCourseScheduleDateByMonth({ month: month, type: "VIP" }).then(
  156. (res) => {
  157. let result = res.data;
  158. if (result.code == 200) {
  159. this.getMonthDay = [];
  160. result.data.forEach((item) => {
  161. this.getMonthDay.push(dayjs(item).format("DD"));
  162. });
  163. this.isCalendar = true;
  164. }
  165. }
  166. );
  167. setLoading(false);
  168. } catch (err) {
  169. setLoading(false);
  170. }
  171. },
  172. onCheckRadio(item) {
  173. // 单选按钮选中
  174. if (this.radioDisabled) return;
  175. this.radioSelect = item.id;
  176. this.radioSelectList = item;
  177. },
  178. async getCourseDate(date) {
  179. setLoading(true);
  180. try {
  181. await getCourseSchedulesWithDate({ date: date, type: "VIP" }).then(
  182. (res) => {
  183. let result = res.data;
  184. if (result.code == 200 && result.data) {
  185. this.dataList = result.data.rows;
  186. this.dataShow = result.data.rows.length > 0 ? true : false;
  187. }
  188. }
  189. );
  190. setLoading(false);
  191. } catch (err) {
  192. setLoading(false);
  193. }
  194. },
  195. getFormartDate(date) {
  196. let checkDate = new Date(date);
  197. let checkDay =
  198. checkDate.getFullYear() +
  199. "-" +
  200. (checkDate.getMonth() + 1) +
  201. "-" +
  202. checkDate.getDate();
  203. return checkDay;
  204. },
  205. onChangeClass() {
  206. let item = this.radioSelectList,
  207. params = this.$route.query,
  208. classTime = item.classDate.split(" ")[0],
  209. startTime = item.startClassTime.split(" ")[1];
  210. let firstClass =
  211. params.classDate +
  212. " " +
  213. params.name +
  214. " " +
  215. params.startTime +
  216. "<br/>与";
  217. let lastClass =
  218. classTime + " " + item.name + " " + startTime + "<br/>上课时间互换";
  219. this.$dialog
  220. .confirm({
  221. message: firstClass + lastClass,
  222. })
  223. .then(() => {
  224. courseSwap({
  225. courseScheduleId1: params.checkId,
  226. courseScheduleId2: item.id,
  227. }).then((res) => {
  228. let result = res.data;
  229. if (result.code == 200) {
  230. this.$toast("交换成功");
  231. setTimeout(() => {
  232. if (browser().iPhone) {
  233. window.webkit.messageHandlers.DAYA.postMessage(
  234. JSON.stringify({ api: "back" })
  235. );
  236. } else if (browser().android) {
  237. DAYA.postMessage(JSON.stringify({ api: "back" }));
  238. } else {
  239. this.$router.push("/business");
  240. }
  241. }, 500);
  242. } else {
  243. this.$toast(result.msg);
  244. }
  245. });
  246. })
  247. .catch(() => {
  248. // on cancel
  249. });
  250. },
  251. getSignInIcon(status) {
  252. if (status == 1) {
  253. return this.squrtList.squrt3;
  254. } else if (status == 0) {
  255. return this.squrtList.squrt5;
  256. } else {
  257. return this.squrtList.squrt4;
  258. }
  259. },
  260. getTeacherImg(mode) {
  261. if (mode == "ONLINE") {
  262. return this.squrtList.squrt6;
  263. } else {
  264. return this.squrtList.squrt7;
  265. }
  266. },
  267. },
  268. };
  269. </script>
  270. <style lang='less' scoped>
  271. @import url("../../assets/commonLess/variable.less");
  272. .periodchange {
  273. // height: 100vh;
  274. // position: relative;
  275. // .container {
  276. // // height: 100%;
  277. // height: calc(100vh - 50px);
  278. // overflow-y: auto;
  279. // overflow-x: hidden;
  280. // }
  281. // .button-group {
  282. // width: 100%;
  283. // // position: absolute;
  284. // // bottom: 0;
  285. // // left: 0;
  286. // // z-index: 99;
  287. // .van-button--primary {
  288. // background: @mColor;
  289. // border: @mColor;
  290. // }
  291. // }
  292. min-height: 100vh;
  293. // height: 100vh;
  294. position: relative;
  295. background-color: #f3f4f8;
  296. .container {
  297. min-height: calc(100vh - 0.5rem);
  298. overflow-y: auto;
  299. overflow-x: hidden;
  300. position: relative;
  301. }
  302. .button-group {
  303. width: 100%;
  304. // position: absolute;
  305. // bottom: 0;
  306. // left: 0;
  307. // z-index: 99;
  308. .van-button {
  309. font-size: 0.16rem;
  310. width: 100%;
  311. height: 0.5rem;
  312. line-height: 0.48rem;
  313. }
  314. .van-button--primary {
  315. background: @mColor;
  316. border-color: @mColor;
  317. }
  318. }
  319. }
  320. /deep/.van-cell {
  321. line-height: inherit;
  322. }
  323. /deep/.van-cell__title {
  324. font-size: 0.16rem;
  325. color: @mFontColor;
  326. }
  327. /deep/.van-cell-group {
  328. margin-top: 0.05rem;
  329. border-radius: 0.1rem;
  330. margin: 0.1rem 0.12rem 0;
  331. overflow: hidden;
  332. }
  333. .title-content {
  334. font-weight: bold;
  335. .van-cell__label {
  336. font-weight: 400;
  337. margin-top: 0.06rem;
  338. display: flex;
  339. align-items: center;
  340. }
  341. .van-icon-location {
  342. margin-right: 0.05rem;
  343. }
  344. }
  345. /deep/.van-cell__value,
  346. /deep/.van-cell__label {
  347. color: @tFontColor;
  348. span {
  349. padding-right: 0.1rem;
  350. }
  351. }
  352. .input-cell {
  353. padding: 0.12rem 0.16rem 0.2rem;
  354. .van-radio {
  355. justify-content: flex-end;
  356. }
  357. }
  358. /deep/.van-radio__icon .van-icon {
  359. border-color: @sFontColor;
  360. }
  361. /deep/.van-radio__icon--checked .van-icon {
  362. background: @mColor;
  363. border-color: @mColor;
  364. }
  365. /deep/.icon {
  366. margin-top: 0.2rem;
  367. }
  368. .signImgBox {
  369. .signImg {
  370. margin-top: 0.04rem;
  371. width: 0.48rem;
  372. height: 0.22rem;
  373. }
  374. }
  375. .teacherModelImg {
  376. width: 0.35rem;
  377. height: 0.2rem;
  378. margin-right: 0.05rem;
  379. position: absolute;
  380. left: 0;
  381. top: 0.04rem;
  382. }
  383. .courseImg {
  384. width: 0.42rem;
  385. height: 0.18rem;
  386. position: absolute;
  387. left: 0.4rem;
  388. top: 0.05rem;
  389. }
  390. .classTitleWrap {
  391. position: relative;
  392. text-indent: 0.88rem;
  393. line-height: 0.28rem;
  394. // align-items: center;
  395. }
  396. .titleCell {
  397. padding-bottom: 0 !important;
  398. &:after {
  399. border-bottom: none;
  400. }
  401. }
  402. .chioseWrap {
  403. display: flex;
  404. flex-direction: row;
  405. justify-content: flex-start;
  406. align-items: center;
  407. img {
  408. position: relative;
  409. top: -0.02rem;
  410. margin-right: 0.08rem;
  411. }
  412. }
  413. .cellList {
  414. margin-bottom: 20px;
  415. }
  416. </style>