mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-10 03:16:42 +08:00
Merge branch 'third' of https://codeup.aliyun.com/6265f483e4166464dc2f9c14/boeu/portal into third
This commit is contained in:
@@ -79,6 +79,7 @@
|
||||
title="教师信息"
|
||||
:visible.sync="dialogVisible"
|
||||
width="42%"
|
||||
class="teardiabox"
|
||||
>
|
||||
<div class="teachbox" style="height:100px">
|
||||
<div class="tearch-img"><img :src="fileBaseUrl+userData.avatar" alt=""></div>
|
||||
@@ -259,6 +260,12 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
::v-deep .el-dialog__body{
|
||||
padding: 30px 50px !important;
|
||||
}
|
||||
.teardiabox{
|
||||
padding: 20px 30px;
|
||||
}
|
||||
.teachexcel{
|
||||
padding: 5px 10px;
|
||||
margin-right: 10px;
|
||||
|
||||
@@ -33,17 +33,15 @@
|
||||
<div class="teachphoto" style="height:70px">
|
||||
<h3>擅长课程</h3>
|
||||
<div class="teachexcel">
|
||||
通用力
|
||||
{{ teachtext.courses }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="teachphoto" style="height:70px">
|
||||
<h3>专长</h3>
|
||||
<div class="teachexcel">
|
||||
通用力
|
||||
</div>
|
||||
<div class="teachexcel">
|
||||
职业操守与道德
|
||||
{{ teachtext.expertise }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- 编辑教师 -->
|
||||
@@ -80,13 +78,29 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="tearchexperi">
|
||||
<h3>教师专长</h3>
|
||||
<div style="float:left;margin-top:10px;width:350px">
|
||||
<el-cascader
|
||||
<h3 >教师专长</h3>
|
||||
<div style="float:left;margin-top:10px;">
|
||||
<!-- <el-cascader
|
||||
placeholder="请选择,最多可选择五个"
|
||||
:options="options"
|
||||
:props="props"
|
||||
clearable></el-cascader>
|
||||
clearable></el-cascader> -->
|
||||
<!-- <div class="interest" v-show="!interestIsEdit">
|
||||
<ul class="interest-ul">
|
||||
<li class="interest-li" v-for="int in interestList" :key="int.id">{{int.name}}</li>
|
||||
</ul>
|
||||
</div> -->
|
||||
<div >
|
||||
<div class="interest" v-for="(sys,index) in sysTypeListMap" :key="sys.id">
|
||||
<span class="interest-title">{{sys.name}}</span>
|
||||
<div style="width:100%">
|
||||
<el-checkbox-group v-model="checkboxGroup" v-if="sys.children.length > 0">
|
||||
<el-checkbox size="medium" border v-for="ch in sys.children" :label="ch.id" :key="ch.id">{{ch.name}}</el-checkbox>
|
||||
</el-checkbox-group>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user