|
@@ -38,6 +38,26 @@
|
|
|
<van-icon name="arrow" />
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
+ <el-col :span="24" class="mess">
|
|
|
+ <el-col :span="22" class="info">
|
|
|
+ <p class="title">班主任</p>
|
|
|
+ <p class="name">{{ dirInfo.name }}</p>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="2" class="icon">
|
|
|
+ <van-icon name="arrow" />
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="mess">
|
|
|
+ <el-col :span="22" class="info">
|
|
|
+ <p class="title">班主任电话</p>
|
|
|
+ <p class="name">
|
|
|
+ <a :href="`tel:${dirInfo.phone}`">{{ dirInfo.phone }}</a>
|
|
|
+ </p>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="2" class="icon">
|
|
|
+ <van-icon name="arrow" />
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
<el-col :span="24" class="mess">
|
|
|
<el-col :span="22" class="info">
|
|
|
<p class="title">礼仪课老师</p>
|
|
@@ -87,9 +107,7 @@
|
|
|
<el-col :span="22" class="info">
|
|
|
<p class="title">班级类型</p>
|
|
|
<p class="name">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span style="margin-left: 10px" v-if="classinfo.type">{{ scope.row.type === '0' ? '正常班级' : scope.row.type === '1' ? '特殊班级' : '' }}</span>
|
|
|
- </template>
|
|
|
+ <span>{{ getType(classinfo.type) }}</span>
|
|
|
</p>
|
|
|
</el-col>
|
|
|
<el-col :span="2" class="icon">
|
|
@@ -103,24 +121,45 @@
|
|
|
<script>
|
|
|
import { mapState, createNamespacedHelpers, mapGetters } from 'vuex';
|
|
|
const { mapActions: classes } = createNamespacedHelpers('classes');
|
|
|
+const { mapActions: director } = createNamespacedHelpers('director');
|
|
|
+const { mapActions: classtype } = createNamespacedHelpers('classtype');
|
|
|
+
|
|
|
export default {
|
|
|
name: 'classInfo',
|
|
|
props: {},
|
|
|
components: {},
|
|
|
data: () => ({
|
|
|
classinfo: {},
|
|
|
+ classTypeList: [],
|
|
|
+ dirInfo: {},
|
|
|
}),
|
|
|
- created() {
|
|
|
+ async created() {
|
|
|
+ await this.getOtherList();
|
|
|
this.search();
|
|
|
},
|
|
|
computed: {
|
|
|
...mapState(['user', 'classid']),
|
|
|
},
|
|
|
methods: {
|
|
|
+ ...director({ getDir: 'fetch' }),
|
|
|
...classes(['fetch']),
|
|
|
+ ...classtype({ getClassType: 'query' }),
|
|
|
async search() {
|
|
|
const classinfo = (await this.fetch(this.classid)).data;
|
|
|
this.$set(this, `classinfo`, classinfo);
|
|
|
+ if (_.get(classinfo, 'headteacherid')) {
|
|
|
+ const dirInfo = await this.getDir(_.get(classinfo, 'headteacherid'));
|
|
|
+ if (this.$checkRes(dirInfo)) this.$set(this, `dirInfo`, dirInfo.data);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getOtherList() {
|
|
|
+ const res = await this.getClassType();
|
|
|
+ if (this.$checkRes(res)) this.$set(this, `classTypeList`, res.data);
|
|
|
+ },
|
|
|
+ getType(type) {
|
|
|
+ console.log(type);
|
|
|
+ const r = this.classTypeList.find(f => f.code == type);
|
|
|
+ if (r) return r.name;
|
|
|
},
|
|
|
},
|
|
|
};
|