mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 03:16:44 +08:00
Merge branch 'master' of ssh://gitlab.dongwu-inc.com:10022/BOE/fe-manage
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -372,9 +372,10 @@
|
||||
? 'flex'
|
||||
: 'none',
|
||||
}"
|
||||
|
||||
@click="
|
||||
item.course === '面授' ? showCopyModal(item.course) : null
|
||||
item.course === '面授'
|
||||
? showCopyModal(item.course)
|
||||
: null
|
||||
"
|
||||
>
|
||||
二维码
|
||||
@@ -788,13 +789,12 @@
|
||||
</div>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane key="4" tab="公告">
|
||||
|
||||
<NoticePub></NoticePub>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane key="5" tab="项目积分">
|
||||
<ProjectScore></ProjectScore>
|
||||
</a-tab-pane>
|
||||
|
||||
|
||||
<a-tab-pane key="6" tab="排行榜">
|
||||
<div class="content6">
|
||||
<div class="title">排行榜</div>
|
||||
@@ -1488,7 +1488,7 @@
|
||||
<div class="close_exit" @click="closeCopyModal"></div>
|
||||
</div>
|
||||
<div class="body">
|
||||
<div><img src="../../assets/images/taskpage/erweima.png"/></div>
|
||||
<div><img src="../../assets/images/taskpage/erweima.png" /></div>
|
||||
</div>
|
||||
<div class="footerr">
|
||||
<div class="onload">下载二维码</div>
|
||||
@@ -1538,7 +1538,6 @@ export default {
|
||||
NoticePub,
|
||||
ProjectScore,
|
||||
TaskImpStu,
|
||||
|
||||
},
|
||||
setup() {
|
||||
const state = reactive({
|
||||
@@ -2298,19 +2297,27 @@ export default {
|
||||
justifyContent: "center",
|
||||
}}
|
||||
>
|
||||
<div class="studentopea1" onClick={() => {
|
||||
if(value.excellent === false){
|
||||
state.canclestu = true;
|
||||
}else if(value.excellent === true){
|
||||
state.canclestu = false;
|
||||
}
|
||||
}}>
|
||||
<div
|
||||
class="studentopea1"
|
||||
onClick={() => {
|
||||
if (value.excellent === false) {
|
||||
state.canclestu = true;
|
||||
} else if (value.excellent === true) {
|
||||
state.canclestu = false;
|
||||
}
|
||||
}}
|
||||
>
|
||||
{value.excellent ? "取消优秀" : "优秀学员"}
|
||||
</div>
|
||||
|
||||
<div class="studentopea2" onClick={() => {
|
||||
state.Seevisible = true;
|
||||
}}>查看</div>
|
||||
<div
|
||||
class="studentopea2"
|
||||
onClick={() => {
|
||||
state.Seevisible = true;
|
||||
}}
|
||||
>
|
||||
查看
|
||||
</div>
|
||||
<div class="studentSelect">
|
||||
<a-select
|
||||
style="width: 50px"
|
||||
@@ -2319,9 +2326,13 @@ export default {
|
||||
dropdownClassName="tabledropdown"
|
||||
>
|
||||
<a-select-option value="换组" label="换组">
|
||||
<div onClick={() => {
|
||||
<div
|
||||
onClick={() => {
|
||||
state.Changevisible = true;
|
||||
}}>换组</div>
|
||||
}}
|
||||
>
|
||||
换组
|
||||
</div>
|
||||
</a-select-option>
|
||||
<a-select-option value="删除" label="删除">
|
||||
<div
|
||||
@@ -3560,7 +3571,6 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.content3 {
|
||||
margin-top: 20px;
|
||||
|
||||
Reference in New Issue
Block a user