|
@@ -0,0 +1,365 @@
|
|
|
+<template>
|
|
|
+ <div class="ClassDetails">
|
|
|
+ <NavBar title="班级详情" backUrl="/" />
|
|
|
+ <!-- <van-swipe class="my-swipe" :autoplay="3000" :show-indicators="false">
|
|
|
+ <van-swipe-item>1</van-swipe-item>
|
|
|
+ <van-swipe-item>2</van-swipe-item>
|
|
|
+ <van-swipe-item>3</van-swipe-item>
|
|
|
+ <van-swipe-item>4</van-swipe-item>
|
|
|
+ </van-swipe> -->
|
|
|
+ <van-image
|
|
|
+ class="banner"
|
|
|
+ radius="0"
|
|
|
+ v-if="classInfo.img"
|
|
|
+ :src="classInfo.img"
|
|
|
+ />
|
|
|
+ <section class="base-info">
|
|
|
+ <div class="title u-flex u-row-between">
|
|
|
+ <div class="name">{{ classInfo.name }}</div>
|
|
|
+ <div class="status" @click="graduate" v-if="classInfo.status == 1">
|
|
|
+ <van-icon class="icon" :name="iconStatusRed" />{{
|
|
|
+ classInfo.status | classStatus
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ <div class="status" v-else>
|
|
|
+ <van-icon class="icon" :name="iconStatusRed" />{{
|
|
|
+ classInfo.status | classStatus
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="info">
|
|
|
+ <van-icon class="icon" :name="iconSchool" />{{ classInfo.schoolName }}
|
|
|
+ </div>
|
|
|
+ <div class="info">
|
|
|
+ <van-icon class="icon" :name="iconClass" />{{ classInfo.memberNum }}
|
|
|
+ </div>
|
|
|
+ <div class="info">
|
|
|
+ <van-icon class="icon" :name="iconTime" />{{
|
|
|
+ classInfo.classStartTime | timeFromDate
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ <van-button
|
|
|
+ class="btn"
|
|
|
+ type="default"
|
|
|
+ size="mini"
|
|
|
+ @click="handleReleasingNotices"
|
|
|
+ >通知发布</van-button
|
|
|
+ >
|
|
|
+ </section>
|
|
|
+ <section class="block teachers">
|
|
|
+ <div class="block-title">教师({{ teacherList.length }}人)</div>
|
|
|
+ <div class="teachers-list">
|
|
|
+ <!-- <div class="teachers-item u-flex u-row-between">
|
|
|
+ <div class="left u-flex">
|
|
|
+ <img class="portrait" src="http://img.momen.vip/xsfm.jpg" alt="" />
|
|
|
+ 宗时修
|
|
|
+ </div>
|
|
|
+ <div class="right"><span>自己</span></div>
|
|
|
+ </div> -->
|
|
|
+ <div
|
|
|
+ class="teachers-item u-flex u-row-between"
|
|
|
+ v-for="item in teacherList"
|
|
|
+ :key="item.id"
|
|
|
+ >
|
|
|
+ <div class="left u-flex">
|
|
|
+ <img class="portrait" :src="item.avatar || defaultAvatar" alt="" />
|
|
|
+ {{ item.userName }}
|
|
|
+ </div>
|
|
|
+ <div class="right">
|
|
|
+ <a :href="'tel:' + item.phonenumber"
|
|
|
+ ><van-icon class="icon" :name="iconPhone"
|
|
|
+ /></a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+ <section class="block students">
|
|
|
+ <div class="block-title">学生({{ studentsList.length }}人)</div>
|
|
|
+ <div class="students-list u-flex u-row-left u-flex-wrap">
|
|
|
+ <div
|
|
|
+ class="students-item"
|
|
|
+ @click="goDetails(item.id)"
|
|
|
+ v-for="item in studentsList"
|
|
|
+ :key="item.id"
|
|
|
+ >
|
|
|
+ <img class="portrait" :src="item.avatar || defaultAvatar" alt="" />
|
|
|
+ <div class="name">{{ item.name }}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+ <van-popup class="my-popup" v-model="releasingNoticesShow">
|
|
|
+ <div class="popup-content">
|
|
|
+ <div class="header">发布通知</div>
|
|
|
+ <div class="content">
|
|
|
+ <van-field
|
|
|
+ style="border-bottom: 1px solid #ccc"
|
|
|
+ v-model="noticesTitle"
|
|
|
+ type="text"
|
|
|
+ label="标题"
|
|
|
+ label-width="40"
|
|
|
+ :border="true"
|
|
|
+ placeholder="请输入通知标题"
|
|
|
+ />
|
|
|
+ <van-field
|
|
|
+ v-model="notices"
|
|
|
+ type="textarea"
|
|
|
+ :border="true"
|
|
|
+ placeholder="请输入通知内容"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="footer">
|
|
|
+ <van-button
|
|
|
+ class="btn"
|
|
|
+ type="default"
|
|
|
+ @click="releasingNoticesShow = false"
|
|
|
+ >取消</van-button
|
|
|
+ >
|
|
|
+ <van-button class="btn" type="primary" @click="releasingNotices"
|
|
|
+ >确认</van-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </van-popup>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import NavBar from "@/components/NavBar.vue";
|
|
|
+export default {
|
|
|
+ components: { NavBar },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ classId: "",
|
|
|
+ classInfo: {},
|
|
|
+ teacherList: [],
|
|
|
+ studentsList: [],
|
|
|
+ releasingNoticesShow: false,
|
|
|
+ noticesTitle: "",
|
|
|
+ notices: "",
|
|
|
+ iconSchool: require("@/static/img/icon-school.png"),
|
|
|
+ iconClass: require("@/static/img/icon-class.png"),
|
|
|
+ iconStatusRed: require("@/static/img/icon-status-red.png"),
|
|
|
+ iconTime: require("@/static/img/icon-time.png"),
|
|
|
+ iconPhone: require("@/static/img/icon-dianhua.png"),
|
|
|
+ defaultAvatar: require("@/static/img/default-avatar.png"),
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.classId = this.$route.query.id;
|
|
|
+ this.getClassDetail();
|
|
|
+ this.getTeacherList();
|
|
|
+ this.getStudentsList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getClassDetail() {
|
|
|
+ // return;
|
|
|
+ this.$api
|
|
|
+ .classDetail(this.classId)
|
|
|
+ .then((res) => {
|
|
|
+ // 当请求成功
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.classInfo = res.data;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getTeacherList() {
|
|
|
+ // return;
|
|
|
+ this.$api
|
|
|
+ .getTeacherList(this.classId)
|
|
|
+ .then((res) => {
|
|
|
+ // 当请求成功
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.teacherList = res.data;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getStudentsList() {
|
|
|
+ // return;
|
|
|
+ this.$api
|
|
|
+ .getStudentsList(this.classId)
|
|
|
+ .then((res) => {
|
|
|
+ // 当请求成功
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.studentsList = res.data;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ goDetails(id) {
|
|
|
+ this.$router.push({ path: "/StudentsDetails", query: { id: id } });
|
|
|
+ },
|
|
|
+ handleReleasingNotices() {
|
|
|
+ this.releasingNoticesShow = true;
|
|
|
+ },
|
|
|
+ releasingNotices() {
|
|
|
+ console.log("releasingNotices", this.notices);
|
|
|
+ let param = {
|
|
|
+ name: this.noticesTitle,
|
|
|
+ content: this.notices,
|
|
|
+ classId: this.classId,
|
|
|
+ };
|
|
|
+ this.$api
|
|
|
+ .releasingNotices(param)
|
|
|
+ .then((res) => {
|
|
|
+ this.releasingNoticesShow = false;
|
|
|
+ (this.noticesTitle = ""),
|
|
|
+ (this.notices = ""),
|
|
|
+ this.$toast.success(res.msg);
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ graduate() {
|
|
|
+ this.$dialog
|
|
|
+ .confirm({
|
|
|
+ // title: "标题",
|
|
|
+ message: "是否将开班中状态改为已毕业,改变后所有学员学习状态将改变",
|
|
|
+ overlayClass: "dialog",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.$api
|
|
|
+ .updateClassStatus(this.classId)
|
|
|
+ .then((res) => {
|
|
|
+ this.getClassDetail();
|
|
|
+ this.$toast.success(res.msg);
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ // on confirm
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ // on cancel
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+// .my-swipe {
|
|
|
+// width: 100%;
|
|
|
+// height: 390px;
|
|
|
+// background-color: #026464;
|
|
|
+// }
|
|
|
+.banner {
|
|
|
+ width: 100%;
|
|
|
+ height: 390px;
|
|
|
+ background-color: #026464;
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+.base-info {
|
|
|
+ position: relative;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 22px 28px 48px;
|
|
|
+ border-radius: 0px 0px 18px 18px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .title {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .name {
|
|
|
+ font-size: 40px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #424242;
|
|
|
+ line-height: 56px;
|
|
|
+ }
|
|
|
+ .status {
|
|
|
+ .icon {
|
|
|
+ margin-right: 10px;
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
+ color: $color-red;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .info {
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #525252;
|
|
|
+ line-height: 33px;
|
|
|
+ .icon {
|
|
|
+ margin-right: 15px;
|
|
|
+ }
|
|
|
+ & + .info {
|
|
|
+ margin-top: 13px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .btn {
|
|
|
+ position: absolute;
|
|
|
+ right: 46px;
|
|
|
+ bottom: 48px;
|
|
|
+ color: #8d8d8d;
|
|
|
+ }
|
|
|
+}
|
|
|
+.block {
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 18px;
|
|
|
+ padding: 48px 30px 60px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+.block-title {
|
|
|
+ font-size: 36px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #424242;
|
|
|
+ line-height: 50px;
|
|
|
+ margin-bottom: 23px;
|
|
|
+}
|
|
|
+.teachers {
|
|
|
+ .teachers-item {
|
|
|
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
|
|
|
+ border-radius: 10px;
|
|
|
+ padding: 25px 30px 25px 35px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .left {
|
|
|
+ font-size: 30px;
|
|
|
+ color: #424242;
|
|
|
+ .portrait {
|
|
|
+ width: 62px;
|
|
|
+ height: 62px;
|
|
|
+ overflow: hidden;
|
|
|
+ border: 1px solid #d8d8d8;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin-right: 15px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .right {
|
|
|
+ span {
|
|
|
+ font-size: 26px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #979797;
|
|
|
+ }
|
|
|
+ .icon {
|
|
|
+ color: #4da88d;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.students {
|
|
|
+ .students-list {
|
|
|
+ .students-item {
|
|
|
+ margin-bottom: 23px;
|
|
|
+ margin-left: 10px;
|
|
|
+ text-align: center;
|
|
|
+ width: 100px;
|
|
|
+ .portrait {
|
|
|
+ width: 80px;
|
|
|
+ height: 80px;
|
|
|
+ border-radius: 50%;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto 22px;
|
|
|
+ }
|
|
|
+ .name {
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #424242;
|
|
|
+ line-height: 33px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|