123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- <template>
- <div class="periodchange">
- <div :class="[dataShow ? 'container' : '']">
- <!-- <m-header /> -->
- <m-calendar
- @onSelectDay="onSelectDay"
- :dayList="getMonthDay"
- @onChangeMonth="onChangeMonth"
- />
- <van-radio-group v-if="dataShow" key="data" v-model="radioSelect" class="cellList">
- <van-cell-group v-for="(item, index) in dataList" :key="index">
- <van-cell @click="onCheckRadio(item)" class="titleCell">
- <template slot="default">
- <div class="signImgBox">
- <img
- class="signImg"
- :src="getSignInIcon(item.isSignIn)"
- alt=""
- />
- </div>
- </template>
- <template slot="title">
- <div class="classTitleWrap" style="word-break: break-all">
- <img
- class="teacherModelImg"
- :src="getTeacherImg(item.teachMode)"
- alt=""
- />
- <img class="courseImg" :src="squrtList.squrt2" alt="" />
- {{ item.name }}
- </div>
- <!-- -->
- </template>
- </van-cell>
- <van-cell>
- <template slot="title">
- <p
- class="studentTitle"
- style="word-break: break-all"
- v-if="item.schoolName"
- >
- 上课地点 : {{ item.schoolName }}
- </p>
- <p class="studentTitle" style="word-break: break-all">
- 上课学生 : {{ item.studentNames }}
- </p>
- </template>
- </van-cell>
- <van-cell
- class="input-cell"
- title-class="title-content"
- value-class="value-content"
- :center="true"
- @click="onCheckRadio(item)"
- >
- <template slot="title">
- <div class="chioseWrap">
- <img class="clockIcon" :src="squrtList.squrt8" alt="" />
- <p class="timer">
- {{ item.startClassTime | formatDate }}-{{
- item.endClassTime | formatDate
- }}
- </p>
- </div>
- </template>
- <template slot="default">
- <van-radio
- ref="radioes"
- :disabled="radioDisabled"
- :name="item.id"
- ></van-radio>
- </template>
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- <m-empty v-else key="data" />
- </div>
- <van-sticky v-if="dataShow">
- <div class="button-group">
- <van-button type="primary" @click="onChangeClass" size="large"
- >确认交换</van-button
- >
- </div>
- </van-sticky>
- </div>
- </template>
- <script>
- /* eslint-disable */
- // import MHeader from '@/components/MHeader'
- import MCalendar from "@/components/MCalendar";
- import MEmpty from "@/components/MEmpty";
- import dayjs from "dayjs";
- import { browser } from "@/common/common";
- import {
- getCourseSchedulesWithDate,
- getCourseScheduleDateByMonth,
- courseSwap,
- } from "@/api/teacher";
- import setLoading from "@/utils/loading";
- export default {
- name: "periodchange",
- components: { MCalendar, MEmpty },
- data() {
- return {
- dataShow: true,
- dataList: [],
- radioSelect: null,
- radioSelectList: [], // 选中的列表
- radioDisabled: true, // 今天或今天之前的数据禁用
- getMonthDay: [],
- squrtList: {
- squrt2: require("@/assets/images/squrt2.png"),
- squrt3: require("@/assets/images/squrt3.png"),
- squrt4: require("@/assets/images/squrt4.png"),
- squrt5: require("@/assets/images/squrt5.png"),
- squrt6: require("@/assets/images/squrt6.png"),
- squrt7: require("@/assets/images/squrt7.png"),
- squrt8: require("@/assets/images/squrt8.png"),
- },
- };
- },
- created() {
- // let toDay = this.getFormartDate(new Date())
- // this.getCourseDate(toDay)
- },
- mounted() {
- let params = this.$route.query;
- if (params.Authorization) {
- localStorage.setItem("Authorization", decodeURI(params.Authorization));
- localStorage.setItem("userInfo", decodeURI(params.Authorization));
- }
- document.title = "课程交换";
- let toDay = this.getFormartDate(new Date());
- this.getCourseMonth(toDay);
- this.getCourseDate(toDay);
- },
- methods: {
- onSelectDay(value) {
- if (
- new Date(this.getFormartDate(new Date())) >=
- new Date(this.getFormartDate(value))
- ) {
- this.radioDisabled = true;
- } else {
- this.radioDisabled = false;
- }
- this.getCourseDate(this.getFormartDate(value));
- },
- onChangeMonth(value) {
- this.getCourseMonth(dayjs(value).format("YYYY-MM-DD"));
- },
- async getCourseMonth(month) {
- setLoading(true);
- try {
- await getCourseScheduleDateByMonth({ month: month, type: "VIP" }).then(
- (res) => {
- let result = res.data;
- if (result.code == 200) {
- this.getMonthDay = [];
- result.data.forEach((item) => {
- this.getMonthDay.push(dayjs(item).format("DD"));
- });
- this.isCalendar = true;
- }
- }
- );
- setLoading(false);
- } catch (err) {
- setLoading(false);
- }
- },
- onCheckRadio(item) {
- // 单选按钮选中
- if (this.radioDisabled) return;
- this.radioSelect = item.id;
- this.radioSelectList = item;
- },
- async getCourseDate(date) {
- setLoading(true);
- try {
- await getCourseSchedulesWithDate({ date: date, type: "VIP" }).then(
- (res) => {
- let result = res.data;
- if (result.code == 200 && result.data) {
- this.dataList = result.data.rows;
- this.dataShow = result.data.rows.length > 0 ? true : false;
- }
- }
- );
- setLoading(false);
- } catch (err) {
- setLoading(false);
- }
- },
- getFormartDate(date) {
- let checkDate = new Date(date);
- let checkDay =
- checkDate.getFullYear() +
- "-" +
- (checkDate.getMonth() + 1) +
- "-" +
- checkDate.getDate();
- return checkDay;
- },
- onChangeClass() {
- let item = this.radioSelectList,
- params = this.$route.query,
- classTime = item.classDate.split(" ")[0],
- startTime = item.startClassTime.split(" ")[1];
- let firstClass =
- params.classDate +
- " " +
- params.name +
- " " +
- params.startTime +
- "<br/>与";
- let lastClass =
- classTime + " " + item.name + " " + startTime + "<br/>上课时间互换";
- this.$dialog
- .confirm({
- message: firstClass + lastClass,
- })
- .then(() => {
- courseSwap({
- courseScheduleId1: params.checkId,
- courseScheduleId2: item.id,
- }).then((res) => {
- let result = res.data;
- if (result.code == 200) {
- this.$toast("交换成功");
- setTimeout(() => {
- if (browser().iPhone) {
- window.webkit.messageHandlers.DAYA.postMessage(
- JSON.stringify({ api: "back" })
- );
- } else if (browser().android) {
- DAYA.postMessage(JSON.stringify({ api: "back" }));
- } else {
- this.$router.push("/business");
- }
- }, 500);
- } else {
- this.$toast(result.msg);
- }
- });
- })
- .catch(() => {
- // on cancel
- });
- },
- getSignInIcon(status) {
- if (status == 1) {
- return this.squrtList.squrt3;
- } else if (status == 0) {
- return this.squrtList.squrt5;
- } else {
- return this.squrtList.squrt4;
- }
- },
- getTeacherImg(mode) {
- if (mode == "ONLINE") {
- return this.squrtList.squrt6;
- } else {
- return this.squrtList.squrt7;
- }
- },
- },
- };
- </script>
- <style lang='less' scoped>
- @import url("../../assets/commonLess/variable.less");
- .periodchange {
- // height: 100vh;
- // position: relative;
- // .container {
- // // height: 100%;
- // height: calc(100vh - 50px);
- // overflow-y: auto;
- // overflow-x: hidden;
- // }
- // .button-group {
- // width: 100%;
- // // position: absolute;
- // // bottom: 0;
- // // left: 0;
- // // z-index: 99;
- // .van-button--primary {
- // background: @mColor;
- // border: @mColor;
- // }
- // }
- min-height: 100vh;
- // height: 100vh;
- position: relative;
- background-color: #f3f4f8;
- .container {
- min-height: calc(100vh - 0.5rem);
- overflow-y: auto;
- overflow-x: hidden;
- position: relative;
- }
- .button-group {
- width: 100%;
- // position: absolute;
- // bottom: 0;
- // left: 0;
- // z-index: 99;
- .van-button {
- font-size: 0.16rem;
- width: 100%;
- height: 0.5rem;
- line-height: 0.48rem;
- }
- .van-button--primary {
- background: @mColor;
- border-color: @mColor;
- }
- }
- }
- /deep/.van-cell {
- line-height: inherit;
- }
- /deep/.van-cell__title {
- font-size: 0.16rem;
- color: @mFontColor;
- }
- /deep/.van-cell-group {
- margin-top: 0.05rem;
- border-radius: 0.1rem;
- margin: 0.1rem 0.12rem 0;
- overflow: hidden;
- }
- .title-content {
- font-weight: bold;
- .van-cell__label {
- font-weight: 400;
- margin-top: 0.06rem;
- display: flex;
- align-items: center;
- }
- .van-icon-location {
- margin-right: 0.05rem;
- }
- }
- /deep/.van-cell__value,
- /deep/.van-cell__label {
- color: @tFontColor;
- span {
- padding-right: 0.1rem;
- }
- }
- .input-cell {
- padding: 0.12rem 0.16rem 0.2rem;
- .van-radio {
- justify-content: flex-end;
- }
- }
- /deep/.van-radio__icon .van-icon {
- border-color: @sFontColor;
- }
- /deep/.van-radio__icon--checked .van-icon {
- background: @mColor;
- border-color: @mColor;
- }
- /deep/.icon {
- margin-top: 0.2rem;
- }
- .signImgBox {
- .signImg {
- margin-top: 0.04rem;
- width: 0.48rem;
- height: 0.22rem;
- }
- }
- .teacherModelImg {
- width: 0.35rem;
- height: 0.2rem;
- margin-right: 0.05rem;
- position: absolute;
- left: 0;
- top: 0.04rem;
- }
- .courseImg {
- width: 0.42rem;
- height: 0.18rem;
- position: absolute;
- left: 0.4rem;
- top: 0.05rem;
- }
- .classTitleWrap {
- position: relative;
- text-indent: 0.88rem;
- line-height: 0.28rem;
- // align-items: center;
- }
- .titleCell {
- padding-bottom: 0 !important;
- &:after {
- border-bottom: none;
- }
- }
- .chioseWrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- img {
- position: relative;
- top: -0.02rem;
- margin-right: 0.08rem;
- }
- }
- .cellList {
- margin-bottom: 20px;
- }
- </style>
|