diff --git a/src/api/index.js b/src/api/index.js index a4e7116..b6912dd 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -1,8 +1,8 @@ import Setting from "@/setting"; const host = Setting.apiBaseURL +const uploadURL = Setting.uploadURL const host1 = 'http://121.37.12.51/' -const uploadURL = location.origin + '/' export default { logins: `users/users/user/login`, diff --git a/src/layouts/navbar/index.vue b/src/layouts/navbar/index.vue index 4f9b15e..64759e9 100644 --- a/src/layouts/navbar/index.vue +++ b/src/layouts/navbar/index.vue @@ -20,7 +20,7 @@ export default { return { token: util.local.get(Setting.tokenKey), isTourist: false, - active: this.$route.path, + active: '/' + this.$route.path.split('/')[1] + '/list', // 登录后的菜单 loginedMenu: [ { @@ -97,6 +97,17 @@ export default { columnActive: this.$route.query.parentId }; }, + watch: { + "$route"(to, from) { + let actives = this.actives; + for (let i in this.actives) { + if (actives[i].includes(this.$route.name)) this.active = `/${i}/list`; + } + let arr=this.$route.path.split("/"); + let name = `/${arr[1]}/list` + this.active = name; + } + }, mounted() { const path = this.$route.path this.isTourist = !!Setting.whiteList.find(e => e === path) diff --git a/src/pages/account/login/index.vue b/src/pages/account/login/index.vue index 92565fd..306f55f 100644 --- a/src/pages/account/login/index.vue +++ b/src/pages/account/login/index.vue @@ -328,7 +328,7 @@ export default { this.reloadIndex() util.successMsg('登录成功') this.$router.replace(this.courseId ? - `/course/details?id=${this.courseId}` : + `/preCourse/details?id=${this.courseId}` : this.toMatch ? `/touristMatch` : '/station') @@ -387,12 +387,31 @@ export default { } }).then(({ data }) => { // 如果是客户 - data.customerName && util.cookies.set('customerName', data.customerName) + if (data.customerName) { + util.cookies.set('customerName', data.customerName) + } else { + // 查询姓名 + axios.get(Setting.apiBaseURL + this.api.queryUserInfoDetails, { + headers: { + token: this.token + } + }).then(({ data }) => { + this.SET_CUSTOMERNAME(data.result.hrUserInfo.userName) + util.cookies.set('customerName', data.result.hrUserInfo.userName) + }).catch(err => {}) + } + this.reloadIndex() - // 跳转到教师端的重定向页面 - location.href = Setting.isDev ? - `http://${location.hostname}:8081/#/redirect?auth=${btoa(this.token)}` : - `${location.origin}/admin/#/redirect?auth=${window.btoa(this.token)}` + if (this.courseId) { + this.$router.replace(`/preCourse/details?id=${this.courseId}`) + } else if (this.toMatch) { + this.$router.replace(`/touristMatch`) + } else { + // 跳转到教师端的重定向页面 + location.href = Setting.isDev ? + `http://${location.hostname}:8081/#/redirect?auth=${btoa(this.token)}` : + `${location.origin}/admin/#/redirect?auth=${window.btoa(this.token)}` + } }).catch(res => {}) }, // 选择端 diff --git a/src/pages/course/details/index.vue b/src/pages/course/details/index.vue index 46a2135..f952055 100644 --- a/src/pages/course/details/index.vue +++ b/src/pages/course/details/index.vue @@ -173,7 +173,7 @@ export default { }, preview(row, chapterName, showConfirm = 1){ // 如果没登录,直接去登录 - if (!util.local.get(Setting.tokenKey) && showConfirm) { + if (!util.local.get(Setting.tokenKey) && !util.local.get('oc_server_token') && showConfirm) { this.$confirm('请先登录,是否直接前往登录?', "提示", { type: 'success' }).then(() => { diff --git a/src/pages/info/list/index.vue b/src/pages/info/list/index.vue index 7824b2f..1e6b34e 100644 --- a/src/pages/info/list/index.vue +++ b/src/pages/info/list/index.vue @@ -229,9 +229,13 @@ export default { align-items:flex-start; } .column-name { - padding-left: 10px; + padding: 14px 0; margin-bottom: 10px; font-size: 16px; + text-align: center; + color: #fff; + background-color: #007eff; + border-radius: 8px; } .nav{ width: 156px; diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index abb7b95..8b15e8d 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -1,11 +1,11 @@