mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-10 19:36:43 +08:00
Merge branch 'master' into dev
This commit is contained in:
@@ -133,12 +133,18 @@ const user = {
|
||||
dfn = res.result.departFullName;
|
||||
}
|
||||
}
|
||||
if (res.result.userNo != '') {
|
||||
for(let key in caseUser){
|
||||
if(res.result.userNo == key) {
|
||||
commit('SET_caseShow',true);
|
||||
}
|
||||
}
|
||||
let nowTime = new Date() //当前时间
|
||||
let endTime = new Date('2022/07/01 09:30:00') //对比时间
|
||||
if(nowTime.getTime() < endTime.getTime()){
|
||||
if (res.result.userNo != '') {
|
||||
for(let key in caseUser){
|
||||
if(res.result.userNo == key) {
|
||||
commit('SET_caseShow',true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}else{
|
||||
commit('SET_caseShow',true);
|
||||
}
|
||||
const user = {
|
||||
aid: res.result.aid,
|
||||
|
||||
@@ -216,7 +216,7 @@
|
||||
<el-row :gutter="10">
|
||||
</el-row>
|
||||
<div style="height: 50px;"></div>
|
||||
<el-dialog class="protocol" :visible.sync="protocolDialogVisible" width="30%" :show-close="false">
|
||||
<el-dialog class="protocol" :close-on-click-modal="false" :visible.sync="protocolDialogVisible" width="30%" :show-close="false">
|
||||
<div class="protocol-title">案例查阅及使用用户协议</div>
|
||||
<div class="protocol-content">
|
||||
  本专区内案例为BOE各组织沉淀的通用案例、 组织案例、卓越绩效案例、管理案例、 职级晋升案例、企业文化案例等。 案例内容记录作者亲历的、真实的、已完成的、
|
||||
@@ -738,6 +738,16 @@ export default {
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
::v-deep .el-checkbox{
|
||||
.el-checkbox__input{
|
||||
.el-checkbox__inner{
|
||||
border: 1px solid #3e3c3c;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
::v-deep .el-radio-button{
|
||||
margin-right:-5px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user