mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-12 04:16:45 +08:00
feat:新增社招新员工报名页面
This commit is contained in:
31
src/api/new-employee/newEmployee.js
Normal file
31
src/api/new-employee/newEmployee.js
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
import ajax from '@/api/boe/boeApiAjax.js'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取嵌入课程信息
|
||||||
|
* @param {Object} params - 参数对象
|
||||||
|
* @param {string} params.course_id - 课程ID
|
||||||
|
*/
|
||||||
|
export function enrollWork(params) {
|
||||||
|
return ajax.postJson('/boe/embed-work/complete-embed', params)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 确认报名注册
|
||||||
|
* @param {Object} data - 提交数据
|
||||||
|
* @param {string} data.id - 项目ID
|
||||||
|
* @param {string} data.method - 方法
|
||||||
|
* @param {string} data.userId - 用户ID
|
||||||
|
* @param {string} data.objectType - 对象类型
|
||||||
|
* @param {FormData} data.formData - 表单数据
|
||||||
|
*/
|
||||||
|
export function enrollRegSure(data) {
|
||||||
|
return ajax.postJson('/boe/enroll-data/reg-sure', data)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取欢迎页数据
|
||||||
|
*/
|
||||||
|
export function getWelcomeData() {
|
||||||
|
return ajax.get('/boe/new-employee/welcome')
|
||||||
|
}
|
||||||
|
|
||||||
BIN
src/assets/images/new-employee/wel.png
Normal file
BIN
src/assets/images/new-employee/wel.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 527 KiB |
@@ -3,53 +3,108 @@
|
|||||||
<div class="portal-top" :style="{ color: textColor }">
|
<div class="portal-top" :style="{ color: textColor }">
|
||||||
<div class="portal-top-left">
|
<div class="portal-top-left">
|
||||||
<div class="portal-top-logo">
|
<div class="portal-top-logo">
|
||||||
<img src="../assets/logo/logo-white.png" v-if="textColor == '#fff' || textColor == '#ffffff'" style="width:160px;height: 27px;" />
|
<img
|
||||||
<img src="../assets/logo/logo.png" v-else style="width:160px;height: 27px;" />
|
src="../assets/logo/logo-white.png"
|
||||||
|
v-if="textColor == '#fff' || textColor == '#ffffff'"
|
||||||
|
style="width: 160px; height: 27px"
|
||||||
|
/>
|
||||||
|
<img
|
||||||
|
src="../assets/logo/logo.png"
|
||||||
|
v-else
|
||||||
|
style="width: 160px; height: 27px"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="portal-top-nav" v-if="userInfo.role === 1">
|
<div class="portal-top-nav" v-if="userInfo.role === 1">
|
||||||
<div class="top-nav" :style="{color:textColor}" :class="current == 'index' ? activeNav : ''">
|
<div
|
||||||
<router-link to="/index" >首页
|
class="top-nav"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
:class="current == 'index' ? activeNav : ''"
|
||||||
|
>
|
||||||
|
<router-link to="/index"
|
||||||
|
>首页
|
||||||
<div :class="current == 'index' ? 'nav-bottbor' : ''"></div>
|
<div :class="current == 'index' ? 'nav-bottbor' : ''"></div>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-nav" :style="{color:textColor}" :class="current == 'course' ? activeNav : ''">
|
<div
|
||||||
<a @click="handleChangeCourse">课程
|
class="top-nav"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
:class="current == 'course' ? activeNav : ''"
|
||||||
|
>
|
||||||
|
<a @click="handleChangeCourse"
|
||||||
|
>课程
|
||||||
<div :class="current == 'course' ? 'nav-bottbor' : ''"></div>
|
<div :class="current == 'course' ? 'nav-bottbor' : ''"></div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-nav" :style="{color:textColor}" :class="current == 'case' ? activeNav : ''">
|
<div
|
||||||
<router-link to="/case">案例
|
class="top-nav"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
:class="current == 'case' ? activeNav : ''"
|
||||||
|
>
|
||||||
|
<router-link to="/case"
|
||||||
|
>案例
|
||||||
<div :class="current == 'case' ? 'nav-bottbor' : ''"></div>
|
<div :class="current == 'case' ? 'nav-bottbor' : ''"></div>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-nav" :style="{color:textColor}" :class="current == 'article' ? activeNav : ''">
|
<div
|
||||||
<router-link to="/article">文章
|
class="top-nav"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
:class="current == 'article' ? activeNav : ''"
|
||||||
|
>
|
||||||
|
<router-link to="/article"
|
||||||
|
>文章
|
||||||
<div :class="current == 'article' ? 'nav-bottbor' : ''"></div>
|
<div :class="current == 'article' ? 'nav-bottbor' : ''"></div>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-nav" :style="{color:textColor}" :class="current == 'qa' ? activeNav : ''">
|
<div
|
||||||
<router-link to="/qa" >问答
|
class="top-nav"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
:class="current == 'qa' ? activeNav : ''"
|
||||||
|
>
|
||||||
|
<router-link to="/qa"
|
||||||
|
>问答
|
||||||
<div :class="current == 'qa' ? 'nav-bottbor' : ''"></div>
|
<div :class="current == 'qa' ? 'nav-bottbor' : ''"></div>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-nav">
|
<div class="top-nav">
|
||||||
<el-dropdown placement="bottom" @command="handleCommand">
|
<el-dropdown placement="bottom" @command="handleCommand">
|
||||||
<span class="el-dropdown-link" style="font-size:16px;cursor: pointer;" :style="{color:textColor}">专区</span>
|
<span
|
||||||
|
class="el-dropdown-link"
|
||||||
|
style="font-size: 16px; cursor: pointer"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
>专区</span
|
||||||
|
>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item command="zero">热点论坛</el-dropdown-item>
|
<el-dropdown-item command="zero">热点论坛</el-dropdown-item>
|
||||||
<el-dropdown-item command="one" divided>BOE系列公开课</el-dropdown-item>
|
<el-dropdown-item command="one" divided
|
||||||
<el-dropdown-item command="two" divided>Grow180</el-dropdown-item>
|
>BOE系列公开课</el-dropdown-item
|
||||||
<el-dropdown-item command="three" divided>管理者进阶</el-dropdown-item>
|
>
|
||||||
<el-dropdown-item command="four" divided>U选小课堂</el-dropdown-item>
|
<el-dropdown-item command="two" divided
|
||||||
<el-dropdown-item command="five" divided>社招新员工</el-dropdown-item>
|
>Grow180</el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item command="three" divided
|
||||||
|
>管理者进阶</el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item command="four" divided
|
||||||
|
>U选小课堂</el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item command="five" divided
|
||||||
|
>社招新员工</el-dropdown-item
|
||||||
|
>
|
||||||
<!-- <el-dropdown-item command="six" divided>贡献者专区</el-dropdown-item> -->
|
<!-- <el-dropdown-item command="six" divided>贡献者专区</el-dropdown-item> -->
|
||||||
<el-dropdown-item command="seven" divided>教师专区</el-dropdown-item>
|
<el-dropdown-item command="seven" divided
|
||||||
|
>教师专区</el-dropdown-item
|
||||||
|
>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-nav">
|
<div class="top-nav">
|
||||||
<el-dropdown placement="bottom" @command="handleContributor">
|
<el-dropdown placement="bottom" @command="handleContributor">
|
||||||
<span class="el-dropdown-link" style="font-size:16px;cursor: pointer;" :style="{color:textColor}">贡献者大会</span>
|
<span
|
||||||
|
class="el-dropdown-link"
|
||||||
|
style="font-size: 16px; cursor: pointer"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
>贡献者大会</span
|
||||||
|
>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item command="three">2024</el-dropdown-item>
|
<el-dropdown-item command="three">2024</el-dropdown-item>
|
||||||
<el-dropdown-item command="one" divided>2023</el-dropdown-item>
|
<el-dropdown-item command="one" divided>2023</el-dropdown-item>
|
||||||
@@ -58,18 +113,40 @@
|
|||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="top-nav" :style="{color:textColor}" :class="current == 'follow' ? activeNav : ''">
|
<div
|
||||||
<router-link to="/follow">我的关注
|
class="top-nav"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
:class="current == 'follow' ? activeNav : ''"
|
||||||
|
>
|
||||||
|
<router-link to="/follow"
|
||||||
|
>我的关注
|
||||||
<div :class="current == 'follow' ? 'nav-bottbor' : ''"></div>
|
<div :class="current == 'follow' ? 'nav-bottbor' : ''"></div>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="portal-top-right">
|
<div class="portal-top-right">
|
||||||
<div v-if="goSearch !=10 && userInfo.role === 1" style="position: relative;">
|
<div
|
||||||
<el-input class="portal-input" v-show="!hideSearch" placeholder="搜索全部" style="border-radius: 20px !important; " @keyup.enter.native="searchJump()" clearable maxlength="50" v-model="keyword" >
|
v-if="goSearch != 10 && userInfo.role === 1"
|
||||||
<el-select v-if="current == 'index'" v-model="findType" style="width: 75px; border-radius:20px !important;" slot="prepend" placeholder="请选择">
|
style="position: relative"
|
||||||
|
>
|
||||||
|
<el-input
|
||||||
|
class="portal-input"
|
||||||
|
v-show="!hideSearch"
|
||||||
|
placeholder="搜索全部"
|
||||||
|
style="border-radius: 20px !important"
|
||||||
|
@keyup.enter.native="searchJump()"
|
||||||
|
clearable
|
||||||
|
maxlength="50"
|
||||||
|
v-model="keyword"
|
||||||
|
>
|
||||||
|
<el-select
|
||||||
|
v-if="current == 'index'"
|
||||||
|
v-model="findType"
|
||||||
|
style="width: 75px; border-radius: 20px !important"
|
||||||
|
slot="prepend"
|
||||||
|
placeholder="请选择"
|
||||||
|
>
|
||||||
<el-option label="课程" value="1"></el-option>
|
<el-option label="课程" value="1"></el-option>
|
||||||
<el-option label="案例" value="2"></el-option>
|
<el-option label="案例" value="2"></el-option>
|
||||||
<el-option label="文章" value="3"></el-option>
|
<el-option label="文章" value="3"></el-option>
|
||||||
@@ -77,7 +154,14 @@
|
|||||||
<!-- <el-option label="专区" value="5"></el-option> -->
|
<!-- <el-option label="专区" value="5"></el-option> -->
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-input>
|
</el-input>
|
||||||
<el-button v-show="!hideSearch" class="sear-but" @click="searchJump()" type="primary" size="mini">搜索</el-button>
|
<el-button
|
||||||
|
v-show="!hideSearch"
|
||||||
|
class="sear-but"
|
||||||
|
@click="searchJump()"
|
||||||
|
type="primary"
|
||||||
|
size="mini"
|
||||||
|
>搜索</el-button
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="person-action">
|
<div class="person-action">
|
||||||
@@ -86,11 +170,25 @@
|
|||||||
<el-link v-else class="person-action-index" type="primary" style="margin-right:10px; color:#fff;" :href="`${webBaseUrl}${isTiao ? '/uc/study/task' : '/uc/study/courses'}`" :underline="false">个人中心</el-link> -->
|
<el-link v-else class="person-action-index" type="primary" style="margin-right:10px; color:#fff;" :href="`${webBaseUrl}${isTiao ? '/uc/study/task' : '/uc/study/courses'}`" :underline="false">个人中心</el-link> -->
|
||||||
<!-- <el-link type="primary" @click="logout()" icon="el-icon-switch-button" :underline="false">退出</el-link> -->
|
<!-- <el-link type="primary" @click="logout()" icon="el-icon-switch-button" :underline="false">退出</el-link> -->
|
||||||
<div class="person-action-item">
|
<div class="person-action-item">
|
||||||
<el-badge class="person-action-index" :value="userMsg" :hidden="userMsg == 0">
|
<el-badge
|
||||||
<el-tooltip content="消息" placement="bottom" effect="light" :visible-arrow="false" popper-class="text-tooltip">
|
class="person-action-index"
|
||||||
|
:value="userMsg"
|
||||||
|
:hidden="userMsg == 0"
|
||||||
|
>
|
||||||
|
<el-tooltip
|
||||||
|
content="消息"
|
||||||
|
placement="bottom"
|
||||||
|
effect="light"
|
||||||
|
:visible-arrow="false"
|
||||||
|
popper-class="text-tooltip"
|
||||||
|
>
|
||||||
<!-- <el-link type="primary" :href="`${webBaseUrl}/message/center/index`" :underline="false"> -->
|
<!-- <el-link type="primary" :href="`${webBaseUrl}/message/center/index`" :underline="false"> -->
|
||||||
<router-link to="/message/center/index">
|
<router-link to="/message/center/index">
|
||||||
<svg-icon :style="{color:textColor}" style="margin-right: 0;font-size:22px;" icon-class="messfff"></svg-icon>
|
<svg-icon
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
style="margin-right: 0; font-size: 22px"
|
||||||
|
icon-class="messfff"
|
||||||
|
></svg-icon>
|
||||||
</router-link>
|
</router-link>
|
||||||
<!-- </el-link> -->
|
<!-- </el-link> -->
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
@@ -100,39 +198,93 @@
|
|||||||
<el-dropdown class="person-action-index">
|
<el-dropdown class="person-action-index">
|
||||||
<span class="el-dropdown-link">
|
<span class="el-dropdown-link">
|
||||||
<span :style="{ color: textColor }">学员</span>
|
<span :style="{ color: textColor }">学员</span>
|
||||||
<i :style="{color:textColor}" class="el-icon-arrow-down el-icon--right"></i>
|
<i
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
class="el-icon-arrow-down el-icon--right"
|
||||||
|
></i>
|
||||||
</span>
|
</span>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item><router-link to="/index">学员</router-link></el-dropdown-item>
|
<el-dropdown-item
|
||||||
<el-dropdown-item v-if="identity == 2 || identity == 5" @click.native="setCurIdentity(2)"><router-link to="/need/waitaudit">教师</router-link></el-dropdown-item>
|
><router-link to="/index">学员</router-link></el-dropdown-item
|
||||||
<el-dropdown-item v-if="identity == 3 || identity == 5" ><a :href="managerPath+'/learningpath'">管理员</a></el-dropdown-item>
|
>
|
||||||
|
<el-dropdown-item
|
||||||
|
v-if="identity == 2 || identity == 5"
|
||||||
|
@click.native="setCurIdentity(2)"
|
||||||
|
><router-link to="/need/waitaudit"
|
||||||
|
>教师</router-link
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item v-if="identity == 3 || identity == 5"
|
||||||
|
><a :href="managerPath + '/learningpath'"
|
||||||
|
>管理员</a
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
<div class="person-action-item">
|
<div class="person-action-item">
|
||||||
<el-dropdown>
|
<el-dropdown>
|
||||||
<div class="el-dropdown-link" style="display:flex" :style="{color:textColor}">
|
<div
|
||||||
|
class="el-dropdown-link"
|
||||||
|
style="display: flex"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
>
|
||||||
<div class="person-action-index">
|
<div class="person-action-index">
|
||||||
<div v-if="userInfo.avatar !== ''" class="user-avatar">
|
<div v-if="userInfo.avatar !== ''" class="user-avatar">
|
||||||
<img :src="userInfo.avatar" style="width: 35px;height: 35px;"/>
|
<img
|
||||||
|
:src="userInfo.avatar"
|
||||||
|
style="width: 35px; height: 35px"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="uavatar">
|
<div v-else class="uavatar">
|
||||||
<div v-if="sex === 1 "><img src="../../public/images/Avatarman.png" alt="" style="width: 30px;height: 30px;"></div>
|
<div v-if="sex === 1">
|
||||||
<div v-else><img src="../../public/images/Avatarwoman.png" alt="" style="width: 30px;height: 30px;"></div>
|
<img
|
||||||
|
src="../../public/images/Avatarman.png"
|
||||||
|
alt=""
|
||||||
|
style="width: 30px; height: 30px"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<img
|
||||||
|
src="../../public/images/Avatarwoman.png"
|
||||||
|
alt=""
|
||||||
|
style="width: 30px; height: 30px"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="font-weight: 400;font-size: 16px; margin-top: 8px;">{{userInfo.name}}</div>
|
</div>
|
||||||
|
<div style="font-weight: 400; font-size: 16px; margin-top: 8px">
|
||||||
|
{{ userInfo.name }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item @click.native="setCurIdentity(1)"><a :href="`${webBaseUrl}${isTiao ? '/uc/study/task' : '/uc/study/courses'}`">个人中心</a></el-dropdown-item>
|
<el-dropdown-item @click.native="setCurIdentity(1)"
|
||||||
<el-dropdown-item><router-link :to="'/home/'+userInfo.aid">个人主页</router-link></el-dropdown-item>
|
><a
|
||||||
|
:href="`${webBaseUrl}${
|
||||||
|
isTiao ? '/uc/study/task' : '/uc/study/courses'
|
||||||
|
}`"
|
||||||
|
>个人中心</a
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item
|
||||||
|
><router-link :to="'/home/' + userInfo.aid"
|
||||||
|
>个人主页</router-link
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
<div class="person-action-item">
|
<div class="person-action-item">
|
||||||
|
<div
|
||||||
<div class="person-action-index pointer" :style="{color:textColor}" @click="logout()">
|
class="person-action-index pointer"
|
||||||
<svg-icon style="margin-right: 4px;font-size:16px;" icon-class="white-out"></svg-icon>登出
|
:style="{ color: textColor }"
|
||||||
|
@click="logout()"
|
||||||
|
>
|
||||||
|
<svg-icon
|
||||||
|
style="margin-right: 4px; font-size: 16px"
|
||||||
|
icon-class="white-out"
|
||||||
|
></svg-icon
|
||||||
|
>登出
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -142,18 +294,18 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters, mapActions } from 'vuex';
|
import { mapGetters, mapActions } from "vuex";
|
||||||
import apiMessage from '@/api/system/message.js';
|
import apiMessage from "@/api/system/message.js";
|
||||||
import popup from '@/components/AlertPopup.vue';
|
import popup from "@/components/AlertPopup.vue";
|
||||||
import yearMedal from '@/components/Popup/China2023.vue';
|
import yearMedal from "@/components/Popup/China2023.vue";
|
||||||
import apiBoeCourse from '@/api/boe/course.js';
|
import apiBoeCourse from "@/api/boe/course.js";
|
||||||
import { userAvatarText } from "@/utils/tools.js";
|
import { userAvatarText } from "@/utils/tools.js";
|
||||||
import apiCase from "@/api/modules/cases.js";
|
import apiCase from "@/api/modules/cases.js";
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
current: {
|
current: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: "",
|
||||||
},
|
},
|
||||||
hideSearch: {
|
hideSearch: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@@ -161,7 +313,7 @@ export default {
|
|||||||
},
|
},
|
||||||
textColor: {
|
textColor: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: "",
|
||||||
},
|
},
|
||||||
goSearch: {
|
goSearch: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@@ -169,63 +321,70 @@ export default {
|
|||||||
},
|
},
|
||||||
keywords: {
|
keywords: {
|
||||||
type: String,
|
type: String,
|
||||||
default:''
|
default: "",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
components: { popup, yearMedal },
|
components: { popup, yearMedal },
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters(['userInfo','curIdentity', 'userMsg','identity','studyTaskCount']),
|
...mapGetters([
|
||||||
|
"userInfo",
|
||||||
|
"curIdentity",
|
||||||
|
"userMsg",
|
||||||
|
"identity",
|
||||||
|
"studyTaskCount",
|
||||||
|
]),
|
||||||
|
|
||||||
avatarText() {
|
avatarText() {
|
||||||
return userAvatarText(this.userInfo.name);
|
return userAvatarText(this.userInfo.name);
|
||||||
},
|
},
|
||||||
activeNav() {
|
activeNav() {
|
||||||
return {
|
return {
|
||||||
'top-nav-active-blue': this.textColor=='#000000',
|
"top-nav-active-blue": this.textColor == "#000000",
|
||||||
'top-nav-active-white': this.textColor=='#fff' || this.textColor=='#ffffff',
|
"top-nav-active-white":
|
||||||
}
|
this.textColor == "#fff" || this.textColor == "#ffffff",
|
||||||
}
|
};
|
||||||
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
keywords(newval) {
|
keywords(newval) {
|
||||||
console.log(newval, 9999);
|
console.log(newval, 9999);
|
||||||
if(this.findType == '1'){
|
if (this.findType == "1") {
|
||||||
this.keyword = newval
|
this.keyword = newval;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
popupConfig: {},
|
popupConfig: {},
|
||||||
ctx: process.env.VUE_APP_PUBLIC_PATH,
|
ctx: process.env.VUE_APP_PUBLIC_PATH,
|
||||||
managerPath: process.env.VUE_APP_MANAGER_PATH,
|
managerPath: process.env.VUE_APP_MANAGER_PATH,
|
||||||
fileBaseUrl: process.env.VUE_APP_FILE_BASE_URL,
|
fileBaseUrl: process.env.VUE_APP_FILE_BASE_URL,
|
||||||
findType: '1',
|
findType: "1",
|
||||||
keyword: '',
|
keyword: "",
|
||||||
isTiao: false,
|
isTiao: false,
|
||||||
sex:'',
|
sex: "",
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.sex = this.userInfo.sex;
|
this.sex = this.userInfo.sex;
|
||||||
this.$store.dispatch('refrashMsg');
|
this.$store.dispatch("refrashMsg");
|
||||||
this.loadBoeData();
|
this.loadBoeData();
|
||||||
// console.log('this.userInfo::',this.userInfo)
|
// console.log('this.userInfo::',this.userInfo)
|
||||||
//this.loadPopupConfig();
|
//this.loadPopupConfig();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleChangeCourse() {
|
handleChangeCourse() {
|
||||||
const paths = ["/course","/qualityCourse"]
|
const paths = ["/course", "/qualityCourse"];
|
||||||
// 如果是 课程 和 精品课程, 那么就不再重定向
|
// 如果是 课程 和 精品课程, 那么就不再重定向
|
||||||
const needReload = paths.findIndex(e=> e === this.$route.path) === -1
|
const needReload = paths.findIndex((e) => e === this.$route.path) === -1;
|
||||||
if (needReload) this.$router.push({path: paths[0]})
|
if (needReload) this.$router.push({ path: paths[0] });
|
||||||
},
|
},
|
||||||
|
|
||||||
setCurIdentity(iden) {
|
setCurIdentity(iden) {
|
||||||
this.$store.dispatch('SetCurIdentity',iden);
|
this.$store.dispatch("SetCurIdentity", iden);
|
||||||
},
|
},
|
||||||
tomy() {
|
tomy() {
|
||||||
console.log('lll')
|
console.log("lll");
|
||||||
},
|
},
|
||||||
loadBoeData() {
|
loadBoeData() {
|
||||||
if (this.studyTaskCount > 0) {
|
if (this.studyTaskCount > 0) {
|
||||||
@@ -253,13 +412,13 @@ export default {
|
|||||||
let obj = {
|
let obj = {
|
||||||
one: urlPre + "/web/contributornew/index",
|
one: urlPre + "/web/contributornew/index",
|
||||||
two: urlPre + "/web/contributor/index",
|
two: urlPre + "/web/contributor/index",
|
||||||
three: urlPre + "/web/contributor_2024/index"
|
three: urlPre + "/web/contributor_2024/index",
|
||||||
};
|
};
|
||||||
window.open(obj[val]);
|
window.open(obj[val]);
|
||||||
},
|
},
|
||||||
handleCommand(val) {
|
handleCommand(val) {
|
||||||
if (val === "four") {
|
if (val === "four") {
|
||||||
window.open("https://m.qingxuetang.com/x/?appId=qxtcorp306130")
|
window.open("https://m.qingxuetang.com/x/?appId=qxtcorp306130");
|
||||||
// this.$emit('showClass',true)
|
// this.$emit('showClass',true)
|
||||||
} else {
|
} else {
|
||||||
let urlPre = window.location.protocol + "//" + window.location.host;
|
let urlPre = window.location.protocol + "//" + window.location.host;
|
||||||
@@ -270,66 +429,84 @@ export default {
|
|||||||
two: urlPre + "/grow180/login",
|
two: urlPre + "/grow180/login",
|
||||||
three: this.webBaseUrl + "/study/index?study=1",
|
three: this.webBaseUrl + "/study/index?study=1",
|
||||||
// four: 'https://m.qingxuetang.com/x/?appId=qxtcorp306130',
|
// four: 'https://m.qingxuetang.com/x/?appId=qxtcorp306130',
|
||||||
five: urlPre + "/boe/new-employee/index.html",
|
five: urlPre + "/new-employee/welcome",
|
||||||
six: urlPre + "/web/contributor/index",
|
six: urlPre + "/web/contributor/index",
|
||||||
seven: this.webBaseUrl + '/grateful/index'
|
seven: this.webBaseUrl + "/grateful/index",
|
||||||
};
|
};
|
||||||
window.open(obj[val]);
|
window.open(obj[val]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleUcCommand(val) {
|
handleUcCommand(val) {
|
||||||
if (val == 'uc') {
|
if (val == "uc") {
|
||||||
window.location.href = `${this.webBaseUrl}${this.isTiao ? '/uc/study/task' : '/uc/study/courses'}`;
|
window.location.href = `${this.webBaseUrl}${
|
||||||
} else if (val == 'logout') {
|
this.isTiao ? "/uc/study/task" : "/uc/study/courses"
|
||||||
|
}`;
|
||||||
|
} else if (val == "logout") {
|
||||||
this.logout();
|
this.logout();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
searchJump() {
|
searchJump() {
|
||||||
this.$emit('type1', '')
|
this.$emit("type1", "");
|
||||||
if(this.current == 'index') {
|
if (this.current == "index") {
|
||||||
if (this.findType == '1') {
|
if (this.findType == "1") {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// 课程
|
// 课程
|
||||||
location.href = `${this.webBaseUrl}/course?keyword=${this.keyword}`;
|
location.href = `${this.webBaseUrl}/course?keyword=${this.keyword}`;
|
||||||
//window.open(`${this.webBaseUrl}/course?keyword=${this.keyword}`);
|
//window.open(`${this.webBaseUrl}/course?keyword=${this.keyword}`);
|
||||||
} else if (this.findType == '2') {
|
} else if (this.findType == "2") {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// 案例
|
// 案例
|
||||||
location.href = `${this.webBaseUrl}/case?keyword=${this.keyword}`;
|
location.href = `${this.webBaseUrl}/case?keyword=${this.keyword}`;
|
||||||
//window.open(`${this.webBaseUrl}/case?keyword=${this.keyword}`);
|
//window.open(`${this.webBaseUrl}/case?keyword=${this.keyword}`);
|
||||||
} else if (this.findType == '3') {
|
} else if (this.findType == "3") {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
//文章
|
//文章
|
||||||
location.href = `${this.webBaseUrl}/article?keyword=${this.keyword}`;
|
location.href = `${this.webBaseUrl}/article?keyword=${this.keyword}`;
|
||||||
//window.open(`${this.webBaseUrl}/article?keyword=${this.keyword}`);
|
//window.open(`${this.webBaseUrl}/article?keyword=${this.keyword}`);
|
||||||
} else if (this.findType == '4') {
|
} else if (this.findType == "4") {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// 问答
|
// 问答
|
||||||
location.href = `${this.webBaseUrl}/qa?keyword=${this.keyword}`;
|
location.href = `${this.webBaseUrl}/qa?keyword=${this.keyword}`;
|
||||||
//window.open(`${this.webBaseUrl}/qa?keyword=${this.keyword}`);
|
//window.open(`${this.webBaseUrl}/qa?keyword=${this.keyword}`);
|
||||||
} else if (this.findType == '5') {
|
} else if (this.findType == "5") {
|
||||||
// 专区,专区要单独的写,因为不是一个系统呀
|
// 专区,专区要单独的写,因为不是一个系统呀
|
||||||
window.open(`${this.webBaseUrl}/zone?keyword=${this.keyword}`);
|
window.open(`${this.webBaseUrl}/zone?keyword=${this.keyword}`);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$emit('emitInput',this.keyword)
|
this.$emit("emitInput", this.keyword);
|
||||||
if (this.goSearch == 1) {
|
if (this.goSearch == 1) {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// 课程
|
// 课程
|
||||||
location.href = `${this.webBaseUrl}/course?keyword=${this.keyword}`;
|
location.href = `${this.webBaseUrl}/course?keyword=${this.keyword}`;
|
||||||
} else if (this.goSearch == 2) {
|
} else if (this.goSearch == 2) {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// 案例
|
// 案例
|
||||||
// location.href=`${this.webBaseUrl}/case?keyword=${this.keyword}`;
|
// location.href=`${this.webBaseUrl}/case?keyword=${this.keyword}`;
|
||||||
this.$router.push(`/case?keyword=${this.keyword}`)
|
this.$router.push(`/case?keyword=${this.keyword}`);
|
||||||
//window.open(`${this.webBaseUrl}/case?keyword=${this.keyword}`);
|
//window.open(`${this.webBaseUrl}/case?keyword=${this.keyword}`);
|
||||||
} else if (this.goSearch == 3) {
|
} else if (this.goSearch == 3) {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
//文章
|
//文章
|
||||||
location.href = `${this.webBaseUrl}/article?keyword=${this.keyword}`;
|
location.href = `${this.webBaseUrl}/article?keyword=${this.keyword}`;
|
||||||
//window.open(`${this.webBaseUrl}/article?keyword=${this.keyword}`);
|
//window.open(`${this.webBaseUrl}/article?keyword=${this.keyword}`);
|
||||||
} else if (this.goSearch == 4) {
|
} else if (this.goSearch == 4) {
|
||||||
if(this.keyword==''){return;}
|
if (this.keyword == "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// 问答
|
// 问答
|
||||||
location.href = `${this.webBaseUrl}/qa?keyword=${this.keyword}`;
|
location.href = `${this.webBaseUrl}/qa?keyword=${this.keyword}`;
|
||||||
//window.open(`${this.webBaseUrl}/qa?keyword=${this.keyword}`);
|
//window.open(`${this.webBaseUrl}/qa?keyword=${this.keyword}`);
|
||||||
@@ -338,17 +515,20 @@ export default {
|
|||||||
window.open(`${this.webBaseUrl}/zone?keyword=${this.keyword}`);
|
window.open(`${this.webBaseUrl}/zone?keyword=${this.keyword}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
logout() {
|
logout() {
|
||||||
this.$confirm('您确定要退出系统吗?', '提示', {
|
this.$confirm("您确定要退出系统吗?", "提示", {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: "确定",
|
||||||
cancelButtonText: '取消',
|
cancelButtonText: "取消",
|
||||||
type: 'warning'
|
type: "warning",
|
||||||
}).then(() => {
|
})
|
||||||
this.$store.dispatch('LogOut').then(() => {
|
.then(() => {
|
||||||
|
this.$store.dispatch("LogOut").then(() => {
|
||||||
//location.href = this.webBaseUrl + '/login';
|
//location.href = this.webBaseUrl + '/login';
|
||||||
sessionStorage.setItem('dialog_session_show'+this.userInfo.aid,null); // 清除兴趣采集的"关闭"缓存
|
sessionStorage.setItem(
|
||||||
|
"dialog_session_show" + this.userInfo.aid,
|
||||||
|
null
|
||||||
|
); // 清除兴趣采集的"关闭"缓存
|
||||||
location.href = process.env.VUE_APP_LOGIN_URL;
|
location.href = process.env.VUE_APP_LOGIN_URL;
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
@@ -356,21 +536,20 @@ export default {
|
|||||||
},
|
},
|
||||||
//获取未读消息数量
|
//获取未读消息数量
|
||||||
getMsgNum() {
|
getMsgNum() {
|
||||||
apiMessage.isRead().then(res => {
|
apiMessage.isRead().then((res) => {
|
||||||
if (res.status == 200) {
|
if (res.status == 200) {
|
||||||
this.msgNum = res.result;
|
this.msgNum = res.result;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped rel="stylesheet/scss" lang="scss">
|
<style scoped rel="stylesheet/scss" lang="scss">
|
||||||
|
|
||||||
::v-deep .el-dropdown-menu__item:not(.is-disabled):hover {
|
::v-deep .el-dropdown-menu__item:not(.is-disabled):hover {
|
||||||
background-color: #fff !important;
|
background-color: #fff !important;
|
||||||
color: #0059FF !important;
|
color: #0059ff !important;
|
||||||
}
|
}
|
||||||
::v-deep.el-dropdown-menu {
|
::v-deep.el-dropdown-menu {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -383,21 +562,25 @@ text-align: center;
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
.top-nav-active-blue {
|
.top-nav-active-blue {
|
||||||
color: #387DF7;
|
color: #387df7;
|
||||||
a{color:#387DF7;}
|
a {
|
||||||
|
color: #387df7;
|
||||||
|
}
|
||||||
div {
|
div {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
top: 75%;
|
top: 75%;
|
||||||
left: 13%;
|
left: 13%;
|
||||||
background: #387DF7;
|
background: #387df7;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.top-nav-active-white {
|
.top-nav-active-white {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
a{color:#fff;}
|
a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
div {
|
div {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
@@ -440,7 +623,6 @@ text-align: center;
|
|||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.portal-top-logo {
|
.portal-top-logo {
|
||||||
|
|
||||||
}
|
}
|
||||||
.portal-top-nav {
|
.portal-top-nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -542,7 +724,6 @@ text-align: center;
|
|||||||
::v-deep .el-badge {
|
::v-deep .el-badge {
|
||||||
.el-badge__content {
|
.el-badge__content {
|
||||||
top: 0px;
|
top: 0px;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -563,7 +744,6 @@ text-align: center;
|
|||||||
}
|
}
|
||||||
::v-deep .el-badge {
|
::v-deep .el-badge {
|
||||||
margin-top: 0 !important;
|
margin-top: 0 !important;
|
||||||
|
|
||||||
}
|
}
|
||||||
::v-deep .el-link.el-link--primary:hover {
|
::v-deep .el-link.el-link--primary:hover {
|
||||||
color: #588afc;
|
color: #588afc;
|
||||||
|
|||||||
@@ -4,28 +4,60 @@
|
|||||||
<div class="xtop-content">
|
<div class="xtop-content">
|
||||||
<div class="xtop-left">
|
<div class="xtop-left">
|
||||||
<div class="xtop-logo">
|
<div class="xtop-logo">
|
||||||
<router-link class="routerLink" to="/index"><img src="../../../assets/logo/logo-white.png" style="width:161px;height:27px;" /></router-link>
|
<router-link class="routerLink" to="/index"
|
||||||
|
><img
|
||||||
|
src="../../../assets/logo/logo-white.png"
|
||||||
|
style="width: 161px; height: 27px"
|
||||||
|
/></router-link>
|
||||||
</div>
|
</div>
|
||||||
<div class="xtop-nav" v-if="userInfo.role === 1">
|
<div class="xtop-nav" v-if="userInfo.role === 1">
|
||||||
<div class="xtop-nav-item"><a :href="`${webBaseUrl}/index`">首页</a></div>
|
<div class="xtop-nav-item">
|
||||||
<div class="xtop-nav-item"><a :href="`${webBaseUrl}/course`">课程</a></div>
|
<a :href="`${webBaseUrl}/index`">首页</a>
|
||||||
<div class="xtop-nav-item"><a :href="`${webBaseUrl}/case`">案例</a></div>
|
</div>
|
||||||
<div class="xtop-nav-item"><a :href="`${webBaseUrl}/article`">文章</a></div>
|
<div class="xtop-nav-item">
|
||||||
<div class="xtop-nav-item"><a :href="`${webBaseUrl}/qa`">问答</a></div>
|
<a :href="`${webBaseUrl}/course`">课程</a>
|
||||||
|
</div>
|
||||||
|
<div class="xtop-nav-item">
|
||||||
|
<a :href="`${webBaseUrl}/case`">案例</a>
|
||||||
|
</div>
|
||||||
|
<div class="xtop-nav-item">
|
||||||
|
<a :href="`${webBaseUrl}/article`">文章</a>
|
||||||
|
</div>
|
||||||
|
<div class="xtop-nav-item">
|
||||||
|
<a :href="`${webBaseUrl}/qa`">问答</a>
|
||||||
|
</div>
|
||||||
<div class="xtop-nav-item">
|
<div class="xtop-nav-item">
|
||||||
<el-dropdown placement="bottom" @command="handleCommand">
|
<el-dropdown placement="bottom" @command="handleCommand">
|
||||||
<span class="el-dropdown-link" style="color:#fff;font-size:16px;cursor: pointer;">专区</span>
|
<span
|
||||||
|
class="el-dropdown-link"
|
||||||
|
style="color: #fff; font-size: 16px; cursor: pointer"
|
||||||
|
>专区</span
|
||||||
|
>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item command='one'>BOE系列公开课</el-dropdown-item>
|
<el-dropdown-item command="one"
|
||||||
<el-dropdown-item command='two' divided>Grow180</el-dropdown-item>
|
>BOE系列公开课</el-dropdown-item
|
||||||
<el-dropdown-item command='three' divided>管理者进阶</el-dropdown-item>
|
>
|
||||||
<el-dropdown-item command='for' divided>U选小课堂</el-dropdown-item>
|
<el-dropdown-item command="two" divided
|
||||||
<el-dropdown-item command='five' divided>社招新员工</el-dropdown-item>
|
>Grow180</el-dropdown-item
|
||||||
<el-dropdown-item command="seven" divided>教师专区</el-dropdown-item>
|
>
|
||||||
|
<el-dropdown-item command="three" divided
|
||||||
|
>管理者进阶</el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item command="for" divided
|
||||||
|
>U选小课堂</el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item command="five" divided
|
||||||
|
>社招新员工</el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item command="seven" divided
|
||||||
|
>教师专区</el-dropdown-item
|
||||||
|
>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
<div class="xtop-nav-item"><a :href="`${webBaseUrl}/follow`">我的关注</a></div>
|
<div class="xtop-nav-item">
|
||||||
|
<a :href="`${webBaseUrl}/follow`">我的关注</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="xtop-right">
|
<div class="xtop-right">
|
||||||
@@ -41,40 +73,114 @@
|
|||||||
</el-input> -->
|
</el-input> -->
|
||||||
<!-- </div> -->
|
<!-- </div> -->
|
||||||
<div>
|
<div>
|
||||||
<el-badge :value="userMsg" :hidden="userMsg==0" class="message-count">
|
<el-badge
|
||||||
<el-link type="primary" :href="`${webBaseUrl}/message/center/index`" :underline="false">
|
:value="userMsg"
|
||||||
<svg-icon style="margin-right: 0;font-size:22px;" icon-class="messfff"></svg-icon>
|
:hidden="userMsg == 0"
|
||||||
|
class="message-count"
|
||||||
|
>
|
||||||
|
<el-link
|
||||||
|
type="primary"
|
||||||
|
:href="`${webBaseUrl}/message/center/index`"
|
||||||
|
:underline="false"
|
||||||
|
>
|
||||||
|
<svg-icon
|
||||||
|
style="margin-right: 0; font-size: 22px"
|
||||||
|
icon-class="messfff"
|
||||||
|
></svg-icon>
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-badge>
|
</el-badge>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<el-dropdown class="person-action-index" style="margin-left: 44px;">
|
<el-dropdown class="person-action-index" style="margin-left: 44px">
|
||||||
<span class="el-dropdown-link">
|
<span class="el-dropdown-link">
|
||||||
<span v-if="current == 'qa'" style="color: #333;">{{curIdentity==3? '管理员':curIdentity==2? '教师':'学员'}}</span>
|
<span v-if="current == 'qa'" style="color: #333">{{
|
||||||
<span v-else style="color: #fff;">{{curIdentity==3? '管理员':curIdentity==2? '教师':'学员'}}</span><i class="el-icon-arrow-down el-icon--right"></i>
|
curIdentity == 3
|
||||||
|
? "管理员"
|
||||||
|
: curIdentity == 2
|
||||||
|
? "教师"
|
||||||
|
: "学员"
|
||||||
|
}}</span>
|
||||||
|
<span v-else style="color: #fff">{{
|
||||||
|
curIdentity == 3
|
||||||
|
? "管理员"
|
||||||
|
: curIdentity == 2
|
||||||
|
? "教师"
|
||||||
|
: "学员"
|
||||||
|
}}</span
|
||||||
|
><i class="el-icon-arrow-down el-icon--right"></i>
|
||||||
</span>
|
</span>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item><router-link to="/index">学员</router-link></el-dropdown-item>
|
<el-dropdown-item
|
||||||
<el-dropdown-item v-if="identity == 2 || identity == 5" @click.native="setCurIdentity(2)"><router-link to="/need/waitaudit">教师</router-link></el-dropdown-item>
|
><router-link to="/index">学员</router-link></el-dropdown-item
|
||||||
<el-dropdown-item v-if="identity == 3 || identity == 5" @click.native="setCurIdentity(3)"><a :href="managerPath+'/learningpath'">管理员</a></el-dropdown-item>
|
>
|
||||||
|
<el-dropdown-item
|
||||||
|
v-if="identity == 2 || identity == 5"
|
||||||
|
@click.native="setCurIdentity(2)"
|
||||||
|
><router-link to="/need/waitaudit"
|
||||||
|
>教师</router-link
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item
|
||||||
|
v-if="identity == 3 || identity == 5"
|
||||||
|
@click.native="setCurIdentity(3)"
|
||||||
|
><a :href="managerPath + '/learningpath'"
|
||||||
|
>管理员</a
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<el-dropdown>
|
<el-dropdown>
|
||||||
<div style="margin-left: 50px;color: #fff;font-size: 14px;cursor: pointer;">
|
<div
|
||||||
<el-avatar v-if="userInfo.avatar !== ''" :src="userInfo.avatar" style="vertical-align: middle;width:40px;height:40px;margin-right:10px;"></el-avatar>
|
style="
|
||||||
<span v-else style="display: inline-block;">
|
margin-left: 50px;
|
||||||
<img v-if="userInfo.sex === 1 " src="../../../../public/images/Avatarman.png" alt="" style="width: 30px;height: 30px;vertical-align: middle;">
|
color: #fff;
|
||||||
<img v-else src="../../../../public/images/Avatarwoman.png" alt="" style="width: 30px;height: 30px;vertical-align: middle;">
|
font-size: 14px;
|
||||||
|
cursor: pointer;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<el-avatar
|
||||||
|
v-if="userInfo.avatar !== ''"
|
||||||
|
:src="userInfo.avatar"
|
||||||
|
style="
|
||||||
|
vertical-align: middle;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
margin-right: 10px;
|
||||||
|
"
|
||||||
|
></el-avatar>
|
||||||
|
<span v-else style="display: inline-block">
|
||||||
|
<img
|
||||||
|
v-if="userInfo.sex === 1"
|
||||||
|
src="../../../../public/images/Avatarman.png"
|
||||||
|
alt=""
|
||||||
|
style="width: 30px; height: 30px; vertical-align: middle"
|
||||||
|
/>
|
||||||
|
<img
|
||||||
|
v-else
|
||||||
|
src="../../../../public/images/Avatarwoman.png"
|
||||||
|
alt=""
|
||||||
|
style="width: 30px; height: 30px; vertical-align: middle"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
{{ userInfo.name }}
|
{{ userInfo.name }}
|
||||||
</div>
|
</div>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item @click.native="setCurIdentity(1)"><a :href="`${webBaseUrl}${isTiao ? '/uc/study/task' : '/uc/study/courses'}`">个人中心</a></el-dropdown-item>
|
<el-dropdown-item @click.native="setCurIdentity(1)"
|
||||||
<el-dropdown-item><router-link :to="'/home/'+userInfo.aid">个人主页</router-link></el-dropdown-item>
|
><a
|
||||||
|
:href="`${webBaseUrl}${
|
||||||
|
isTiao ? '/uc/study/task' : '/uc/study/courses'
|
||||||
|
}`"
|
||||||
|
>个人中心</a
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
|
<el-dropdown-item
|
||||||
|
><router-link :to="'/home/' + userInfo.aid"
|
||||||
|
>个人主页</router-link
|
||||||
|
></el-dropdown-item
|
||||||
|
>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
@@ -90,19 +196,52 @@
|
|||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div> -->
|
</div> -->
|
||||||
<div class="person-action">
|
<div class="person-action">
|
||||||
<el-button @click="logout()" type="text"><svg-icon style="margin-right: 4px;font-size:16px;" icon-class="white-out"></svg-icon>登出</el-button>
|
<el-button @click="logout()" type="text"
|
||||||
|
><svg-icon
|
||||||
|
style="margin-right: 4px; font-size: 16px"
|
||||||
|
icon-class="white-out"
|
||||||
|
></svg-icon
|
||||||
|
>登出</el-button
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-dialog title="修改登录密码" :close-on-click-modal="false" :visible.sync="pwdDlg.show" width="600px" custom-class="g-dialog">
|
<el-dialog
|
||||||
|
title="修改登录密码"
|
||||||
|
:close-on-click-modal="false"
|
||||||
|
:visible.sync="pwdDlg.show"
|
||||||
|
width="600px"
|
||||||
|
custom-class="g-dialog"
|
||||||
|
>
|
||||||
<el-form :model="pwdDlg" size="medium" label-width="100px">
|
<el-form :model="pwdDlg" size="medium" label-width="100px">
|
||||||
<el-form-item label="当前密码"><el-input v-model="pwdDlg.nowPwd" type="password" placeholder="当前的登录密码" :style="{ width: '100%' }"></el-input></el-form-item>
|
<el-form-item label="当前密码"
|
||||||
|
><el-input
|
||||||
|
v-model="pwdDlg.nowPwd"
|
||||||
|
type="password"
|
||||||
|
placeholder="当前的登录密码"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
></el-input
|
||||||
|
></el-form-item>
|
||||||
<el-form-item label="新密码">
|
<el-form-item label="新密码">
|
||||||
<el-input v-model="pwdDlg.newPwd" type="password" placeholder="新的密码" :maxlength="20" clearable :style="{ width: '100%' }"></el-input>
|
<el-input
|
||||||
|
v-model="pwdDlg.newPwd"
|
||||||
|
type="password"
|
||||||
|
placeholder="新的密码"
|
||||||
|
:maxlength="20"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="密码确认">
|
<el-form-item label="密码确认">
|
||||||
<el-input v-model="pwdDlg.rePwd" type="password" placeholder="和上面新密码一致" :maxlength="20" clearable :style="{ width: '100%' }"></el-input>
|
<el-input
|
||||||
|
v-model="pwdDlg.rePwd"
|
||||||
|
type="password"
|
||||||
|
placeholder="和上面新密码一致"
|
||||||
|
:maxlength="20"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
@@ -110,12 +249,35 @@
|
|||||||
<el-button type="primary" @click="submitPwd">提交修改</el-button>
|
<el-button type="primary" @click="submitPwd">提交修改</el-button>
|
||||||
</span>
|
</span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<el-dialog custom-class="dialog-signin" :show-close="false" :visible.sync="signInShow" :close-on-click-modal="false" width="520px" top="8vh">
|
<el-dialog
|
||||||
|
custom-class="dialog-signin"
|
||||||
|
:show-close="false"
|
||||||
|
:visible.sync="signInShow"
|
||||||
|
:close-on-click-modal="false"
|
||||||
|
width="520px"
|
||||||
|
top="8vh"
|
||||||
|
>
|
||||||
<div>
|
<div>
|
||||||
<img usemap="#HotMap" src="/pc/ad/dlg.png" style="width:416px;height: 576px;">
|
<img
|
||||||
|
usemap="#HotMap"
|
||||||
|
src="/pc/ad/dlg.png"
|
||||||
|
style="width: 416px; height: 576px"
|
||||||
|
/>
|
||||||
<map name="HotMap" id="HotMap">
|
<map name="HotMap" id="HotMap">
|
||||||
<area shape="circle" name="link1" coords="380,40,30" @click="closeSignDlg" href="javascript:;" />
|
<area
|
||||||
<area shape="rectangle" name="link2" coords="150,400,300,500" target="_blank" href="https://boehrsurvey.wjx.cn/vm/PmreuFN.aspx" />
|
shape="circle"
|
||||||
|
name="link1"
|
||||||
|
coords="380,40,30"
|
||||||
|
@click="closeSignDlg"
|
||||||
|
href="javascript:;"
|
||||||
|
/>
|
||||||
|
<area
|
||||||
|
shape="rectangle"
|
||||||
|
name="link2"
|
||||||
|
coords="150,400,300,500"
|
||||||
|
target="_blank"
|
||||||
|
href="https://boehrsurvey.wjx.cn/vm/PmreuFN.aspx"
|
||||||
|
/>
|
||||||
</map>
|
</map>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
@@ -148,9 +310,7 @@
|
|||||||
内容涵盖:领导力、市场营销、职场技能、财务知识、法律常识、人力资源、经典国学、人文社科
|
内容涵盖:领导力、市场营销、职场技能、财务知识、法律常识、人力资源、经典国学、人文社科
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="text_msg">
|
<div class="text_msg">创新力专区课程版权已到期!</div>
|
||||||
创新力专区课程版权已到期!
|
|
||||||
</div>
|
|
||||||
<!-- <div class="cyl" @click="cylClick">
|
<!-- <div class="cyl" @click="cylClick">
|
||||||
<div class="tyl_title">
|
<div class="tyl_title">
|
||||||
<img
|
<img
|
||||||
@@ -175,12 +335,12 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from "vuex";
|
||||||
import desk from '@/api/console.js';
|
import desk from "@/api/console.js";
|
||||||
import Cookies from 'vue-cookies';
|
import Cookies from "vue-cookies";
|
||||||
import InterestCollection from '@/components/Portal/interestCollection.vue'
|
import InterestCollection from "@/components/Portal/interestCollection.vue";
|
||||||
import GuideBox from '@/components/Portal/guideBox.vue'
|
import GuideBox from "@/components/Portal/guideBox.vue";
|
||||||
import gonggao from '@/components/Gonggao.vue';
|
import gonggao from "@/components/Gonggao.vue";
|
||||||
export default {
|
export default {
|
||||||
components: { InterestCollection, GuideBox, gonggao },
|
components: { InterestCollection, GuideBox, gonggao },
|
||||||
data() {
|
data() {
|
||||||
@@ -191,28 +351,28 @@ export default {
|
|||||||
interestShow: false,
|
interestShow: false,
|
||||||
checked: true,
|
checked: true,
|
||||||
signInShow: false,
|
signInShow: false,
|
||||||
signLocalTimesKey:'xboe_sign_dlg_times',
|
signLocalTimesKey: "xboe_sign_dlg_times",
|
||||||
keyword: '',
|
keyword: "",
|
||||||
findType: '1',
|
findType: "1",
|
||||||
mouseIndex: 0,
|
mouseIndex: 0,
|
||||||
activeIndex: '',
|
activeIndex: "",
|
||||||
msg: { num: 0 },
|
msg: { num: 0 },
|
||||||
user: { name: '' },
|
user: { name: "" },
|
||||||
pwdDlg: { show: false, newPwd: '', nowPwd: '', rePwd: '' },
|
pwdDlg: { show: false, newPwd: "", nowPwd: "", rePwd: "" },
|
||||||
current:1
|
current: 1,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters(['userInfo', 'userMsg','curIdentity','identity']),
|
...mapGetters(["userInfo", "userMsg", "curIdentity", "identity"]),
|
||||||
showName: function () {
|
showName: function () {
|
||||||
//console.log('name='+this.name);
|
//console.log('name='+this.name);
|
||||||
//console.log('loginName='+this.loginName);
|
//console.log('loginName='+this.loginName);
|
||||||
if (this.userInfo.name != '') {
|
if (this.userInfo.name != "") {
|
||||||
return this.userInfo.name;
|
return this.userInfo.name;
|
||||||
} else {
|
} else {
|
||||||
return this.userInfo.userName;
|
return this.userInfo.userName;
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.interestShow = true;
|
this.interestShow = true;
|
||||||
@@ -238,7 +398,7 @@ export default {
|
|||||||
// localStorage.setItem(this.$xpage.constants.newLoginKey,0);
|
// localStorage.setItem(this.$xpage.constants.newLoginKey,0);
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
this.$store.dispatch('refrashMsg');
|
this.$store.dispatch("refrashMsg");
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
tylClick() {
|
tylClick() {
|
||||||
@@ -248,7 +408,7 @@ export default {
|
|||||||
window.open("https://u.boe.com/pc/course?keyword=创新力专区");
|
window.open("https://u.boe.com/pc/course?keyword=创新力专区");
|
||||||
},
|
},
|
||||||
setCurIdentity(iden) {
|
setCurIdentity(iden) {
|
||||||
this.$store.dispatch('SetCurIdentity',iden);
|
this.$store.dispatch("SetCurIdentity", iden);
|
||||||
},
|
},
|
||||||
closeSignDlg() {
|
closeSignDlg() {
|
||||||
this.signInShow = false;
|
this.signInShow = false;
|
||||||
@@ -271,14 +431,14 @@ export default {
|
|||||||
two: urlPre + "/grow180/login",
|
two: urlPre + "/grow180/login",
|
||||||
three: this.webBaseUrl + "/study/index?study=1",
|
three: this.webBaseUrl + "/study/index?study=1",
|
||||||
// four: 'https://m.qingxuetang.com/x/?appId=qxtcorp306130',
|
// four: 'https://m.qingxuetang.com/x/?appId=qxtcorp306130',
|
||||||
five: urlPre + "/boe/new-employee/index.html",
|
five: urlPre + "/new-employee/welcome",
|
||||||
seven: this.webBaseUrl + '/grateful/index'
|
seven: this.webBaseUrl + "/grateful/index",
|
||||||
};
|
};
|
||||||
window.open(obj[val]);
|
window.open(obj[val]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleUcCommand(val) {
|
handleUcCommand(val) {
|
||||||
if(val == 'logout'){
|
if (val == "logout") {
|
||||||
this.logout();
|
this.logout();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -289,36 +449,39 @@ export default {
|
|||||||
this.pwdDlg.show = true;
|
this.pwdDlg.show = true;
|
||||||
},
|
},
|
||||||
submitPwd() {
|
submitPwd() {
|
||||||
if (this.pwdDlg.nowPwd == '' || (this.pwdDlg.newPwd == '') | (this.pwdDlg.rePwd == '')) {
|
if (
|
||||||
|
this.pwdDlg.nowPwd == "" ||
|
||||||
|
(this.pwdDlg.newPwd == "") | (this.pwdDlg.rePwd == "")
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let params = {
|
let params = {
|
||||||
loginName: this.loginName,
|
loginName: this.loginName,
|
||||||
old: this.pwdDlg.nowPwd,
|
old: this.pwdDlg.nowPwd,
|
||||||
newPassword: this.pwdDlg.newPwd,
|
newPassword: this.pwdDlg.newPwd,
|
||||||
rePassword: this.pwdDlg.rePwd
|
rePassword: this.pwdDlg.rePwd,
|
||||||
};
|
};
|
||||||
desk.updatePassword(params).then(res => {
|
desk.updatePassword(params).then((res) => {
|
||||||
if (res.status == 200) {
|
if (res.status == 200) {
|
||||||
this.$message({ message: '修改成功,请重新登录', type: 'success' });
|
this.$message({ message: "修改成功,请重新登录", type: "success" });
|
||||||
} else {
|
} else {
|
||||||
this.$message({ message: '修改失败,请检查输入', type: 'error' });
|
this.$message({ message: "修改失败,请检查输入", type: "error" });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
logout() {
|
logout() {
|
||||||
this.$confirm('确定退出系统吗?', '提示', {
|
this.$confirm("确定退出系统吗?", "提示", {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: "确定",
|
||||||
cancelButtonText: '取消',
|
cancelButtonText: "取消",
|
||||||
type: 'warning'
|
type: "warning",
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.$store.dispatch('LogOut').then(() => {
|
this.$store.dispatch("LogOut").then(() => {
|
||||||
//location.href = this.webBaseUrl + '/login';
|
//location.href = this.webBaseUrl + '/login';
|
||||||
location.href = process.env.VUE_APP_LOGIN_URL;
|
location.href = process.env.VUE_APP_LOGIN_URL;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -499,12 +662,11 @@ export default {
|
|||||||
}
|
}
|
||||||
::v-deep .el-dropdown-menu__item:not(.is-disabled):hover {
|
::v-deep .el-dropdown-menu__item:not(.is-disabled):hover {
|
||||||
background-color: #fff !important;
|
background-color: #fff !important;
|
||||||
color: #0059FF !important;
|
color: #0059ff !important;
|
||||||
}
|
}
|
||||||
::v-deep.el-dropdown-menu {
|
::v-deep.el-dropdown-menu {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: none !important;
|
border: none !important;
|
||||||
|
|
||||||
}
|
}
|
||||||
::v-deep .el-avatar {
|
::v-deep .el-avatar {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
@@ -519,7 +681,6 @@ text-align: center;
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
|
|
||||||
}
|
}
|
||||||
::v-deep .dialog-signin {
|
::v-deep .dialog-signin {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
@@ -532,7 +693,6 @@ img{
|
|||||||
}
|
}
|
||||||
.el-dialog__footer {
|
.el-dialog__footer {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
.signin-bg {
|
.signin-bg {
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -550,7 +710,7 @@ img{
|
|||||||
.signin-checkbox {
|
.signin-checkbox {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: #FFFFFF;
|
color: #ffffff;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
.el-checkbox {
|
.el-checkbox {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
@@ -573,9 +733,9 @@ img{
|
|||||||
.signin-text {
|
.signin-text {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #FFFFFF;
|
color: #ffffff;
|
||||||
.ti-yan {
|
.ti-yan {
|
||||||
border-bottom: 1px solid #FFFFFF;
|
border-bottom: 1px solid #ffffff;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@@ -591,34 +751,34 @@ img{
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-family: Alibaba PuHuiTi;
|
font-family: Alibaba PuHuiTi;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #FFFFFF;
|
color: #ffffff;
|
||||||
span {
|
span {
|
||||||
border-bottom: 1px solid #FFFFFF;
|
border-bottom: 1px solid #ffffff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.signin-b {
|
.signin-b {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color:#FFFFFF;
|
color: #ffffff;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
.el-checkbox__inner {
|
.el-checkbox__inner {
|
||||||
//background-color: #588AFC;
|
//background-color: #588AFC;
|
||||||
border-color: #FFFFFF;
|
border-color: #ffffff;
|
||||||
}
|
}
|
||||||
.el-checkbox__input.is-checked .el-checkbox__inner {
|
.el-checkbox__input.is-checked .el-checkbox__inner {
|
||||||
background-color: #588AFC;
|
background-color: #588afc;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.dialog-footer-signin {
|
.dialog-footer-signin {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
.xtop {
|
.xtop {
|
||||||
height: 72px;
|
height: 72px;
|
||||||
line-height: 72px;
|
line-height: 72px;
|
||||||
min-width: 1280px;
|
min-width: 1280px;
|
||||||
background-color: #0078FC;
|
background-color: #0078fc;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
@@ -647,7 +807,6 @@ img{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.xtop-nav {
|
.xtop-nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
// justify-content: flex-start;
|
// justify-content: flex-start;
|
||||||
@@ -685,7 +844,7 @@ img{
|
|||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
i {
|
i {
|
||||||
font-size: 26px;
|
font-size: 26px;
|
||||||
color:#409EFF;
|
color: #409eff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -708,7 +867,7 @@ img{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.xtop .arrow-down {
|
.xtop .arrow-down {
|
||||||
content: '';
|
content: "";
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
border-style: solid dashed dashed;
|
border-style: solid dashed dashed;
|
||||||
@@ -801,7 +960,7 @@ img{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
::v-deep .el-link.el-link--primary:hover {
|
::v-deep .el-link.el-link--primary:hover {
|
||||||
color:#588AFC;
|
color: #588afc;
|
||||||
}
|
}
|
||||||
.el-dropdown-link {
|
.el-dropdown-link {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|||||||
@@ -368,6 +368,13 @@ export const constantRoutes = [{
|
|||||||
component: (resolve) => require(['@/views/portal/course/qualityCourse'], resolve),
|
component: (resolve) => require(['@/views/portal/course/qualityCourse'], resolve),
|
||||||
name: 'qualityCourse',
|
name: 'qualityCourse',
|
||||||
meta: { title: '精品课课程', keepAlive: true, icon: 'dashboard', noCache: true, affix: false },
|
meta: { title: '精品课课程', keepAlive: true, icon: 'dashboard', noCache: true, affix: false },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/new-employee/welcome',
|
||||||
|
hidden: true,
|
||||||
|
component: (resolve) => require(['@/views/new-employee/WelcomePage'], resolve),
|
||||||
|
name: 'NewEmployeeWelcome',
|
||||||
|
meta: { title: '社招新员工欢迎页', icon: 'dashboard', noCache: true, affix: false },
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|||||||
411
src/views/new-employee/WelcomePage.vue
Normal file
411
src/views/new-employee/WelcomePage.vue
Normal file
@@ -0,0 +1,411 @@
|
|||||||
|
<template>
|
||||||
|
<div class="welcome">
|
||||||
|
<p class="top-title">欢迎来到京东方大学</p>
|
||||||
|
<!-- 内容卡片 -->
|
||||||
|
<div class="main">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<img
|
||||||
|
class="img-responsive wel_img"
|
||||||
|
src="@/assets/images/new-employee/wel.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6">
|
||||||
|
<!-- 桌面端显示 -->
|
||||||
|
<div class="right-font visible-lg-block visible-md-block">
|
||||||
|
<p class="greeting">{{ userName }},您好!</p>
|
||||||
|
<p>欢迎加入京东方科技集团股份有限公司</p>
|
||||||
|
<p>从这一刻起,你就是这个大家庭里的一份子。</p>
|
||||||
|
<p>在这里,我们干事业、交朋友、长本领、练胸怀!</p>
|
||||||
|
<p>为了帮你快速融入BOE,我们为你准备了丰富的入职培训课程!</p>
|
||||||
|
<p>快开始学习吧!</p>
|
||||||
|
</div>
|
||||||
|
<!-- 移动端显示 -->
|
||||||
|
<div class="right-font-sm visible-xs-block">
|
||||||
|
<p>{{ userName }},您好!</p>
|
||||||
|
<p>欢迎加入京东方</p>
|
||||||
|
<p>为了帮你快速融入BOE</p>
|
||||||
|
<P>我们为你准备了丰富的入职培训课程</P>
|
||||||
|
<p>快开始学习吧!</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 send_btn">
|
||||||
|
<button
|
||||||
|
v-if="enrollBtn === 'enroll' || enrollBtn === 'end'"
|
||||||
|
class="btn btn-default btn-lg send center-block start-btn"
|
||||||
|
@click="handleEnrollClick"
|
||||||
|
>
|
||||||
|
报名社招新员工项目
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
v-else
|
||||||
|
class="btn btn-default btn-lg send center-block start-btn"
|
||||||
|
@click="handleStartLearning"
|
||||||
|
>
|
||||||
|
开启学习之旅
|
||||||
|
</button>
|
||||||
|
<p style="color: #ffe551; font-size: 14px; font-family: '黑体'">
|
||||||
|
温馨提示:仅社招新员工可以报名,校招新员工和其他员工请不要点击
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 模态框(Modal)--信息确认 -->
|
||||||
|
<el-dialog
|
||||||
|
title="信息确认"
|
||||||
|
:visible.sync="infoConfirmDialogVisible"
|
||||||
|
:close-on-click-modal="false"
|
||||||
|
width="700px"
|
||||||
|
@close="handleDialogClose"
|
||||||
|
>
|
||||||
|
<div v-html="modalContent"></div>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="infoConfirmDialogVisible = false">取 消</el-button>
|
||||||
|
<el-button type="primary" :loading="processing" @click="handleConfirm">
|
||||||
|
{{ confirmBtnText }}
|
||||||
|
</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
<!-- 模态框(Modal)--数据提交成功 -->
|
||||||
|
<el-dialog
|
||||||
|
:title="modalTitle"
|
||||||
|
:visible.sync="successDialogVisible"
|
||||||
|
:close-on-click-modal="false"
|
||||||
|
width="500px"
|
||||||
|
>
|
||||||
|
<div style="text-align: center; padding: 20px 0">
|
||||||
|
{{ successMessage }}
|
||||||
|
</div>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="successDialogVisible = false">确 定</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapGetters } from "vuex";
|
||||||
|
import {
|
||||||
|
enrollWork,
|
||||||
|
enrollRegSure,
|
||||||
|
getWelcomeData,
|
||||||
|
} from "@/api/new-employee/newEmployee";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "WelcomePage",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
userName: "",
|
||||||
|
enrollBtn: "",
|
||||||
|
enrollCode: "",
|
||||||
|
projectId: "",
|
||||||
|
modalContent: "",
|
||||||
|
modalTitle: "",
|
||||||
|
processing: false,
|
||||||
|
confirmBtnText: "确认",
|
||||||
|
infoConfirmDialogVisible: false,
|
||||||
|
successDialogVisible: false,
|
||||||
|
successMessage: "",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
// 如果需要使用Vuex中的用户信息
|
||||||
|
...mapGetters(["userInfo"]),
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.initPageData();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 初始化页面数据
|
||||||
|
async initPageData() {
|
||||||
|
try {
|
||||||
|
// 从后端获取用户信息和报名状态
|
||||||
|
const response = await getWelcomeData();
|
||||||
|
if (response.status === 200) {
|
||||||
|
this.userName = response.result.user_name || this.userInfo.name;
|
||||||
|
this.enrollBtn = response.result.enroll.btn;
|
||||||
|
this.enrollCode = response.result.enroll.code;
|
||||||
|
this.projectId = response.result.project_id;
|
||||||
|
this.modalTitle = response.result.enroll.title;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("初始化数据失败:", error);
|
||||||
|
// 临时测试数据,实际使用时从后端获取
|
||||||
|
this.userName = this.userInfo.name || "新员工";
|
||||||
|
this.enrollBtn = "enroll";
|
||||||
|
this.enrollCode = "10";
|
||||||
|
this.projectId = "123";
|
||||||
|
this.modalTitle = "报名成功";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 开启学习之旅按钮点击
|
||||||
|
handleStartLearning() {
|
||||||
|
this.$router.push("/study/index");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 报名按钮点击
|
||||||
|
async handleEnrollClick() {
|
||||||
|
if (this.enrollBtn === "enroll" || this.enrollBtn === "sureBtn") {
|
||||||
|
await this.embedCourse();
|
||||||
|
} else if (this.enrollBtn === "end") {
|
||||||
|
this.showEndModal();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 嵌入课程信息
|
||||||
|
async embedCourse() {
|
||||||
|
try {
|
||||||
|
const response = await enrollWork({ course_id: this.projectId });
|
||||||
|
|
||||||
|
if (this.enrollCode === "10" || this.enrollCode === "") {
|
||||||
|
this.modalContent = response.result;
|
||||||
|
this.infoConfirmDialogVisible = true;
|
||||||
|
} else {
|
||||||
|
this.$message.warning("报名信息异常");
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("获取嵌入信息失败:", error);
|
||||||
|
this.$message.error("获取报名信息失败");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 确认按钮
|
||||||
|
async handleConfirm() {
|
||||||
|
this.processing = true;
|
||||||
|
this.confirmBtnText = "正在确认,请稍后......";
|
||||||
|
|
||||||
|
// 获取费用计算地选择
|
||||||
|
const jsdVal = document.querySelector(
|
||||||
|
"#childselect > option:selected"
|
||||||
|
)?.value;
|
||||||
|
if (!jsdVal) {
|
||||||
|
this.processing = false;
|
||||||
|
this.confirmBtnText = "确认";
|
||||||
|
this.$message.error("费用计算地不可为空!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 构建表单数据
|
||||||
|
const formData = {
|
||||||
|
id: this.projectId,
|
||||||
|
method: "self",
|
||||||
|
userId: this.userInfo.aid,
|
||||||
|
objectType: "project",
|
||||||
|
};
|
||||||
|
|
||||||
|
const response = await enrollRegSure(formData);
|
||||||
|
|
||||||
|
if (response.status === 200) {
|
||||||
|
this.infoConfirmDialogVisible = false;
|
||||||
|
this.$message.success("报名成功!");
|
||||||
|
// 跳转到学习页面
|
||||||
|
setTimeout(() => {
|
||||||
|
this.$router.push("/study/index");
|
||||||
|
}, 1500);
|
||||||
|
} else {
|
||||||
|
this.processing = false;
|
||||||
|
this.confirmBtnText = "确认";
|
||||||
|
this.$message.error(response.message || "报名失败");
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error("提交失败:", error);
|
||||||
|
this.processing = false;
|
||||||
|
this.confirmBtnText = "确认";
|
||||||
|
this.$message.error("提交失败,请重试");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 显示结束模态框
|
||||||
|
showEndModal() {
|
||||||
|
this.successMessage = "报名已结束";
|
||||||
|
this.successDialogVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 关闭对话框
|
||||||
|
handleDialogClose() {
|
||||||
|
this.processing = false;
|
||||||
|
this.confirmBtnText = "确认";
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
/* 欢迎页面样式 */
|
||||||
|
.welcome {
|
||||||
|
min-height: 100vh;
|
||||||
|
background: #2e5aa6;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 顶部标题 */
|
||||||
|
.top-title {
|
||||||
|
font-size: 48px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
margin: 40px 20px 60px;
|
||||||
|
font-family: "Microsoft YaHei", sans-serif;
|
||||||
|
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 主内容卡片 */
|
||||||
|
.welcome .main {
|
||||||
|
background: #2e5aa6;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 50px 40px;
|
||||||
|
max-width: 1200px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 自定义栅格系统 */
|
||||||
|
.welcome .main .row {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin: 0 -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome .main .col-md-6 {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 15px;
|
||||||
|
flex: 0 0 50%;
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome .main .col-md-12 {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 15px;
|
||||||
|
flex: 0 0 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wel_img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 右侧文字区域 */
|
||||||
|
.right-font {
|
||||||
|
padding: 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-font .greeting {
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
font-family: "Microsoft YaHei", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-font p {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 2;
|
||||||
|
color: white;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-family: "Microsoft YaHei", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-font-sm p {
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.8;
|
||||||
|
color: white;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
font-family: "Microsoft YaHei", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.send_btn {
|
||||||
|
margin-top: 30px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start-btn {
|
||||||
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
padding: 15px 50px;
|
||||||
|
font-size: 20px;
|
||||||
|
border-radius: 50px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.start-btn:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
|
||||||
|
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.start-btn:active {
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 响应式样式 */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.top-title {
|
||||||
|
font-size: 32px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome {
|
||||||
|
padding: 40px 15px 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome .main {
|
||||||
|
padding: 30px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome .main .col-md-6 {
|
||||||
|
flex: 0 0 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-font p {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start-btn {
|
||||||
|
padding: 12px 30px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 显示/隐藏控制 */
|
||||||
|
.visible-lg-block,
|
||||||
|
.visible-md-block,
|
||||||
|
.visible-xs-block {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.visible-lg-block,
|
||||||
|
.visible-md-block {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) and (max-width: 991px) {
|
||||||
|
.visible-xs-block {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
.visible-xs-block {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
Reference in New Issue
Block a user