|
@@ -1,11 +1,37 @@
|
|
|
<template>
|
|
|
<div class="ClassDetails full-body">
|
|
|
- <NavBar title="学生详情" backUrl="/ClassDetails?id=1" />
|
|
|
+ <NavBar title="学生详情" :backUrl="backUrl" />
|
|
|
<section class="base-info">
|
|
|
- <img src="http://img.momen.vip/xsfm.jpg" alt="" class="img" />
|
|
|
- <div class="name">郝爱国</div>
|
|
|
- <div class="course">(汽车检测与维修)</div>
|
|
|
+ <img :src="studentInfo.avatar || defaultAvatar" alt="" class="img" />
|
|
|
+ <div class="name">{{ studentInfo.nickName || studentInfo.userName }}</div>
|
|
|
+ <div class="course" v-if="studentInfo.schoolName">
|
|
|
+ ({{ studentInfo.schoolName }})
|
|
|
+ </div>
|
|
|
</section>
|
|
|
+ <!-- <section class="evaluation">
|
|
|
+ <div class="rateTitle">我的评论</div>
|
|
|
+ <van-rate class="rate" v-model="rateValue" />
|
|
|
+ <div class="evaluat">
|
|
|
+ <van-tag class="evaluat-item" round size="large" type="primary"
|
|
|
+ >认真</van-tag
|
|
|
+ >
|
|
|
+ <van-tag class="evaluat-item" round size="large" type="primary"
|
|
|
+ >努力</van-tag
|
|
|
+ >
|
|
|
+ <van-tag class="evaluat-item" plain size="large" round type="primary"
|
|
|
+ >聪明</van-tag
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ <van-field
|
|
|
+ class="textarea"
|
|
|
+ v-model="evaluat"
|
|
|
+ type="textarea"
|
|
|
+ :border="true"
|
|
|
+ placeholder="请输入您的评价"
|
|
|
+ />
|
|
|
+ <div class="submit-btn">提交</div>
|
|
|
+ </section> -->
|
|
|
+
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -13,7 +39,37 @@ import NavBar from "@/components/NavBar.vue";
|
|
|
export default {
|
|
|
components: { NavBar },
|
|
|
data() {
|
|
|
- return {};
|
|
|
+ return {
|
|
|
+ defaultAvatar: require("@/static/img/default-avatar.png"),
|
|
|
+ backUrl: "/",
|
|
|
+ classId: "",
|
|
|
+ studentId: "",
|
|
|
+ studentInfo: {},
|
|
|
+ rateValue: 3,
|
|
|
+ evaluat: "",
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.classId = this.$route.query.classId;
|
|
|
+ this.studentId = this.$route.query.studentId;
|
|
|
+ this.backUrl = `/ClassDetails?id=${this.classId}`;
|
|
|
+ this.getStudentInfo();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getStudentInfo() {
|
|
|
+ this.$api
|
|
|
+ .getStudentInfo({ id: this.studentId })
|
|
|
+ .then((res) => {
|
|
|
+ // 当请求成功
|
|
|
+ if (res.code == "200") {
|
|
|
+ console.log("studentInfo res", res);
|
|
|
+ this.studentInfo = res.data;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.log(error);
|
|
|
+ });
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -46,4 +102,30 @@ export default {
|
|
|
letter-spacing: 1px;
|
|
|
}
|
|
|
}
|
|
|
+.evaluation {
|
|
|
+ margin: 24px;
|
|
|
+ .rateTitle {
|
|
|
+ font-size: 32px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #000;
|
|
|
+ line-height: 45px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ }
|
|
|
+ .rate {
|
|
|
+ margin-bottom: 24px;
|
|
|
+ }
|
|
|
+ .evaluat {
|
|
|
+ margin-bottom: 24px;
|
|
|
+ .evaluat-item {
|
|
|
+ & + .evaluat-item {
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .textarea {
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ background: #f5f5f5;
|
|
|
+ border-radius: 10px;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|