alioss V2.2.7
yujialong 2 years ago
parent c0bb57f72e
commit 8744036725
  1. 2
      src/api/index.js
  2. 13
      src/layouts/navbar/index.vue
  3. 23
      src/pages/account/login/index.vue
  4. 2
      src/pages/course/details/index.vue
  5. 6
      src/pages/info/list/index.vue
  6. 11
      src/pages/match/details/index.vue
  7. 6
      src/pages/screen/index.vue
  8. 16
      src/pages/station/preview/index.vue
  9. 2
      src/setting.js
  10. 1
      src/store/modules/user.js

@ -1,8 +1,8 @@
import Setting from "@/setting"; import Setting from "@/setting";
const host = Setting.apiBaseURL const host = Setting.apiBaseURL
const uploadURL = Setting.uploadURL
const host1 = 'http://121.37.12.51/' const host1 = 'http://121.37.12.51/'
const uploadURL = location.origin + '/'
export default { export default {
logins: `users/users/user/login`, logins: `users/users/user/login`,

@ -20,7 +20,7 @@ export default {
return { return {
token: util.local.get(Setting.tokenKey), token: util.local.get(Setting.tokenKey),
isTourist: false, isTourist: false,
active: this.$route.path, active: '/' + this.$route.path.split('/')[1] + '/list',
// //
loginedMenu: [ loginedMenu: [
{ {
@ -97,6 +97,17 @@ export default {
columnActive: this.$route.query.parentId 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() { mounted() {
const path = this.$route.path const path = this.$route.path
this.isTourist = !!Setting.whiteList.find(e => e === path) this.isTourist = !!Setting.whiteList.find(e => e === path)

@ -328,7 +328,7 @@ export default {
this.reloadIndex() this.reloadIndex()
util.successMsg('登录成功') util.successMsg('登录成功')
this.$router.replace(this.courseId ? this.$router.replace(this.courseId ?
`/course/details?id=${this.courseId}` : `/preCourse/details?id=${this.courseId}` :
this.toMatch ? this.toMatch ?
`/touristMatch` : `/touristMatch` :
'/station') '/station')
@ -387,12 +387,31 @@ export default {
} }
}).then(({ data }) => { }).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() this.reloadIndex()
if (this.courseId) {
this.$router.replace(`/preCourse/details?id=${this.courseId}`)
} else if (this.toMatch) {
this.$router.replace(`/touristMatch`)
} else {
// //
location.href = Setting.isDev ? location.href = Setting.isDev ?
`http://${location.hostname}:8081/#/redirect?auth=${btoa(this.token)}` : `http://${location.hostname}:8081/#/redirect?auth=${btoa(this.token)}` :
`${location.origin}/admin/#/redirect?auth=${window.btoa(this.token)}` `${location.origin}/admin/#/redirect?auth=${window.btoa(this.token)}`
}
}).catch(res => {}) }).catch(res => {})
}, },
// //

@ -173,7 +173,7 @@ export default {
}, },
preview(row, chapterName, showConfirm = 1){ 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('请先登录,是否直接前往登录?', "提示", { this.$confirm('请先登录,是否直接前往登录?', "提示", {
type: 'success' type: 'success'
}).then(() => { }).then(() => {

@ -229,9 +229,13 @@ export default {
align-items:flex-start; align-items:flex-start;
} }
.column-name { .column-name {
padding-left: 10px; padding: 14px 0;
margin-bottom: 10px; margin-bottom: 10px;
font-size: 16px; font-size: 16px;
text-align: center;
color: #fff;
background-color: #007eff;
border-radius: 8px;
} }
.nav{ .nav{
width: 156px; width: 156px;

@ -1,11 +1,11 @@
<template> <template>
<div class="wrap index"> <div class="wrap index">
<div class="banner" :style="{backgroundImage: 'url(' + (form.carouselUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20220613/png/1536269450851409920.png') + ')'}"></div> <div class="banner" :style="{backgroundImage: 'url(' + (form.carouselUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20220613/png/1536269450851409920.png') + ')'}"></div>
<div class="center"> <div class="center-con">
<div class="center-wrap"> <div class="center-wrap">
<breadcrumb ref="breadcrumb" :data="'全部赛事/' + form.name"></breadcrumb> <breadcrumb ref="breadcrumb" :data="'全部赛事/' + form.name"></breadcrumb>
<div class="content"> <div class="content">
<div class="flex-between"> <div class="tool flex-between">
<el-tabs v-model="curType" @tab-click="typeChange"> <el-tabs v-model="curType" @tab-click="typeChange">
<el-tab-pane v-for="(item, index) in typeList" :key="index" :label="item.name" :name="item.id"></el-tab-pane> <el-tab-pane v-for="(item, index) in typeList" :key="index" :label="item.name" :name="item.id"></el-tab-pane>
</el-tabs> </el-tabs>
@ -299,7 +299,7 @@ export default {
.l-title { .l-title {
font-size: 18px; font-size: 18px;
} }
.main .center { .main .center-con {
background: url(../../../assets/img/match-bg1.png) (0px 95px)/auto auto no-repeat, background: url(../../../assets/img/match-bg1.png) (0px 95px)/auto auto no-repeat,
url(../../../assets/img/match-bg2.png) (98% 300px)/auto auto no-repeat; url(../../../assets/img/match-bg2.png) (98% 300px)/auto auto no-repeat;
} }
@ -318,6 +318,11 @@ export default {
text-align: center; text-align: center;
color: #0B1D30; color: #0B1D30;
} }
.tool {
position: sticky;
top: 64px;
background-color: #fff;
}
.info .meta{ .info .meta{
padding: 16px 0; padding: 16px 0;
font-size: 12px; font-size: 12px;

@ -663,14 +663,14 @@ export default {
this.$post(this.api.studentAssessSchievement, times).then(({ data }) => { this.$post(this.api.studentAssessSchievement, times).then(({ data }) => {
const times = [] const times = []
const series = [] const series = []
data.map(e => { data.map((e, i) => {
times.push(e.time) times.push(e.time)
e.assesScoreRespList.map(n => { e.assesScoreRespList.map(n => {
const item = courseList.find(j => j.cid == n.curriculumId) const item = courseList.find(j => j.cid == n.curriculumId)
if (item) { if (item) {
const name = item.curriculumName const name = item.curriculumName
if (courseData[name]) { if (courseData[name]) {
courseData[name].push(+n.avgScore) courseData[name][i] = +n.avgScore
} }
} }
}) })
@ -684,7 +684,6 @@ export default {
smooth: true, smooth: true,
symbol: 'circle', symbol: 'circle',
symbolSize: 5, symbolSize: 5,
showSymbol: false,
lineStyle: { lineStyle: {
normal: { normal: {
color: colors[index].color1, color: colors[index].color1,
@ -752,6 +751,7 @@ export default {
type: 'category', type: 'category',
boundaryGap: false, boundaryGap: false,
axisLabel: { axisLabel: {
interval: 0,
textStyle: { textStyle: {
color: "rgba(255,255,255,.9)", color: "rgba(255,255,255,.9)",
fontSize:12, fontSize:12,

@ -102,8 +102,7 @@
<!-- 购买弹框 --> <!-- 购买弹框 -->
<el-dialog title="温馨提示" :visible.sync="buyVisible" width="420px" center :close-on-click-modal="false"> <el-dialog title="温馨提示" :visible.sync="buyVisible" width="420px" center :close-on-click-modal="false">
<div class="buy"> <div class="buy">
<p class="tips">该课程订阅期限已到期若需要续费请扫码添加客服咨询</p> <p class="tips">该课程订阅期限已到期请联系院校管理员续费</p>
<img src="@/assets/img/wechat-code.jpeg" alt="">
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
@ -206,8 +205,8 @@ export default {
async getChapter() { async getChapter() {
let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`); let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`);
this.chapterList = res.chapterList; this.chapterList = res.chapterList;
if (this.overdue && this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) { if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) {
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name); this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name, 1);
} }
}, },
// //
@ -238,9 +237,9 @@ export default {
if('mp4,3gp,mov,m4v,avi,dat,mkv,flv,vob,rmvb,rm,qlv'.includes(suf)) return '视频' if('mp4,3gp,mov,m4v,avi,dat,mkv,flv,vob,rmvb,rm,qlv'.includes(suf)) return '视频'
return suf return suf
}, },
preview(row, chapterName) { preview(row, chapterName, showDia = 0) {
// //
if (this.overdue) { if (this.overdue || showDia) {
this.curLink = `${chapterName}${row.name}`; // + this.curLink = `${chapterName}${row.name}`; // +
this.playauth = ""; this.playauth = "";
this.coverUrl = ""; this.coverUrl = "";
@ -439,11 +438,14 @@ $height: 700px;
.page { .page {
margin: 12px 0; margin: 12px 0;
.intro { .intro {
font-size: 16px; font-size: 14px;
color: #333; color: #333;
line-height: 24px; line-height: 24px;
} }
} }
.l-title {
font-size: 17px;
}
.cover{ .cover{
flex: 1; flex: 1;
background-color: #252528; background-color: #252528;

@ -28,7 +28,7 @@ if (isPro) {
host = "http://121.37.12.51/"; // 测试服 host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服 // host = 'https://www.occupationlab.com/' // 正式服
host = "http://192.168.31.51:9000/"; // 榕 host = "http://192.168.31.51:9000/"; // 榕
// host = "http://192.168.31.137:9000/"; // 赓 // host = "http://192.168.31.116:9000/"; // 赓
} }
const Setting = { const Setting = {

@ -83,6 +83,7 @@ export default {
util.local.remove(Setting.tokenKey) util.local.remove(Setting.tokenKey)
util.local.remove('oc_server_token') util.local.remove('oc_server_token')
util.local.remove('oc_server_store') util.local.remove('oc_server_store')
util.cookies.remove('customerName')
location.reload() location.reload()
resolve() resolve()
}); });

Loading…
Cancel
Save