token改成存sessionStorage里面(保证一个账号只能在一个浏览器的tab页保持登录状态,由此避免子系统的tab页多开)

dev_202412
yujialong 3 months ago
parent b7142db102
commit 961ed45cc3
  1. 4
      src/App.vue
  2. 20
      src/components/quill/index.vue
  3. 2
      src/components/upload/config.js
  4. 6
      src/layouts/header/index.vue
  5. 8
      src/layouts/home/index.vue
  6. 4
      src/layouts/navbar/index.vue
  7. 2
      src/pages/account/login/index.vue
  8. 2
      src/pages/account/redirect/index.vue
  9. 6
      src/pages/activity/details/index.vue
  10. 116
      src/pages/activity/list/index.vue
  11. 162
      src/pages/activity/manage/add/index.vue
  12. 77
      src/pages/activity/manage/manage/matchSignup.vue
  13. 65
      src/pages/activity/manage/manage/notice.vue
  14. 32
      src/pages/activity/manage/manage/noticeDetail.vue
  15. 2
      src/pages/ass/list/index.vue
  16. 58
      src/pages/cityPartner/list/index.vue
  17. 179
      src/pages/course/details/index.vue
  18. 2
      src/pages/course/list/index.vue
  19. 44
      src/pages/devPlatform/list/index.vue
  20. 460
      src/pages/index/list/index.vue
  21. 2
      src/pages/index/zxy/index.vue
  22. 10
      src/pages/match/details/index.vue
  23. 10
      src/pages/match/list/index.vue
  24. 140
      src/pages/product/list/index.vue
  25. 2
      src/pages/record/details/index.vue
  26. 2
      src/pages/record/list/index.vue
  27. 2
      src/pages/record/theoryReport/index.vue
  28. 2
      src/pages/screen/index.vue
  29. 30
      src/pages/setting/person/index.vue
  30. 6
      src/pages/station/preview/index.vue
  31. 4
      src/pages/theoryExam/index.vue
  32. 12
      src/pages/touristMatch/list/index.vue
  33. 2
      src/plugins/requests/index.js
  34. 2
      src/router/permission.js
  35. 2
      src/setting.js
  36. 2
      src/store/modules/user.js

@ -10,7 +10,7 @@ import util from "@/libs/util";
export default { export default {
name: "App", name: "App",
created() { created () {
//localStorage //localStorage
if (util.local.get(Setting.storeKey)) { if (util.local.get(Setting.storeKey)) {
this.$store.replaceState(Object.assign({}, this.$store.state, util.local.get(Setting.storeKey))); this.$store.replaceState(Object.assign({}, this.$store.state, util.local.get(Setting.storeKey)));
@ -18,7 +18,7 @@ export default {
//vuexlocalStorage //vuexlocalStorage
window.addEventListener("beforeunload", () => { window.addEventListener("beforeunload", () => {
util.local.get(Setting.tokenKey) && util.local.set(Setting.storeKey, this.$store.state); util.session.get(Setting.tokenKey) && util.local.set(Setting.storeKey, this.$store.state);
}); });
} }
}; };

@ -1,19 +1,11 @@
<template> <template>
<div class="quill" <div class="quill" ref="quill" :class="classes">
ref="quill" <div ref="editor" :style="styles" v-loading="loading"></div>
:class="classes">
<div ref="editor"
:style="styles"
v-loading="loading"></div>
<Upload :max-size="1000" <Upload :max-size="1000" :limit="100" @beforeUpload="beforeUpload" @onSuccess="editorUploadSuccess"
:limit="100"
@beforeUpload="beforeUpload"
@onSuccess="editorUploadSuccess"
style="display: none"> style="display: none">
<div slot="trigger"> <div slot="trigger">
<el-button :id="'editorUpload' + index" <el-button :id="'editorUpload' + index" type="primary">点击上传</el-button>
type="primary">点击上传</el-button>
</div> </div>
</Upload> </Upload>
</div> </div>
@ -75,7 +67,7 @@ export default {
const that = this const that = this
return { return {
headers: { headers: {
token: util.local.get(Setting.tokenKey) token: util.session.get(Setting.tokenKey)
}, },
Quill: null, Quill: null,
currentValue: "", currentValue: "",
@ -254,8 +246,10 @@ export default {
border-top: 0; border-top: 0;
} }
} }
/deep/.ql-snow { /deep/.ql-snow {
position: relative; position: relative;
.ql-tooltip { .ql-tooltip {
position: absolute !important; position: absolute !important;
top: 10px !important; top: 10px !important;

@ -12,7 +12,7 @@ export default async function () {
RE = JSON.parse(RE) RE = JSON.parse(RE)
} else { } else {
Util.local.remove(Setting.storeKey) Util.local.remove(Setting.storeKey)
Util.local.remove(Setting.tokenKey) Util.session.remove(Setting.tokenKey)
Util.errorMsg('登录过期,请重新登录!') Util.errorMsg('登录过期,请重新登录!')
router.replace({ router.replace({
path: '/login' path: '/login'

@ -80,7 +80,7 @@ export default {
isDev: Setting.isDev, isDev: Setting.isDev,
isZj: location.host === '10.60.32.76', // isZj: location.host === '10.60.32.76', //
isSq: Setting.isSq, isSq: Setting.isSq,
token: Util.local.get(Setting.tokenKey), // token token: Util.session.get(Setting.tokenKey), // token
serverToken: Util.local.get('oc_server_token'), // token serverToken: Util.local.get('oc_server_token'), // token
cName: Util.cookies.get('customerName'), cName: Util.cookies.get('customerName'),
isIndex: Setting.whiteList.find(e => e === this.$route.path), // isIndex: Setting.whiteList.find(e => e === this.$route.path), //
@ -102,7 +102,7 @@ export default {
]) ])
}, },
mounted () { mounted () {
if (Util.local.get(Setting.tokenKey)) { if (Util.session.get(Setting.tokenKey)) {
if (this.showHeader) { if (this.showHeader) {
this.getSystemDetail() this.getSystemDetail()
this.getNotice() this.getNotice()
@ -178,7 +178,7 @@ export default {
// //
heartbeatDetection () { heartbeatDetection () {
this.timer = setInterval(async () => { this.timer = setInterval(async () => {
Util.local.get(Setting.tokenKey) ? await this.$get(this.api.heartbeatDetection) : clearInterval(this.timer) Util.session.get(Setting.tokenKey) ? await this.$get(this.api.heartbeatDetection) : clearInterval(this.timer)
}, 58 * 1000) }, 58 * 1000)
}, },

@ -123,7 +123,7 @@ export default {
this.autoLogout() this.autoLogout()
this.noticed || this.getMatchStatus() // 0 this.noticed || this.getMatchStatus() // 0
this.logView || this.getLogStatus() // logViewfalse this.logView || this.getLogStatus() // logViewfalse
util.local.get(Setting.tokenKey) && this.handleRealName() util.session.get(Setting.tokenKey) && this.handleRealName()
}, },
methods: { methods: {
...mapMutations("user", [ ...mapMutations("user", [
@ -146,7 +146,7 @@ export default {
}, },
// () // ()
getMatchStatus () { getMatchStatus () {
util.local.get(Setting.tokenKey) && this.$post(this.api.promptRemoval).then(({ prompt }) => { util.session.get(Setting.tokenKey) && this.$post(this.api.promptRemoval).then(({ prompt }) => {
this.SET_NOTICE() this.SET_NOTICE()
prompt && util.errorMsg(prompt) prompt && util.errorMsg(prompt)
}).catch(res => { }) }).catch(res => { })
@ -164,7 +164,7 @@ export default {
}, },
// //
getLogStatus () { getLogStatus () {
util.local.get(Setting.tokenKey) && this.$get(this.api.logNotification, { util.session.get(Setting.tokenKey) && this.$get(this.api.logNotification, {
platformId: Setting.platformId platformId: Setting.platformId
}).then(({ notification }) => { }).then(({ notification }) => {
if (notification) { if (notification) {
@ -200,7 +200,7 @@ export default {
}; };
setInterval(() => { setInterval(() => {
if (util.local.get(Setting.tokenKey) && (new Date().getTime() - lastTime) > Setting.autoLogoutTime) { if (util.session.get(Setting.tokenKey) && (new Date().getTime() - lastTime) > Setting.autoLogoutTime) {
util.errorMsg("由于您已经有三个小时没有操作,系统自动登出,请重新登录。页面刷新到登录页。"); util.errorMsg("由于您已经有三个小时没有操作,系统自动登出,请重新登录。页面刷新到登录页。");
setTimeout(this.logout, 1500); setTimeout(this.logout, 1500);
} }

@ -30,7 +30,7 @@ export default {
}, },
data () { data () {
return { return {
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
isTourist: false, isTourist: false,
active: '/' + this.$route.path.split('/')[1] + '/list', active: '/' + this.$route.path.split('/')[1] + '/list',
// //
@ -169,7 +169,7 @@ export default {
// //
window.open(this.$router.resolve('/screen').href) window.open(this.$router.resolve('/screen').href)
} else { } else {
const token = util.local.get(Setting.tokenKey) const token = util.session.get(Setting.tokenKey)
// //
if (!token && this.loginedMenu.find(e => e.id === id)) { if (!token && this.loginedMenu.find(e => e.id === id)) {
location.reload() location.reload()

@ -393,7 +393,7 @@ export default {
}, },
// //
setLogin () { setLogin () {
Util.local.set(Setting.tokenKey, this.token, Setting.tokenExpires) Util.session.set(Setting.tokenKey, this.token)
this.getOss() this.getOss()
Util.cookies.remove('serverLogin') Util.cookies.remove('serverLogin')
this.reloadIndex() this.reloadIndex()

@ -143,7 +143,7 @@ export default {
}, },
// //
setLogin () { setLogin () {
Util.local.set(Setting.tokenKey, this.token, Setting.tokenExpires) Util.session.set(Setting.tokenKey, this.token)
this.getOss() this.getOss()
Util.cookies.remove('serverLogin') Util.cookies.remove('serverLogin')
this.reloadIndex() this.reloadIndex()

@ -107,7 +107,7 @@ export default {
data () { data () {
return { return {
routes: [], routes: [],
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
id: +this.$route.query.id, id: +this.$route.query.id,
end: '', end: '',
status: '', status: '',
@ -316,7 +316,7 @@ export default {
// python // python
toPython () { toPython () {
const form = this.curStage const form = this.curStage
let token = util.local.get(Setting.tokenKey); let token = util.session.get(Setting.tokenKey);
util.cookies.set('assessmentId', '', -1) util.cookies.set('assessmentId', '', -1)
util.cookies.set('startTime', '', -1) util.cookies.set('startTime', '', -1)
util.cookies.set('stopTime', '', -1) util.cookies.set('stopTime', '', -1)
@ -345,7 +345,7 @@ export default {
const { systemId, projectId, cid, stageId } = this.curStage const { systemId, projectId, cid, stageId } = this.curStage
const competitionId = form.id const competitionId = form.id
const teamId = form.competitionRegistration.teamId const teamId = form.competitionRegistration.teamId
let token = util.local.get(Setting.tokenKey); let token = util.session.get(Setting.tokenKey);
if (systemId == 11) { if (systemId == 11) {
// //
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true` location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`

@ -3,21 +3,15 @@
<div class="search"> <div class="search">
<h6>创业活动</h6> <h6>创业活动</h6>
<div class="input"> <div class="input">
<img src="@/assets/img/search.png" <img src="@/assets/img/search.png" alt="">
alt=""> <input type="text" placeholder="请输入关键词" v-model="keyword">
<input type="text"
placeholder="请输入关键词"
v-model="keyword">
</div> </div>
</div> </div>
<div class="main"> <div class="main">
<div class="center-wrap list-inner"> <div class="center-wrap list-inner">
<ul v-if="token" <ul v-if="token" class="nav">
class="nav"> <li :class="{ active: form.whetherToSignUp === item.id }" v-for="(item, index) in typeList" :key="index"
<li :class="{ active: form.whetherToSignUp === item.id }"
v-for="(item, index) in typeList"
:key="index"
@click="changeType(item.id)">{{ item.name }} @click="changeType(item.id)">{{ item.name }}
</li> </li>
</ul> </ul>
@ -27,63 +21,55 @@
<div> <div>
<dl> <dl>
<dt>筛选排序</dt> <dt>筛选排序</dt>
<dd v-for="(item, i) in sorts" <dd v-for="(item, i) in sorts" :key="i" :class="{ active: form.filterSort == item.id }"
:key="i"
:class="{active: form.filterSort == item.id}"
@click="changeSort(item.id)">{{ item.name }}</dd> @click="changeSort(item.id)">{{ item.name }}</dd>
</dl> </dl>
</div> </div>
<el-button type="primary" <el-button type="primary" @click="toManage">我的项目</el-button>
@click="toManage">我的项目</el-button>
</div> </div>
<div class="list"> <div class="list">
<template v-if="listData.length"> <template v-if="listData.length">
<ul> <ul>
<li v-for="(item,index) in listData" <li v-for="(item, index) in listData" :key="index" @click="toDetail(item)">
:key="index"
@click="toDetail(item)">
<div class="left"> <div class="left">
<div class="cover"> <div class="cover">
<img :src="item.coverUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20230515/jpg/1657937339328520192.jpg'" <img
:src="item.coverUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20230515/jpg/1657937339328520192.jpg'"
alt=""> alt="">
</div> </div>
<div class="info"> <div class="info">
<div class="title">{{ item.projectName }}</div> <div class="title">{{ item.projectName }}</div>
<div class="metas"> <div class="metas">
<div> <div>
<span class="label">报名时间</span><span class="val">{{ item.signUpStartTime}} ~ {{ item.signUpEndTime }}</span> <span class="label">报名时间</span><span class="val">{{ item.signUpStartTime }} ~ {{
item.signUpEndTime }}</span>
</div> </div>
<div> <div>
<span class="label">项目时间</span><span class="val">{{ item.playStartTime}} ~ {{ item.playEndTime }}</span> <span class="label">项目时间</span><span class="val">{{ item.playStartTime }} ~ {{
item.playEndTime }}</span>
</div> </div>
<template v-if="item.initiator"> <template v-if="item.initiator">
<div :class="{'flex-top': item.initiator.split(',').length > 1}"> <div :class="{ 'flex-top': item.initiator.split(',').length > 1 }">
<span class="label">发起方&emsp;</span> <span class="label">发起方&emsp;</span>
<span class="val">{{ item.initiator }}</span> <span class="val">{{ item.initiator }}</span>
</div> </div>
</template> </template>
<div class="m-t-20" <div class="m-t-20" @click.stop="follow(item)">
@click.stop="follow(item)">
<template v-if="item.collectionStatus"> <template v-if="item.collectionStatus">
<img class="m-r-5" <img class="m-r-5" src="@/assets/img/love2.png" alt="">
src="@/assets/img/love2.png"
alt="">
{{ item.collectorsNum }}人关注 {{ item.collectorsNum }}人关注
</template> </template>
<img v-else <img v-else src="@/assets/img/love1.png" alt="">
src="@/assets/img/love1.png"
alt="">
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div class="right"> <div class="right">
<p class="status" <p class="status"
:class="{wait: item.status == 0,signing: item.status == 2,signed: item.status == 1,playing: item.status == 4,finish: item.status == 3 || item.status == 4}" :class="{ wait: item.status == 0, signing: item.status == 2, signed: item.status == 1, playing: item.status == 4, finish: item.status == 3 || item.status == 4 }"
@click.stop="signup(item)">{{ statusList[item.status] }}</p> @click.stop="signup(item)">{{ statusList[item.status] }}</p>
<p class="end-text" <p class="end-text" v-if="item.end">
v-if="item.end">
距离{{ endList[item.status] }}还有 距离{{ endList[item.status] }}还有
<em>{{ item.end }}</em> <em>{{ item.end }}</em>
</p> </p>
@ -91,20 +77,15 @@
</li> </li>
</ul> </ul>
<div class="pagination"> <div class="pagination">
<el-pagination background <el-pagination background layout="total, prev, pager, next" :total="totals"
layout="total, prev, pager, next" @current-change="handleCurrentChange" :current-page="page" :page-size="pageSize">
:total="totals"
@current-change="handleCurrentChange"
:current-page="page"
:page-size="pageSize">
</el-pagination> </el-pagination>
</div> </div>
</template> </template>
<template v-else> <template v-else>
<div class="empty"> <div class="empty">
<div> <div>
<img src="@/assets/img/none.png" <img src="@/assets/img/none.png" alt="">
alt="">
<p>暂无赛事</p> <p>暂无赛事</p>
</div> </div>
</div> </div>
@ -114,24 +95,15 @@
</div> </div>
</div> </div>
<el-dialog title="报名" <el-dialog title="报名" :visible.sync="signupVisible" :close-on-click-modal="false" width="300px">
:visible.sync="signupVisible"
:close-on-click-modal="false"
width="300px">
<el-form class="dia-form"> <el-form class="dia-form">
<el-form-item> <el-form-item>
<el-input placeholder="请输入4位数大赛邀请码" <el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="invitationCode"></el-input>
maxlength="4"
v-model="invitationCode"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span slot="footer" <span slot="footer" class="dialog-footer">
class="dialog-footer"> <el-button size="small" type="primary" @click="signupSubmit">报名</el-button>
<el-button size="small" <el-button size="small" @click="signupVisible = false">取消</el-button>
type="primary"
@click="signupSubmit">报名</el-button>
<el-button size="small"
@click="signupVisible = false">取消</el-button>
</span> </span>
</el-dialog> </el-dialog>
</div> </div>
@ -146,7 +118,7 @@ export default {
data () { data () {
return { return {
timer: null, timer: null,
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "已结束"], statusList: ["待报名", "取消报名", "马上报名", "报名截止", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "项目开始", "项目结束"], endList: ["报名开始", "报名截止", "报名截止", "项目开始", "项目结束"],
typeList: [ typeList: [
@ -381,21 +353,25 @@ export default {
padding: 100px 0 130px; padding: 100px 0 130px;
text-align: center; text-align: center;
background: url(../../../assets/img/activity-bg.jpg) 0 0/100% 100% no-repeat; background: url(../../../assets/img/activity-bg.jpg) 0 0/100% 100% no-repeat;
h6 { h6 {
margin-bottom: 25px; margin-bottom: 25px;
font-size: 26px; font-size: 26px;
color: #fff; color: #fff;
} }
.input { .input {
position: relative; position: relative;
width: 700px; width: 700px;
margin: 0 auto; margin: 0 auto;
} }
img { img {
position: absolute; position: absolute;
top: 19px; top: 19px;
left: 14px; left: 14px;
} }
input { input {
width: 100%; width: 100%;
height: 62px; height: 62px;
@ -408,13 +384,16 @@ export default {
border-radius: 4px; border-radius: 4px;
} }
} }
.main { .main {
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% bottom) / auto auto no-repeat; url(../../../assets/img/match-bg2.png) (98% bottom) / auto auto no-repeat;
.center-wrap { .center-wrap {
width: 1078px; width: 1078px;
} }
} }
.filter { .filter {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@ -422,16 +401,19 @@ export default {
padding: 0 20px; padding: 0 20px;
margin-bottom: 20px; margin-bottom: 20px;
background-color: #fff; background-color: #fff;
dl { dl {
display: flex; display: flex;
align-items: center; align-items: center;
margin: 20px 0; margin: 20px 0;
dt { dt {
color: #333; color: #333;
font-size: 16px; font-size: 16px;
font-weight: 600; font-weight: 600;
white-space: nowrap; white-space: nowrap;
} }
dd { dd {
padding: 5px 15px; padding: 5px 15px;
color: #6a6a6a; color: #6a6a6a;
@ -439,6 +421,7 @@ export default {
white-space: nowrap; white-space: nowrap;
cursor: pointer; cursor: pointer;
border-radius: 4px; border-radius: 4px;
&.active { &.active {
color: $main-color; color: $main-color;
background-color: #e6f0ff; background-color: #e6f0ff;
@ -446,28 +429,34 @@ export default {
} }
} }
} }
.select-wrap { .select-wrap {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
margin: 0 10px; margin: 0 10px;
.label { .label {
margin-right: 10px; margin-right: 10px;
white-space: nowrap; white-space: nowrap;
} }
.el-select { .el-select {
width: 130px; width: 130px;
} }
} }
.list-inner { .list-inner {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: flex-start; align-items: flex-start;
} }
.nav { .nav {
width: 156px; width: 156px;
text-align: right; text-align: right;
overflow: hidden; overflow: hidden;
background-color: #fff; background-color: #fff;
li { li {
padding: 0 24px; padding: 0 24px;
font-size: 16px; font-size: 16px;
@ -476,6 +465,7 @@ export default {
border-bottom: 2px solid #f3f6fa; border-bottom: 2px solid #f3f6fa;
border-right: 2px solid transparent; border-right: 2px solid transparent;
cursor: pointer; cursor: pointer;
&:before { &:before {
content: ''; content: '';
display: inline-block; display: inline-block;
@ -486,18 +476,22 @@ export default {
border-radius: 50%; border-radius: 50%;
background-color: #666; background-color: #666;
} }
&.active { &.active {
color: $main-color; color: $main-color;
border-right-color: $main-color; border-right-color: $main-color;
&:before { &:before {
background-color: $main-color; background-color: $main-color;
} }
} }
} }
} }
.list-wrap { .list-wrap {
width: calc(100% - 180px); width: calc(100% - 180px);
margin-left: 24px; margin-left: 24px;
.list { .list {
li { li {
display: flex; display: flex;
@ -508,6 +502,7 @@ export default {
cursor: pointer; cursor: pointer;
border-radius: 6px; border-radius: 6px;
background-color: #fff; background-color: #fff;
.right { .right {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -525,6 +520,7 @@ export default {
background-color: #52c41a; background-color: #52c41a;
border-radius: 4px; border-radius: 4px;
@include ellipsis(); @include ellipsis();
&.wait { &.wait {
background-color: #faad14; background-color: #faad14;
} }
@ -536,6 +532,7 @@ export default {
&.signed { &.signed {
background-color: #52c41a; background-color: #52c41a;
} }
&.playing { &.playing {
background-color: #f96d6d; background-color: #f96d6d;
} }
@ -585,10 +582,12 @@ export default {
} }
} }
} }
.left { .left {
position: relative; position: relative;
display: inline-flex; display: inline-flex;
width: 430px; width: 430px;
.cover { .cover {
img { img {
width: 275px; width: 275px;
@ -599,6 +598,7 @@ export default {
.info { .info {
margin-left: 16px; margin-left: 16px;
.title { .title {
margin-bottom: 10px; margin-bottom: 10px;
font-size: 20px; font-size: 20px;
@ -607,9 +607,11 @@ export default {
word-break: break-all; word-break: break-all;
@include mul-ellipsis(2); @include mul-ellipsis(2);
} }
.metas { .metas {
font-size: 14px; font-size: 14px;
color: #666; color: #666;
div { div {
display: flex; display: flex;
align-items: center; align-items: center;
@ -645,10 +647,12 @@ export default {
} }
} }
} }
/deep/.dia-form { /deep/.dia-form {
.w-100 { .w-100 {
width: 100%; width: 100%;
} }
.tips { .tips {
display: flex; display: flex;
justify-content: center; justify-content: center;

@ -1,163 +1,96 @@
<template> <template>
<div> <div>
<breadcrumb v-if="!id" <breadcrumb v-if="!id" :routes.sync="routes" />
:routes.sync="routes" />
<div class="page"> <div class="page">
<div class="page-content"> <div class="page-content">
<el-form label-width="170px" <el-form label-width="170px" label-suffix=":" size="small">
label-suffix=":"
size="small">
<el-form-item label="项目封面(选填)"> <el-form-item label="项目封面(选填)">
<el-upload class="avatar-uploader" <el-upload class="avatar-uploader" accept=".jpg,.png,.jpeg,.gif" :limit="1" :on-exceed="handleExceed"
accept=".jpg,.png,.jpeg,.gif" :before-remove="beforeRemove" :on-remove="handleRemove" :on-error="uploadError" action=""
:limit="1"
:on-exceed="handleExceed"
:before-remove="beforeRemove"
:on-remove="handleRemove"
:on-error="uploadError"
action=""
:http-request="handleRequest"> :http-request="handleRequest">
<img v-if="form.coverUrl" <img v-if="form.coverUrl" :src="form.coverUrl" class="avatar">
:src="form.coverUrl" <div class="uploader-default" v-else>
class="avatar">
<div class="uploader-default"
v-else>
<i class="el-icon-plus"></i> <i class="el-icon-plus"></i>
<p>上传封面</p> <p>上传封面</p>
</div> </div>
<div slot="tip" <div slot="tip" class="el-upload__tip">
class="el-upload__tip">
<p>展示宽度为220高度140JPG/PNG/GIF3MB以内</p> <p>展示宽度为220高度140JPG/PNG/GIF3MB以内</p>
</div> </div>
</el-upload> </el-upload>
</el-form-item> </el-form-item>
<el-form-item label="项目封面长图(选填)"> <el-form-item label="项目封面长图(选填)">
<el-upload class="avatar-uploader avatar-uploader-lg" <el-upload class="avatar-uploader avatar-uploader-lg" accept=".jpg,.png,.jpeg,.gif" :limit="1"
accept=".jpg,.png,.jpeg,.gif" :on-exceed="handleExceed" :before-remove="beforeRemove" :on-remove="handleCarouselRemove"
:limit="1" :on-error="uploadError" action="" :http-request="handleRequestLg">
:on-exceed="handleExceed" <img v-if="form.carouselUrl" :src="form.carouselUrl" class="avatar-lg">
:before-remove="beforeRemove" <div class="uploader-default" v-else>
:on-remove="handleCarouselRemove"
:on-error="uploadError"
action=""
:http-request="handleRequestLg">
<img v-if="form.carouselUrl"
:src="form.carouselUrl"
class="avatar-lg">
<div class="uploader-default"
v-else>
<i class="el-icon-plus"></i> <i class="el-icon-plus"></i>
<p>上传封面</p> <p>上传封面</p>
</div> </div>
<div slot="tip" <div slot="tip" class="el-upload__tip">
class="el-upload__tip">
<p>展示宽度为1920高度300JPG/PNG/GIF3MB以内</p> <p>展示宽度为1920高度300JPG/PNG/GIF3MB以内</p>
</div> </div>
</el-upload> </el-upload>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="项目名称">
label="项目名称">
<div class="d-inline-block"> <div class="d-inline-block">
<el-input placeholder="请输入项目名称" <el-input placeholder="请输入项目名称" v-model="form.projectName" clearable></el-input>
v-model="form.projectName"
clearable></el-input>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="发起方">
label="发起方">
<div class="inline-input"> <div class="inline-input">
<div class="input-wrap" <div class="input-wrap" v-for="(item, index) in sponsorList" :key="index">
v-for="(item,index) in sponsorList" <el-input placeholder="发起方名称" v-model="sponsorList[index]"></el-input>
:key="index"> <i v-if="sponsorList.length > 1" class="remove" @click="delSponsor(index)"></i>
<el-input placeholder="发起方名称" <button v-if="index == 0" class="add-btn" type="button" @click="addSponsor">
v-model="sponsorList[index]"></el-input>
<i v-if="sponsorList.length > 1"
class="remove"
@click="delSponsor(index)"></i>
<button v-if="index == 0"
class="add-btn"
type="button"
@click="addSponsor">
<i class="el-icon-plus"></i> <i class="el-icon-plus"></i>
<span>添加</span> <span>添加</span>
</button> </button>
</div> </div>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="报名时间">
label="报名时间"> <el-date-picker v-model="signupTime" value-format="yyyy-MM-dd HH:mm:ss" type="datetimerange"
<el-date-picker v-model="signupTime" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"
value-format="yyyy-MM-dd HH:mm:ss"
type="datetimerange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
:picker-options="pickerOptions"></el-date-picker> :picker-options="pickerOptions"></el-date-picker>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="项目时间">
label="项目时间"> <el-date-picker v-model="playTime" value-format="yyyy-MM-dd HH:mm:ss" type="datetimerange"
<el-date-picker v-model="playTime" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"
value-format="yyyy-MM-dd HH:mm:ss"
type="datetimerange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
:picker-options="pickerOptions"></el-date-picker> :picker-options="pickerOptions"></el-date-picker>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="发布范围">
label="发布范围">
<div> <div>
<el-radio v-model="scope" <el-radio v-model="scope" :label="0" disabled>本校内</el-radio>
:label="0"
disabled>本校内</el-radio>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="报名人数上限">
label="报名人数上限">
<div class="input-center"> <div class="input-center">
<el-input placeholder="请输入人数" <el-input placeholder="请输入人数" v-model.number="form.maximumNumber" type="number"></el-input>
v-model.number="form.maximumNumber"
type="number"></el-input>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="报名邀请码">
label="报名邀请码"> <div class="input-center" style="width: 550px;">
<div class="input-center" <el-radio v-model="form.isNeedCode" :label="0">不需要</el-radio>
style="width: 550px;"> <el-radio v-model="form.isNeedCode" :label="1">需要</el-radio>
<el-radio v-model="form.isNeedCode" <el-input style="width: 250px" placeholder="请输入4位邀请码或点击随机生成" v-model="form.invitationCode"
:label="0">不需要</el-radio>
<el-radio v-model="form.isNeedCode"
:label="1">需要</el-radio>
<el-input style="width: 250px"
placeholder="请输入4位邀请码或点击随机生成"
v-model="form.invitationCode"
:disabled="form.isNeedCode === 0"></el-input> :disabled="form.isNeedCode === 0"></el-input>
<el-button v-if="form.isNeedCode === 1" <el-button v-if="form.isNeedCode === 1" @click="randomInv">随机</el-button>
@click="randomInv">随机</el-button>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item class="req" <el-form-item class="req" label="项目详情">
label="项目详情"> <quill ref="quill" :border="true" v-model="form.projectDescribe" :height="400" />
<quill ref="quill"
:border="true"
v-model="form.projectDescribe"
:height="400" />
</el-form-item> </el-form-item>
<el-form-item label="附件"> <el-form-item label="附件">
<Upload :limit="5" <Upload :limit="5" :file-list.sync="form.activityFileList" :changeFileList="false"
:file-list.sync="form.activityFileList" :on-remove="handleAnnexRemove" @onSuccess="uploadAnnexSuccess" />
:changeFileList="false"
:on-remove="handleAnnexRemove"
@onSuccess="uploadAnnexSuccess" />
</el-form-item> </el-form-item>
</el-form> </el-form>
<div class="btns"> <div class="btns">
<el-button @click="save(0)">保存</el-button> <el-button @click="save(0)">保存</el-button>
<el-button type="primary" <el-button type="primary" @click="save(1)">发布</el-button>
@click="save(1)">发布</el-button> <el-button type="danger" @click="preview">预览</el-button>
<el-button type="danger"
@click="preview">预览</el-button>
<el-button @click="back">取消</el-button> <el-button @click="back">取消</el-button>
</div> </div>
</div> </div>
@ -186,7 +119,7 @@ export default {
], ],
id: this.$route.query.id || '', id: this.$route.query.id || '',
headers: { headers: {
token: util.local.get(Setting.tokenKey) token: util.session.get(Setting.tokenKey)
}, },
scope: 0, scope: 0,
form: { form: {
@ -458,6 +391,7 @@ export default {
$upload-width: 220px; $upload-width: 220px;
$upload-height: 140px; $upload-height: 140px;
$upload-lg-height: 150px; $upload-lg-height: 150px;
/deep/ .avatar-uploader { /deep/ .avatar-uploader {
.el-upload { .el-upload {
position: relative; position: relative;
@ -542,6 +476,7 @@ $upload-lg-height: 150px;
width: 100%; width: 100%;
} }
} }
.inline-input { .inline-input {
.input-wrap { .input-wrap {
display: flex; display: flex;
@ -586,27 +521,33 @@ $upload-lg-height: 150px;
font-weight: bold; font-weight: bold;
} }
} }
.range-check { .range-check {
display: inline-block; display: inline-block;
margin: 0 0 10px 10px; margin: 0 0 10px 10px;
} }
/deep/.range-cas { /deep/.range-cas {
.el-tag { .el-tag {
display: none; display: none;
} }
} }
.input-center { .input-center {
display: flex; display: flex;
align-items: center; align-items: center;
width: 216px; width: 216px;
white-space: nowrap; white-space: nowrap;
.el-input { .el-input {
margin-right: 5px; margin-right: 5px;
} }
} }
.el-steps { .el-steps {
justify-content: center; justify-content: center;
} }
/deep/.req { /deep/.req {
.el-form-item__label { .el-form-item__label {
&:before { &:before {
@ -618,6 +559,7 @@ $upload-lg-height: 150px;
} }
} }
} }
.btns { .btns {
display: flex; display: flex;
justify-content: center; justify-content: center;

@ -1,89 +1,51 @@
<template> <template>
<!-- 报名人员 --> <!-- 报名人员 -->
<div class="page-content" <div class="page-content" style="padding: 24px">
style="padding: 24px">
<div class="tool"> <div class="tool">
<ul class="filter"> <ul class="filter">
<li> <li>
<label>搜索</label> <label>搜索</label>
<el-input placeholder="请输入姓名/手机号/学号" <el-input placeholder="请输入姓名/手机号/学号" prefix-icon="el-icon-search" v-model="keyword" clearable size="mini"
prefix-icon="el-icon-search"
v-model="keyword"
clearable
size="mini"
style="width: 250px"></el-input> style="width: 250px"></el-input>
</li> </li>
<li> <li>
<label>报名人员状态</label> <label>报名人员状态</label>
<el-select v-model="isDisable" <el-select v-model="isDisable" @change="initData">
@change="initData"> <el-option v-for="(item, i) in statusList" :key="i" :label="item.name" :value="item.id"></el-option>
<el-option v-for="(item, i) in statusList"
:key="i"
:label="item.name"
:value="item.id"></el-option>
</el-select> </el-select>
</li> </li>
</ul> </ul>
<div> <div>
<el-button type="primary" <el-button type="primary" round @click="exportAll">批量导出</el-button>
round
@click="exportAll">批量导出</el-button>
</div> </div>
</div> </div>
<el-table ref="table" <el-table ref="table" :data="listData" class="table" stripe header-align="center"
:data="listData" @selection-change="handleSelectionChange" row-key="id" @sort-change="sortChange">
class="table" <el-table-column type="selection" width="80" align="center" :reserve-selection="true"></el-table-column>
stripe <el-table-column type="index" width="60" label="序号" align="center">
header-align="center"
@selection-change="handleSelectionChange"
row-key="id"
@sort-change="sortChange">
<el-table-column type="selection"
width="80"
align="center"
:reserve-selection="true"></el-table-column>
<el-table-column type="index"
width="60"
label="序号"
align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.$index + (page - 1) * pageSize + 1 }} {{ scope.$index + (page - 1) * pageSize + 1 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="schoolName" <el-table-column prop="schoolName" label="学校" sortable="custom">
label="学校"
sortable="custom">
</el-table-column> </el-table-column>
<el-table-column prop="username" <el-table-column prop="username" label="学生姓名">
label="学生姓名">
</el-table-column> </el-table-column>
<el-table-column prop="workNumber" <el-table-column prop="workNumber" label="学号">
label="学号">
</el-table-column> </el-table-column>
<el-table-column prop="phone" <el-table-column prop="phone" label="手机号">
label="手机号">
</el-table-column> </el-table-column>
<el-table-column label="操作" <el-table-column label="操作" align="center" width="320">
align="center"
width="320">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" <el-button type="text" @click="delData(scope.row)">删除</el-button>
@click="delData(scope.row)">删除</el-button> <el-switch v-model="scope.row.isDisable" :active-text="scope.row.isDisable ? '' : ''" :active-value="0"
<el-switch v-model="scope.row.isDisable" :inactive-value="1" style="margin-left: 5px" @change="switchOff($event, scope.row, scope.$index)"></el-switch>
:active-text="scope.row.isDisable ? '关' : '开'"
:active-value="0"
:inactive-value="1"
style="margin-left: 5px"
@change="switchOff($event,scope.row,scope.$index)"></el-switch>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="pagination"> <div class="pagination">
<el-pagination background <el-pagination background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange"
layout="total, prev, pager, next"
:total="total"
@current-change="handleCurrentChange"
:current-page="page"> :current-page="page">
</el-pagination> </el-pagination>
</div> </div>
@ -98,7 +60,7 @@ export default {
name: "matchSignup", name: "matchSignup",
data () { data () {
return { return {
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
id: +this.$route.query.id, id: +this.$route.query.id,
isDisable: '', isDisable: '',
statusList: [ statusList: [
@ -215,6 +177,7 @@ export default {
.w-100 { .w-100 {
width: 100%; width: 100%;
} }
.tips { .tips {
display: flex; display: flex;
justify-content: center; justify-content: center;

@ -1,65 +1,39 @@
<template> <template>
<div class="page-content" <div class="page-content" style="padding: 24px">
style="padding: 24px"> <div class="tool" style="justify-content: flex-end">
<div class="tool" <el-button type="primary" round @click="add">新增</el-button>
style="justify-content: flex-end">
<el-button type="primary"
round
@click="add">新增</el-button>
</div> </div>
<el-table ref="table" <el-table ref="table" :data="listData" class="table" stripe header-align="center"
:data="listData" @selection-change="handleSelectionChange" row-key="id">
class="table" <el-table-column type="index" width="60" label="序号" align="center">
stripe
header-align="center"
@selection-change="handleSelectionChange"
row-key="id">
<el-table-column type="index"
width="60"
label="序号"
align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.$index + (page - 1) * pageSize + 1 }} {{ scope.$index + (page - 1) * pageSize + 1 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="announcementTitle" <el-table-column prop="announcementTitle" label="标题名称">
label="标题名称">
</el-table-column> </el-table-column>
<el-table-column prop="createTime" <el-table-column prop="createTime" label="创建时间">
label="创建时间">
</el-table-column> </el-table-column>
<el-table-column prop="updateTime" <el-table-column prop="updateTime" label="发布时间">
label="发布时间">
</el-table-column> </el-table-column>
<el-table-column prop="phone" <el-table-column prop="phone" label="状态">
label="状态">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.status ? '已发布' : '草稿' }} {{ scope.row.status ? '已发布' : '草稿' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" <el-table-column label="操作" align="center" width="250">
align="center"
width="250">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" <el-button type="text" @click="edit(scope.row)">编辑</el-button>
@click="edit(scope.row)">编辑</el-button> <el-button type="text" @click="del(scope.row)">删除</el-button>
<el-button type="text" <el-switch v-model="scope.row.isOpen" :active-text="scope.row.isOpen ? '' : ''" :active-value="0"
@click="del(scope.row)">删除</el-button> :inactive-value="1" style="margin: 0 10px 0 5px"
<el-switch v-model="scope.row.isOpen" @change="switchOff($event, scope.row, scope.$index)"></el-switch>
:active-text="scope.row.isOpen ? '关' : '开'"
:active-value="0"
:inactive-value="1"
style="margin: 0 10px 0 5px"
@change="switchOff($event,scope.row,scope.$index)"></el-switch>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="pagination"> <div class="pagination">
<el-pagination background <el-pagination background layout="total, prev, pager, next" :total="totals" @current-change="handleCurrentChange"
layout="total, prev, pager, next"
:total="totals"
@current-change="handleCurrentChange"
:current-page="page"> :current-page="page">
</el-pagination> </el-pagination>
</div> </div>
@ -72,7 +46,7 @@ import Setting from "@/setting";
export default { export default {
data () { data () {
return { return {
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
id: this.$route.query.id, id: this.$route.query.id,
listData: [], listData: [],
multipleSelection: [], multipleSelection: [],
@ -153,5 +127,4 @@ export default {
}; };
</script> </script>
<style scoped> <style scoped></style>
</style>

@ -1,40 +1,27 @@
<template> <template>
<div> <div>
<el-card shadow="hover" <el-card shadow="hover" style="margin-bottom: 20px">
style="margin-bottom: 20px">
<div class="flex-between"> <div class="flex-between">
<el-page-header @back="back" <el-page-header @back="back" :content="(form.id ? '编辑' : '创建') + '公告'"></el-page-header>
:content="(form.id ? '编辑' : '创建') + '公告'"></el-page-header>
</div> </div>
</el-card> </el-card>
<div class="page"> <div class="page">
<div class="page-content"> <div class="page-content">
<el-form label-width="170px" <el-form label-width="170px" label-suffix=":" size="small">
label-suffix=":"
size="small">
<el-form-item label="公告标题"> <el-form-item label="公告标题">
<div class="d-inline-block"> <div class="d-inline-block">
<el-input placeholder="请输入公告名称" <el-input placeholder="请输入公告名称" v-model="form.announcementTitle" clearable></el-input>
v-model="form.announcementTitle"
clearable></el-input>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item label="正文"> <el-form-item label="正文">
<quill :border="true" <quill :border="true" v-model="form.announcementText" :height="400" />
v-model="form.announcementText"
:height="400" />
</el-form-item> </el-form-item>
<el-form-item label="附件"> <el-form-item label="附件">
<Upload :limit="5" <Upload :limit="5" :file-list="fileList" :on-remove="handleRemove" @onSuccess="uploadSuccess" />
:file-list="fileList"
:on-remove="handleRemove"
@onSuccess="uploadSuccess" />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button v-if="!form.id" <el-button v-if="!form.id" @click="save(0)">草稿</el-button>
@click="save(0)">草稿</el-button> <el-button type="primary" @click="save(1)">发布</el-button>
<el-button type="primary"
@click="save(1)">发布</el-button>
<el-button @click="back">取消</el-button> <el-button @click="back">取消</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -54,7 +41,7 @@ export default {
data () { data () {
return { return {
headers: { headers: {
token: util.local.get(Setting.tokenKey) token: util.session.get(Setting.tokenKey)
}, },
form: { form: {
id: this.$route.query.id, id: this.$route.query.id,
@ -169,6 +156,7 @@ export default {
$upload-width: 220px; $upload-width: 220px;
$upload-height: 140px; $upload-height: 140px;
$upload-lg-height: 150px; $upload-lg-height: 150px;
/deep/ .avatar-uploader { /deep/ .avatar-uploader {
.el-upload { .el-upload {
position: relative; position: relative;

@ -382,7 +382,7 @@ export default {
this.invitationCode = ""; this.invitationCode = "";
}, },
goSubSystem () { goSubSystem () {
const token = Util.local.get(Setting.tokenKey) const token = Util.session.get(Setting.tokenKey)
const classId = this.classId const classId = this.classId
const classItem = this.classList.find(e => e.id == classId) const classItem = this.classList.find(e => e.id == classId)
const row = this.curRow const row = this.curRow

@ -46,7 +46,8 @@
<img src="@/assets/img/city/sup4.png" alt=""> <img src="@/assets/img/city/sup4.png" alt="">
<span>服务团队</span> <span>服务团队</span>
</h6> </h6>
<p class="text">城市合伙人需要在当地具备独立开展业务和服务的能力因此需要配置最小的地区服务团队包括商务售前运营服务售后技术支持售后培训服务售后客户成功服务客户活动支持服务等</p> <p class="text">城市合伙人需要在当地具备独立开展业务和服务的能力因此需要配置最小的地区服务团队包括商务售前运营服务售后技术支持售后培训服务售后客户成功服务客户活动支持服务等
</p>
</li> </li>
</ul> </ul>
</div> </div>
@ -110,75 +111,89 @@ import Setting from '@/setting'
import util from '@/libs/util' import util from '@/libs/util'
export default { export default {
name: 'cityPartner', name: 'cityPartner',
data() { data () {
return { return {
token: util.local.get(Setting.tokenKey) token: util.session.get(Setting.tokenKey)
} }
}, },
mounted() {}, mounted () { },
methods: {} methods: {}
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.wrap{ .wrap {
position: relative; position: relative;
background-color: #fff; background-color: #fff;
.banner { .banner {
height: 350px; height: 350px;
padding: 100px 0 0 180px; padding: 100px 0 0 180px;
background: url(../../../assets/img/city/banner2.png) top right/auto no-repeat, background: url(../../../assets/img/city/banner2.png) top right/auto no-repeat,
url(../../../assets/img/city/banner1.png) 0 0/100% 100% no-repeat; url(../../../assets/img/city/banner1.png) 0 0/100% 100% no-repeat;
h6 { h6 {
margin-bottom: 30px; margin-bottom: 30px;
font-size: 42px; font-size: 42px;
} }
.text { .text {
font-size: 16px; font-size: 16px;
line-height: 30px; line-height: 30px;
} }
} }
.i-title{
.i-title {
position: relative; position: relative;
margin-bottom: 37px; margin-bottom: 37px;
font-size: 30px; font-size: 30px;
text-align: center; text-align: center;
color: #0B1D30; color: #0B1D30;
} }
.inner{
.inner {
width: 1200px; width: 1200px;
padding: 67px 0; padding: 67px 0;
margin: 0 auto; margin: 0 auto;
} }
.bg { .bg {
background: #fff url(../../../assets/img/city/sup-bg.png) 0 0/100% 100% no-repeat; background: #fff url(../../../assets/img/city/sup-bg.png) 0 0/100% 100% no-repeat;
} }
.about { .about {
margin-top: -60px; margin-top: -60px;
.inner { .inner {
padding: 40px 0 60px; padding: 40px 0 60px;
text-align: center; text-align: center;
background: url(../../../assets/img/city/about.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/city/about.png) 0 0/100% 100% no-repeat;
} }
h6 { h6 {
margin-bottom: 20px; margin-bottom: 20px;
font-size: 24px; font-size: 24px;
color: #fff; color: #fff;
} }
.text { .text {
font-size: 14px; font-size: 14px;
color: #fff; color: #fff;
} }
} }
.intro{
.intro {
position: relative; position: relative;
.i-title { .i-title {
text-align: left; text-align: left;
} }
.list{
.list {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
li{
li {
width: 49%; width: 49%;
padding: 20px 30px; padding: 20px 30px;
border-radius: 6px; border-radius: 6px;
@ -186,29 +201,35 @@ export default {
background-color: #fff; background-color: #fff;
box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08); box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08);
} }
h6{
h6 {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 10px; margin-bottom: 10px;
} }
span { span {
margin-left: 12px; margin-left: 12px;
font-size: 18px; font-size: 18px;
color: #0B1D30; color: #0B1D30;
} }
.text{
.text {
font-size: 14px; font-size: 14px;
color: #757F92; color: #757F92;
} }
} }
} }
.profit{
.profit {
.inner { .inner {
background: url(../../../assets/img/city/profit-bg.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/city/profit-bg.png) 0 0/100% 100% no-repeat;
} }
.list { .list {
display: flex; display: flex;
flex: 1; flex: 1;
li { li {
padding: 9px 9px 20px; padding: 9px 9px 20px;
margin-right: 24px; margin-right: 24px;
@ -216,47 +237,58 @@ export default {
background-color: #fff; background-color: #fff;
border-radius: 10px; border-radius: 10px;
box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08); box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08);
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
} }
} }
img { img {
width: 100%; width: 100%;
} }
h6 { h6 {
margin: 15px 0 10px; margin: 15px 0 10px;
font-size: 18px; font-size: 18px;
color: #0B1D30; color: #0B1D30;
} }
.text { .text {
font-size: 14px; font-size: 14px;
color: #757F92; color: #757F92;
} }
} }
} }
.bus { .bus {
background-color: #F3F6FA; background-color: #F3F6FA;
.inner { .inner {
background: none; background: none;
} }
.list { .list {
li { li {
padding-bottom: 50px; padding-bottom: 50px;
.text { .text {
text-align: left; text-align: left;
} }
} }
img { img {
width: 366px; width: 366px;
height: 230px; height: 230px;
} }
} }
} }
.contact { .contact {
position: relative; position: relative;
height: 250px; height: 250px;
background: url(../../../assets/img/contact-info.png) center center/auto no-repeat, background: url(../../../assets/img/contact-info.png) center center/auto no-repeat,
url(../../../assets/img/contact-bg.png) 0 0/100% 100% no-repeat; url(../../../assets/img/contact-bg.png) 0 0/100% 100% no-repeat;
.love { .love {
position: absolute; position: absolute;
top: -45px; top: -45px;

@ -2,116 +2,65 @@
<div class="wrap pb"> <div class="wrap pb">
<breadcrumb :routes.sync="routes" /> <breadcrumb :routes.sync="routes" />
<div class="flex"> <div class="flex">
<div class="cover" <div class="cover" :class="{ 'is-word': showMask1 }">
:class="{'is-word': showMask1}"> <img v-if="coverUrl" :src="coverUrl" alt="" width="100%" height="100%">
<img v-if="coverUrl"
:src="coverUrl"
alt=""
width="100%"
height="100%">
<template v-else-if="iframeSrc"> <template v-else-if="iframeSrc">
<iframe class="inner fileIframe" <iframe class="inner fileIframe" id="fileIframe" :src="iframeSrc" frameborder="0"></iframe>
id="fileIframe"
:src="iframeSrc"
frameborder="0"></iframe>
<template v-if="showMask"> <template v-if="showMask">
<div class="mask" <div class="mask" style="width: 500px;height: 30px;top: 53px;right: 320px"></div>
style="width: 500px;height: 30px;top: 53px;right: 320px"></div> <div class="mask" style="width: 175px;height: 30px;top: 53px;right: 5px"></div>
<div class="mask"
style="width: 175px;height: 30px;top: 53px;right: 5px"></div>
</template> </template>
<template v-if="showMask1"> <template v-if="showMask1">
<div class="word-mask" <div class="word-mask" style="height: 40px;"></div>
style="height: 40px;"></div> <div class="word-mask2" style="top: 55px;left: 28%;width: 44%;height: calc(100% - 80px);"></div>
<div class="word-mask2"
style="top: 55px;left: 28%;width: 44%;height: calc(100% - 80px);"></div>
</template> </template>
<template v-if="showMask2"> <template v-if="showMask2">
<div class="excel-mask1" <div class="excel-mask1" style="height: 48px;"></div>
style="height: 48px;"></div>
</template> </template>
</template> </template>
<div class="pdf inner" <div class="pdf inner" v-else-if="pdfSrc">
v-else-if="pdfSrc">
<p class="arrow"> <p class="arrow">
<span @click="changePdfPage(0)" <span @click="changePdfPage(0)" class="turn el-icon-arrow-left" :class="{ grey: currentPage == 1 }"></span>
class="turn el-icon-arrow-left" {{ currentPage }} / {{ pageCount }}
:class="{grey: currentPage==1}"></span> <span @click="changePdfPage(1)" class="turn el-icon-arrow-right"
{{currentPage}} / {{pageCount}} :class="{ grey: currentPage == pageCount }"></span>
<span @click="changePdfPage(1)"
class="turn el-icon-arrow-right"
:class="{grey: currentPage==pageCount}"></span>
</p> </p>
<pdf class="pdf-wrap" <pdf class="pdf-wrap" :src="pdfSrc" :page="currentPage" @num-pages="pageCount = $event"
:src="pdfSrc" @page-loaded="currentPage = $event" @loaded="loadPdfHandler">
:page="currentPage"
@num-pages="pageCount=$event"
@page-loaded="currentPage=$event"
@loaded="loadPdfHandler">
</pdf> </pdf>
</div> </div>
<div class="inner" <div class="inner" v-else-if="playAuth">
v-else-if="playAuth"> <div class="video_wid" id="player"></div>
<div class="video_wid"
id="player"></div>
</div> </div>
<div class="inner" <div class="inner" v-else-if="videoSrc">
v-else-if="videoSrc"> <video class="video" :key="videoSrc" width="100%" height="100%" autoplay controls>
<video class="video" <source :src="videoSrc" type="video/mp4">
:key="videoSrc"
width="100%"
height="100%"
autoplay
controls>
<source :src="videoSrc"
type="video/mp4">
您的浏览器不支持 video 标签 您的浏览器不支持 video 标签
</video> </video>
</div> </div>
</div> </div>
<div class="catalog"> <div class="catalog">
<div class="list"> <div class="list">
<h4 class="title">{{courseName}}</h4> <h4 class="title">{{ courseName }}</h4>
<div class="desc-wrap"> <div class="desc-wrap">
<div class="desc" <div class="desc" :class="{ active: desShrink }" v-html="description"></div>
:class="{active: desShrink}" <i class="arrow" :class="{ active: desShrink }" v-if="description && description.length > 40">
v-html="description"></div>
<i class="arrow"
:class="{active: desShrink}"
v-if="description && description.length > 40">
</i> </i>
</div> </div>
<div class="chapters"> <div class="chapters">
<template v-if="chapterList && chapterList.length"> <template v-if="chapterList && chapterList.length">
<div class="chapter" <div class="chapter" v-for="(item, index) in chapterList" :key="index">
v-for="(item,index) in chapterList" <div class="chapterName">{{ item.name }}</div>
:key="index"> <div class="section" v-if="item.subsectionList.length">
<div class="chapterName">{{item.name}}</div> <div v-for="(section, i) in item.subsectionList" :key="i" @click="preview(section, item.name)">
<div class="section" <p class="sectionName" :class="{ active: curLink === `${item.name}${section.name}` }">
v-if="item.subsectionList.length"> <img v-if="section.fileType === 'pptx'" src="@/assets/img/exts/ppt.png" alt="">
<div v-for="(section,i) in item.subsectionList" <img v-else-if="section.fileType === 'mp4'" src="@/assets/img/exts/video.png" alt="">
:key="i"
@click="preview(section, item.name)">
<p class="sectionName"
:class="{active: curLink === `${item.name}${section.name}`}">
<img v-if="section.fileType === 'pptx'"
src="@/assets/img/exts/ppt.png"
alt="">
<img v-else-if="section.fileType === 'mp4'"
src="@/assets/img/exts/video.png"
alt="">
<img v-else-if="section.fileType === 'doc' || section.fileType === 'docx'" <img v-else-if="section.fileType === 'doc' || section.fileType === 'docx'"
src="@/assets/img/exts/word.png" src="@/assets/img/exts/word.png" alt="">
alt=""> <img v-else-if="section.fileType === 'txt'" src="@/assets/img/exts/txt.png" alt="">
<img v-else-if="section.fileType === 'txt'" <img v-else-if="section.fileType === 'pdf'" src="@/assets/img/exts/pdf.png" alt="">
src="@/assets/img/exts/txt.png" <img v-else src="@/assets/img/exts/pic.png" alt="">
alt="">
<img v-else-if="section.fileType === 'pdf'"
src="@/assets/img/exts/pdf.png"
alt="">
<img v-else
src="@/assets/img/exts/pic.png"
alt="">
{{ section.name }} {{ section.name }}
</p> </p>
</div> </div>
@ -181,7 +130,7 @@ export default {
}, },
destroyed () { destroyed () {
// //
util.local.get(Setting.tokenKey) && this.$post(this.api.playRecordSave, { util.session.get(Setting.tokenKey) && this.$post(this.api.playRecordSave, {
courseId: this.id, courseId: this.id,
courseType: 1, courseType: 1,
playTime: Math.ceil((Date.now() - this.startTime) / 1000 / 60) playTime: Math.ceil((Date.now() - this.startTime) / 1000 / 60)
@ -240,7 +189,7 @@ export default {
}, },
preview (row, chapterName, showConfirm = 1) { preview (row, chapterName, showConfirm = 1) {
// //
if (!util.local.get(Setting.tokenKey) && !util.local.get('oc_server_token') && showConfirm) { if (!util.session.get(Setting.tokenKey) && !util.local.get('oc_server_token') && showConfirm) {
this.$confirm('请先登录,是否直接前往登录?', "提示", { this.$confirm('请先登录,是否直接前往登录?', "提示", {
type: 'success', type: 'success',
closeOnClickModal: false closeOnClickModal: false
@ -365,6 +314,7 @@ export default {
</style> </style>
<style lang="scss" scoped> <style lang="scss" scoped>
$height: 700px; $height: 700px;
.video_wid, .video_wid,
.cover { .cover {
position: relative; position: relative;
@ -372,27 +322,34 @@ $height: 700px;
height: $height !important; height: $height !important;
border: 0; border: 0;
} }
.page { .page {
margin: 12px 0; margin: 12px 0;
.intro { .intro {
font-size: 16px; font-size: 16px;
color: #333; color: #333;
line-height: 24px; line-height: 24px;
} }
} }
.cover { .cover {
flex: 1; flex: 1;
background-color: #252528; background-color: #252528;
img { img {
border-radius: 8px; border-radius: 8px;
} }
&.is-word { &.is-word {
overflow: hidden; overflow: hidden;
} }
} }
.fileIframe { .fileIframe {
height: $height !important; height: $height !important;
} }
.video_wid, .video_wid,
.inner { .inner {
width: 100%; width: 100%;
@ -400,20 +357,24 @@ $height: 700px;
border: 0; border: 0;
overflow: auto; overflow: auto;
} }
.cover.is-word { .cover.is-word {
.inner { .inner {
height: calc(100% + 38px) !important; height: calc(100% + 38px) !important;
margin-top: -38px; margin-top: -38px;
} }
} }
.video_wid:focus { .video_wid:focus {
outline: none; outline: none;
} }
.catalog { .catalog {
width: 296px; width: 296px;
padding: 16px; padding: 16px;
margin-left: 12px; margin-left: 12px;
background-color: #252528; background-color: #252528;
.entry { .entry {
display: block; display: block;
width: 100%; width: 100%;
@ -421,31 +382,38 @@ $height: 700px;
margin-bottom: 16px; margin-bottom: 16px;
background: url(../../../assets/img/entry.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/entry.png) 0 0/100% 100% no-repeat;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
opacity: 0.9; opacity: 0.9;
} }
} }
} }
.list { .list {
height: calc(700px - 82px); height: calc(700px - 82px);
overflow-y: auto; overflow-y: auto;
.title { .title {
margin-bottom: 11px; margin-bottom: 11px;
color: #fff; color: #fff;
font-size: 16px; font-size: 16px;
} }
.desc-wrap { .desc-wrap {
position: relative; position: relative;
.desc { .desc {
font-size: 12px; font-size: 12px;
color: #fff; color: #fff;
line-height: 22px; line-height: 22px;
@include mul-ellipsis(4); @include mul-ellipsis(4);
&.active { &.active {
display: block; display: block;
overflow: visible; overflow: visible;
} }
} }
.arrow { .arrow {
position: absolute; position: absolute;
bottom: 2px; bottom: 2px;
@ -454,48 +422,59 @@ $height: 700px;
justify-content: space-between; justify-content: space-between;
width: 46px; width: 46px;
background-color: #fff; background-color: #fff;
span { span {
font-size: 14px; font-size: 14px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
} }
img { img {
width: 16px; width: 16px;
cursor: pointer; cursor: pointer;
} }
&.active { &.active {
span { span {
opacity: 0; opacity: 0;
} }
img { img {
transform: rotate(180deg); transform: rotate(180deg);
} }
} }
} }
} }
.chapters { .chapters {
margin-top: 16px; margin-top: 16px;
max-height: calc(100% - 53px); max-height: calc(100% - 53px);
overflow: auto; overflow: auto;
} }
.chapter { .chapter {
margin-bottom: 20px; margin-bottom: 20px;
.chapterName { .chapterName {
color: #fff; color: #fff;
font-size: 14px; font-size: 14px;
} }
.section { .section {
padding: 5px 15px; padding: 5px 15px;
margin-top: 12px; margin-top: 12px;
background-color: #121214; background-color: #121214;
.sectionName { .sectionName {
margin: 12px 0; margin: 12px 0;
font-size: 12px; font-size: 12px;
color: #999; color: #999;
cursor: pointer; cursor: pointer;
@include ellipsis; @include ellipsis;
img { img {
margin-right: 8px; margin-right: 8px;
} }
&.active { &.active {
color: #fff; color: #fff;
} }
@ -503,6 +482,7 @@ $height: 700px;
} }
} }
} }
.el-image-viewer__wrapper { .el-image-viewer__wrapper {
transform: translateY(-10px); transform: translateY(-10px);
transition: transform 0.5s; transition: transform 0.5s;
@ -511,19 +491,23 @@ $height: 700px;
transform: translateY(0); transform: translateY(0);
} }
} }
.el-image-viewer__close { .el-image-viewer__close {
z-index: 2000; z-index: 2000;
top: 15px; top: 15px;
right: 15px; right: 15px;
&.doc-close { &.doc-close {
i { i {
color: #000 !important; color: #000 !important;
} }
} }
} }
.list::-webkit-scrollbar { .list::-webkit-scrollbar {
width: 4px; width: 4px;
} }
.list::-webkit-scrollbar-thumb { .list::-webkit-scrollbar-thumb {
border-radius: 10px; border-radius: 10px;
background: rgba(0, 0, 0, 0.06); background: rgba(0, 0, 0, 0.06);
@ -534,6 +518,7 @@ $height: 700px;
position: absolute; position: absolute;
background-color: rgb(57, 58, 61); background-color: rgb(57, 58, 61);
} }
.word-mask { .word-mask {
z-index: 9; z-index: 9;
position: absolute; position: absolute;
@ -542,6 +527,7 @@ $height: 700px;
width: 100%; width: 100%;
background-color: rgb(243, 242, 241); background-color: rgb(243, 242, 241);
} }
.word-mask1 { .word-mask1 {
z-index: 9; z-index: 9;
position: absolute; position: absolute;
@ -550,11 +536,13 @@ $height: 700px;
width: 100%; width: 100%;
background-color: #185abd; background-color: #185abd;
} }
.word-mask2 { .word-mask2 {
z-index: 9; z-index: 9;
position: absolute; position: absolute;
background-color: transparent; background-color: transparent;
} }
.excel-mask1 { .excel-mask1 {
z-index: 9; z-index: 9;
position: absolute; position: absolute;
@ -563,22 +551,28 @@ $height: 700px;
width: 60%; width: 60%;
background-color: #107c41; background-color: #107c41;
} }
/deep/.pdf-dia { /deep/.pdf-dia {
border-radius: 0 !important; border-radius: 0 !important;
.el-dialog__header { .el-dialog__header {
display: none; display: none;
} }
.el-dialog__body { .el-dialog__body {
padding: 0; padding: 0;
} }
.el-dialog__headerbtn { .el-dialog__headerbtn {
top: 10px; top: 10px;
.el-dialog__close { .el-dialog__close {
color: #fff; color: #fff;
font-size: 16px; font-size: 16px;
} }
} }
} }
.pdf { .pdf {
.arrow { .arrow {
padding: 10px 0; padding: 10px 0;
@ -588,27 +582,32 @@ $height: 700px;
font-size: 16px; font-size: 16px;
color: #fff; color: #fff;
background-color: #333; background-color: #333;
.turn { .turn {
margin: 0 10px; margin: 0 10px;
font-size: 18px; font-size: 18px;
cursor: pointer; cursor: pointer;
} }
} }
.pdf-wrap { .pdf-wrap {
width: 80%; width: 80%;
margin: 0 auto; margin: 0 auto;
} }
} }
/deep/.project-dia { /deep/.project-dia {
.el-dialog__body { .el-dialog__body {
padding: 28px 32px; padding: 28px 32px;
} }
} }
.projects { .projects {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
max-height: 400px; max-height: 400px;
overflow: auto; overflow: auto;
li { li {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
@ -618,21 +617,26 @@ $height: 700px;
background-color: #f6f8fa; background-color: #f6f8fa;
border-radius: 16px; border-radius: 16px;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
span { span {
color: #007eff; color: #007eff;
} }
} }
&:nth-child(3n) { &:nth-child(3n) {
margin-right: 0; margin-right: 0;
} }
&.active { &.active {
background-color: #f2f7ff; background-color: #f2f7ff;
span { span {
color: #3988ff; color: #3988ff;
} }
} }
} }
span { span {
max-width: 140px; max-width: 140px;
margin-left: 14px; margin-left: 14px;
@ -640,6 +644,7 @@ $height: 700px;
color: #333; color: #333;
} }
} }
@media (max-width: 1430px) { @media (max-width: 1430px) {
.wrap { .wrap {
padding: 12px 100px 20px; padding: 12px 100px 20px;

@ -80,7 +80,7 @@ export default {
data () { data () {
return { return {
timer: null, timer: null,
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
isTourist: !!Setting.whiteList.find(e => e === this.$route.path), isTourist: !!Setting.whiteList.find(e => e === this.$route.path),
active: +this.$route.query.active || 0, active: +this.$route.query.active || 0,
tabs: [ tabs: [

@ -70,48 +70,55 @@ import Setting from '@/setting'
import util from '@/libs/util' import util from '@/libs/util'
export default { export default {
name: 'cityPartner', name: 'cityPartner',
data() { data () {
return { return {
token: util.local.get(Setting.tokenKey) token: util.session.get(Setting.tokenKey)
} }
}, },
mounted() {}, mounted () { },
methods: {} methods: {}
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.wrap{ .wrap {
position: relative; position: relative;
background-color: #fff; background-color: #fff;
.banner { .banner {
height: 350px; height: 350px;
padding: 100px 0 0 180px; padding: 100px 0 0 180px;
background: url(../../../assets/img/dev/banner2.png) (90% 32px)/auto no-repeat, background: url(../../../assets/img/dev/banner2.png) (90% 32px)/auto no-repeat,
url(../../../assets/img/dev/banner1.png) 0 0/100% 100% no-repeat; url(../../../assets/img/dev/banner1.png) 0 0/100% 100% no-repeat;
h6 { h6 {
margin-bottom: 30px; margin-bottom: 30px;
font-size: 42px; font-size: 42px;
} }
.text { .text {
font-size: 16px; font-size: 16px;
line-height: 30px; line-height: 30px;
} }
} }
.i-title{
.i-title {
position: relative; position: relative;
margin-bottom: 37px; margin-bottom: 37px;
font-size: 30px; font-size: 30px;
text-align: center; text-align: center;
color: #0B1D30; color: #0B1D30;
} }
.inner{
.inner {
width: 1200px; width: 1200px;
padding: 67px 0; padding: 67px 0;
margin: 0 auto; margin: 0 auto;
} }
.about { .about {
margin: -60px 0 20px; margin: -60px 0 20px;
.inner { .inner {
padding: 40px 0 60px; padding: 40px 0 60px;
text-align: center; text-align: center;
@ -119,67 +126,83 @@ export default {
border-radius: 8px; border-radius: 8px;
box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08); box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08);
} }
h6 { h6 {
margin-bottom: 20px; margin-bottom: 20px;
font-size: 24px; font-size: 24px;
color: #0B1D30; color: #0B1D30;
} }
.text { .text {
font-size: 14px; font-size: 14px;
color: #0B1D30; color: #0B1D30;
} }
} }
.sup{
.sup {
background: linear-gradient(180deg, #FFFFFF 0%, #F1F6FE 100%); background: linear-gradient(180deg, #FFFFFF 0%, #F1F6FE 100%);
.list { .list {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
li { li {
width: 33%; width: 33%;
padding: 140px 50px 50px; padding: 140px 50px 50px;
background: url(../../../assets/img/dev/sup1.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/dev/sup1.png) 0 0/100% 100% no-repeat;
&:nth-child(2) { &:nth-child(2) {
background-image: url(../../../assets/img/dev/sup2.png); background-image: url(../../../assets/img/dev/sup2.png);
} }
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
background-image: url(../../../assets/img/dev/sup3.png); background-image: url(../../../assets/img/dev/sup3.png);
} }
} }
h6 { h6 {
margin: 15px 0 10px; margin: 15px 0 10px;
font-size: 18px; font-size: 18px;
color: #0B1D30; color: #0B1D30;
} }
.text { .text {
font-size: 14px; font-size: 14px;
color: #757F92; color: #757F92;
} }
} }
} }
.con{
.con {
background: url(../../../assets/img/dev/con-bg.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/dev/con-bg.png) 0 0/100% 100% no-repeat;
.list { .list {
display: flex; display: flex;
flex: 1; flex: 1;
li { li {
padding-bottom: 40px; padding-bottom: 40px;
margin-right: 24px; margin-right: 24px;
background-color: #fff; background-color: #fff;
border-radius: 10px; border-radius: 10px;
box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08); box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08);
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
} }
} }
img { img {
width: 100%; width: 100%;
} }
h6 { h6 {
margin: 15px 24px 10px; margin: 15px 24px 10px;
font-size: 18px; font-size: 18px;
color: #0B1D30; color: #0B1D30;
} }
.text { .text {
margin: 0 24px; margin: 0 24px;
font-size: 14px; font-size: 14px;
@ -187,15 +210,18 @@ export default {
} }
} }
} }
.profit { .profit {
margin-bottom: 70px; margin-bottom: 70px;
text-align: center; text-align: center;
.item1 { .item1 {
line-height: 250px; line-height: 250px;
font-size: 30px; font-size: 30px;
color: #fff; color: #fff;
background: url(../../../assets/img/dev/profit-bg1.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/dev/profit-bg1.png) 0 0/100% 100% no-repeat;
} }
.item2 { .item2 {
width: 70%; width: 70%;
margin: -100px auto 0; margin: -100px auto 0;
@ -205,11 +231,13 @@ export default {
background: url(../../../assets/img/dev/profit-bg2.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/dev/profit-bg2.png) 0 0/100% 100% no-repeat;
} }
} }
.contact { .contact {
position: relative; position: relative;
height: 250px; height: 250px;
background: url(../../../assets/img/contact-info.png) center center/auto no-repeat, background: url(../../../assets/img/contact-info.png) center center/auto no-repeat,
url(../../../assets/img/contact-bg.png) 0 0/100% 100% no-repeat; url(../../../assets/img/contact-bg.png) 0 0/100% 100% no-repeat;
.love { .love {
position: absolute; position: absolute;
top: -45px; top: -45px;

File diff suppressed because it is too large Load Diff

@ -256,7 +256,7 @@ export default {
name: 'index', name: 'index',
data () { data () {
return { return {
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
active: '' active: ''
} }
}, },

@ -627,9 +627,9 @@ export default {
return { return {
routes: [], routes: [],
headers: { headers: {
token: Util.local.get(Setting.tokenKey) token: Util.session.get(Setting.tokenKey)
}, },
token: Util.local.get(Setting.tokenKey), token: Util.session.get(Setting.tokenKey),
id: +this.$route.query.id, id: +this.$route.query.id,
fromOffical: !!this.$route.query.q, // fromOffical: !!this.$route.query.q, //
end: '', end: '',
@ -1668,7 +1668,7 @@ export default {
signup () { signup () {
const { status, form } = this const { status, form } = this
// //
if (Util.local.get(Setting.tokenKey)) { if (Util.session.get(Setting.tokenKey)) {
const { competitionType } = form.completeCompetitionSetup const { competitionType } = form.completeCompetitionSetup
if (status == 4) { // if (status == 4) { //
// 线(handleStatus) // 线(handleStatus)
@ -1761,7 +1761,7 @@ export default {
// python // python
toPython () { toPython () {
const form = this.curStage const form = this.curStage
let token = Util.local.get(Setting.tokenKey); let token = Util.session.get(Setting.tokenKey);
Util.cookies.set('assessmentId', '', -1) Util.cookies.set('assessmentId', '', -1)
Util.cookies.set('startTime', '', -1) Util.cookies.set('startTime', '', -1)
Util.cookies.set('stopTime', '', -1) Util.cookies.set('stopTime', '', -1)
@ -1801,7 +1801,7 @@ export default {
if (method === 1) { if (method === 1) {
window.open(this.$router.resolve(`/theoryExam?competitionId=${form.id}&stageId=${stageId}&teamId=${teamId}`).href, 'theory') window.open(this.$router.resolve(`/theoryExam?competitionId=${form.id}&stageId=${stageId}&teamId=${teamId}`).href, 'theory')
} else { } else {
let token = Util.local.get(Setting.tokenKey); let token = Util.session.get(Setting.tokenKey);
if (systemId == 11) { if (systemId == 11) {
// //
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true` location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`

@ -340,11 +340,11 @@ export default {
data () { data () {
return { return {
headers: { headers: {
token: Util.local.get(Setting.tokenKey) token: Util.session.get(Setting.tokenKey)
}, },
fromOffical: !!this.$route.query.q, // fromOffical: !!this.$route.query.q, //
timer: null, timer: null,
token: Util.local.get(Setting.tokenKey), token: Util.session.get(Setting.tokenKey),
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"], statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""], endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
typeList: [ typeList: [
@ -982,7 +982,7 @@ export default {
const { status, id } = item const { status, id } = item
const { competitionType } = item const { competitionType } = item
// //
if (Util.local.get(Setting.tokenKey)) { if (Util.session.get(Setting.tokenKey)) {
this.curItem = item this.curItem = item
if (status == 4) { // if (status == 4) { //
// 线(handleStatus) // 线(handleStatus)
@ -1078,7 +1078,7 @@ export default {
// python // python
toPython () { toPython () {
const form = this.curItem.curStage const form = this.curItem.curStage
let token = Util.local.get(Setting.tokenKey); let token = Util.session.get(Setting.tokenKey);
Util.cookies.set('assessmentId', '', -1) Util.cookies.set('assessmentId', '', -1)
Util.cookies.set('classId', '', -1) Util.cookies.set('classId', '', -1)
Util.cookies.set('startTime', '', -1) Util.cookies.set('startTime', '', -1)
@ -1121,7 +1121,7 @@ export default {
window.open(this.$router.resolve(`/theoryExam?competitionId=${form.id}&stageId=${stageId}&teamId=${teamId}`).href, 'theory') window.open(this.$router.resolve(`/theoryExam?competitionId=${form.id}&stageId=${stageId}&teamId=${teamId}`).href, 'theory')
this.choosing = false this.choosing = false
} else { } else {
let token = Util.local.get(Setting.tokenKey) let token = Util.session.get(Setting.tokenKey)
if (systemId == 11) { if (systemId == 11) {
// //
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true` location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`

@ -46,22 +46,24 @@
</div> </div>
<!-- 简介 --> <!-- 简介 -->
<ul class="intro"> <ul class="intro">
<li class="wow fadeInLeft" :class="{active: active === 1}" data-wow-delay="0.6s" @click="toPart(1)"> <li class="wow fadeInLeft" :class="{ active: active === 1 }" data-wow-delay="0.6s" @click="toPart(1)">
<img src="@/assets/img/zxy/intro1.png" alt=""> <img src="@/assets/img/zxy/intro1.png" alt="">
<p class="text">金融科技专业方向</p> <p class="text">金融科技专业方向</p>
</li> </li>
<li class="wow fadeInUp" :class="{active: active === 2}" data-wow-delay="0.2s" @click="toPart(2)"> <li class="wow fadeInUp" :class="{ active: active === 2 }" data-wow-delay="0.2s" @click="toPart(2)">
<img src="@/assets/img/zxy/intro2.png" alt=""> <img src="@/assets/img/zxy/intro2.png" alt="">
<p class="text">大数据管理与应用专业方向</p> <p class="text">大数据管理与应用专业方向</p>
</li> </li>
<li class="wow fadeInRight" :class="{active: active === 3}" data-wow-delay="0.8s" @click="toPart(3)"> <li class="wow fadeInRight" :class="{ active: active === 3 }" data-wow-delay="0.8s" @click="toPart(3)">
<img src="@/assets/img/index/index20.png" alt=""> <img src="@/assets/img/index/index20.png" alt="">
<p class="text">数字经济专业方向</p> <p class="text">数字经济专业方向</p>
</li> </li>
</ul> </ul>
<div class="pic"> <div class="pic">
<h6>金融科技专业方向</h6> <h6>金融科技专业方向</h6>
<p class="des">培养目标金融科技专业旨在培养具有国际视野具备互联网思维用户思维平台思维创新思维等复合型思维和风险管理意识掌握现代信息科技数据技术算法和智能技术等前沿技术熟悉金融产品设计金融产品定价金融风险管理金融监管知识等金融业务知识并能够应用的复合型应用型创新型国际化金融人才</p> <p class="des">
培养目标金融科技专业旨在培养具有国际视野具备互联网思维用户思维平台思维创新思维等复合型思维和风险管理意识掌握现代信息科技数据技术算法和智能技术等前沿技术熟悉金融产品设计金融产品定价金融风险管理金融监管知识等金融业务知识并能够应用的复合型应用型创新型国际化金融人才
</p>
<img class="bg" src="@/assets/img/zxy/intro-bg1.png" alt=""> <img class="bg" src="@/assets/img/zxy/intro-bg1.png" alt="">
<h6>实验课程体系</h6> <h6>实验课程体系</h6>
<ul class="des-list"> <ul class="des-list">
@ -126,10 +128,10 @@
</div> </div>
<div class="scroll scroll-bg"> <div class="scroll scroll-bg">
<h6 class="i-title">实验系统</h6> <h6 class="i-title">实验系统</h6>
<scroll class="scroll-wrap" :data="system1" :class-option="{limitMoveNum: 2, direction: 2}"> <scroll class="scroll-wrap" :data="system1" :class-option="{ limitMoveNum: 2, direction: 2 }">
<ul class="scroll-list" ref="client"> <ul class="scroll-list" ref="client">
<li v-for="(item, i) in system1" :key="i"> <li v-for="(item, i) in system1" :key="i">
<img :src="require('@/assets/img/zxy/system1/icon' + (i + 1) +'.png')" alt=""> <img :src="require('@/assets/img/zxy/system1/icon' + (i + 1) + '.png')" alt="">
<h6>{{ item.title }}</h6> <h6>{{ item.title }}</h6>
<p class="des">{{ item.des }}</p> <p class="des">{{ item.des }}</p>
</li> </li>
@ -163,7 +165,9 @@
</div> </div>
<div class="pic"> <div class="pic">
<h6>大数据管理与应用专业方向</h6> <h6>大数据管理与应用专业方向</h6>
<p class="des">大数据管理与应用专业旨在培养具有管理学背景和良好的数据思维能力具有扎实的经济学知识系统的管理学基础熟练运用现代信息技术掌握面向互联网大数据环境的数据处理和分析方法面向数据管理方向的管理科学专业知识具有较强的大数据管理能力和技术应用能力能够利用商务数据去定量化分析并能进行智能化商业决策的懂数据懂技术懂业务懂管理DMTB复合型应用型高级专门人才</p> <p class="des">
大数据管理与应用专业旨在培养具有管理学背景和良好的数据思维能力具有扎实的经济学知识系统的管理学基础熟练运用现代信息技术掌握面向互联网大数据环境的数据处理和分析方法面向数据管理方向的管理科学专业知识具有较强的大数据管理能力和技术应用能力能够利用商务数据去定量化分析并能进行智能化商业决策的懂数据懂技术懂业务懂管理DMTB复合型应用型高级专门人才
</p>
<img class="bg" src="@/assets/img/zxy/intro-bg2.png" alt=""> <img class="bg" src="@/assets/img/zxy/intro-bg2.png" alt="">
<h6>实验课程体系</h6> <h6>实验课程体系</h6>
<ul class="des-list"> <ul class="des-list">
@ -222,10 +226,10 @@
</div> </div>
<div class="scroll scroll-bg"> <div class="scroll scroll-bg">
<h6 class="i-title">实验系统</h6> <h6 class="i-title">实验系统</h6>
<scroll class="scroll-wrap" :data="system2" :class-option="{limitMoveNum: 2, direction: 2}"> <scroll class="scroll-wrap" :data="system2" :class-option="{ limitMoveNum: 2, direction: 2 }">
<ul class="scroll-list" ref="client"> <ul class="scroll-list" ref="client">
<li v-for="(item, i) in system2" :key="i"> <li v-for="(item, i) in system2" :key="i">
<img :src="require('@/assets/img/zxy/system2/icon' + (i + 1) +'.png')" alt=""> <img :src="require('@/assets/img/zxy/system2/icon' + (i + 1) + '.png')" alt="">
<h6>{{ item.title }}</h6> <h6>{{ item.title }}</h6>
<p class="des">{{ item.des }}</p> <p class="des">{{ item.des }}</p>
</li> </li>
@ -259,7 +263,9 @@
</div> </div>
<div class="pic"> <div class="pic">
<h6>数字经济专业方向</h6> <h6>数字经济专业方向</h6>
<p class="des">数字经济专业旨在培养具有良好的政治素养与道德修养熟悉中国数字经济运行规律与改革实践系统掌握经济学统计学及计算机科学的基础理论与技术掌握现代经济学的基本方法及数字技能具备经济学思维方式和向数据科学工学相关领域扩展渗透的能力具备数字经济背景下管理运营数据分析与决策能力以及产业数字化规划与建设能力的高素质复合型创新型应用人才</p> <p class="des">
数字经济专业旨在培养具有良好的政治素养与道德修养熟悉中国数字经济运行规律与改革实践系统掌握经济学统计学及计算机科学的基础理论与技术掌握现代经济学的基本方法及数字技能具备经济学思维方式和向数据科学工学相关领域扩展渗透的能力具备数字经济背景下管理运营数据分析与决策能力以及产业数字化规划与建设能力的高素质复合型创新型应用人才
</p>
<img class="bg" src="@/assets/img/zxy/intro-bg3.png" alt=""> <img class="bg" src="@/assets/img/zxy/intro-bg3.png" alt="">
<h6 style="margin-bottom: 0">实验课程体系</h6> <h6 style="margin-bottom: 0">实验课程体系</h6>
<div class="text-center"> <div class="text-center">
@ -268,10 +274,10 @@
</div> </div>
<div class="scroll scroll-bg"> <div class="scroll scroll-bg">
<h6 class="i-title">实验系统</h6> <h6 class="i-title">实验系统</h6>
<scroll class="scroll-wrap" :data="system3" :class-option="{limitMoveNum: 2, direction: 2}"> <scroll class="scroll-wrap" :data="system3" :class-option="{ limitMoveNum: 2, direction: 2 }">
<ul class="scroll-list" ref="client"> <ul class="scroll-list" ref="client">
<li v-for="(item, i) in system3" :key="i"> <li v-for="(item, i) in system3" :key="i">
<img :src="require('@/assets/img/zxy/system3/icon' + (i + 1) +'.png')" alt=""> <img :src="require('@/assets/img/zxy/system3/icon' + (i + 1) + '.png')" alt="">
<h6>{{ item.title }}</h6> <h6>{{ item.title }}</h6>
<p class="des">{{ item.des }}</p> <p class="des">{{ item.des }}</p>
</li> </li>
@ -307,9 +313,9 @@ import util from '@/libs/util'
import WOW from 'wow.js' import WOW from 'wow.js'
import scroll from 'vue-seamless-scroll' import scroll from 'vue-seamless-scroll'
export default { export default {
data() { data () {
return { return {
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
active: '', active: '',
// //
system1: [ system1: [
@ -421,21 +427,21 @@ export default {
components: { components: {
scroll scroll
}, },
mounted() { mounted () {
new WOW().init() new WOW().init()
}, },
methods: { methods: {
toPart(i){ toPart (i) {
this.active = i this.active = i
document.querySelector(`#part${i}`).scrollIntoView() document.querySelector(`#part${i}`).scrollIntoView()
}, },
// //
topping() { topping () {
document.documentElement.scrollTop = 0 document.documentElement.scrollTop = 0
document.body.scrollTop = 0 document.body.scrollTop = 0
}, },
// //
toTrial() { toTrial () {
window.open('https://www.wjx.top/vm/wFCPCFp.aspx') window.open('https://www.wjx.top/vm/wFCPCFp.aspx')
}, },
} }
@ -444,47 +450,59 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
@import url(../../../plugins/wow/animate.css); @import url(../../../plugins/wow/animate.css);
.wrap{
.wrap {
position: relative; position: relative;
background-color: #F3F6FA; background-color: #F3F6FA;
.screen { .screen {
position: absolute; position: absolute;
top: -1000px; top: -1000px;
} }
.banner { .banner {
background: linear-gradient(143deg, #376FF7 0%, #479DF8 100%); background: linear-gradient(143deg, #376FF7 0%, #479DF8 100%);
.slide { .slide {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 100%; height: 100%;
} }
.slide1 { .slide1 {
background: url(../../../assets/img/zxy/banner-bg1-1.png) no-repeat, background: url(../../../assets/img/zxy/banner-bg1-1.png) no-repeat,
url(../../../assets/img/zxy/banner-bg1-2.png) bottom right/auto no-repeat; url(../../../assets/img/zxy/banner-bg1-2.png) bottom right/auto no-repeat;
} }
.slide2 { .slide2 {
background: url(../../../assets/img/zxy/banner-bg2-1.png) no-repeat, background: url(../../../assets/img/zxy/banner-bg2-1.png) no-repeat,
url(../../../assets/img/zxy/banner-bg2-2.png) bottom right/auto no-repeat; url(../../../assets/img/zxy/banner-bg2-2.png) bottom right/auto no-repeat;
} }
.slide3 { .slide3 {
background: url(../../../assets/img/zxy/banner-bg3-1.png) no-repeat; background: url(../../../assets/img/zxy/banner-bg3-1.png) no-repeat;
} }
.texts { .texts {
max-width: 540px; max-width: 540px;
margin-right: 230px; margin-right: 230px;
} }
.name { .name {
margin-bottom: 30px; margin-bottom: 30px;
} }
.des { .des {
margin-bottom: 35px; margin-bottom: 35px;
font-size: 18px; font-size: 18px;
line-height: 25px; line-height: 25px;
color: #fff; color: #fff;
} }
.btns { .btns {
display: flex; display: flex;
a { a {
width: 96px; width: 96px;
text-align: center; text-align: center;
@ -492,29 +510,34 @@ export default {
line-height: 36px; line-height: 36px;
border-radius: 6px; border-radius: 6px;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
opacity: .9; opacity: .9;
} }
} }
} }
.btn1 { .btn1 {
color: #fff; color: #fff;
border: 1px solid; border: 1px solid;
} }
.btn2 { .btn2 {
margin-left: 16px; margin-left: 16px;
color: #3B79F7; color: #3B79F7;
background-color: #fff; background-color: #fff;
} }
} }
.i-title{
.i-title {
z-index: 1; z-index: 1;
position: relative; position: relative;
margin-bottom: 37px; margin-bottom: 37px;
font-size: 30px; font-size: 30px;
text-align: center; text-align: center;
color: #0B1D30; color: #0B1D30;
&:after{
&:after {
content: ''; content: '';
position: absolute; position: absolute;
bottom: -10px; bottom: -10px;
@ -525,12 +548,14 @@ export default {
background-color: #006EFF; background-color: #006EFF;
} }
} }
.inner{
.inner {
position: relative; position: relative;
width: 1200px; width: 1200px;
padding: 67px 0; padding: 67px 0;
margin: 0 auto; margin: 0 auto;
} }
.en { .en {
position: absolute; position: absolute;
top: 77px; top: 77px;
@ -542,63 +567,76 @@ export default {
color: #E5EBF1; color: #E5EBF1;
transform: translate(-50%); transform: translate(-50%);
} }
.intro{
.intro {
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
align-items: center; align-items: center;
padding: 45px 0 32px; padding: 45px 0 32px;
background-color: #fff; background-color: #fff;
li{
li {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
transition: .3s; transition: .3s;
&.active{
&.active {
.text { .text {
color: #007EFF; color: #007EFF;
} }
} }
&:hover{
&:hover {
margin-top: -15px; margin-top: -15px;
.text { .text {
color: #007EFF; color: #007EFF;
} }
} }
} }
img{
img {
width: 50px; width: 50px;
margin-right: 15px; margin-right: 15px;
} }
.text { .text {
font-size: 18px; font-size: 18px;
color: #0B1D30; color: #0B1D30;
transition: .5s; transition: .5s;
} }
} }
.none{
.none {
padding: 50px 0; padding: 50px 0;
text-align: center; text-align: center;
img{
img {
width: 324px; width: 324px;
margin-bottom: 42px; margin-bottom: 42px;
} }
.text{
.text {
font-size: 12px; font-size: 12px;
color: #333; color: #333;
} }
} }
.pic { .pic {
position: relative; position: relative;
width: 1200px; width: 1200px;
padding: 64px 48px; padding: 64px 48px;
margin: 60px auto; margin: 60px auto;
background: url(../../../assets/img/zxy/intro-bg.png) no-repeat; background: url(../../../assets/img/zxy/intro-bg.png) no-repeat;
& > h6 {
&>h6 {
margin-bottom: 30px; margin-bottom: 30px;
font-size: 36px; font-size: 36px;
color: #fff; color: #fff;
line-height: 50px; line-height: 50px;
} }
.des { .des {
width: 658px; width: 658px;
margin-bottom: 30px; margin-bottom: 30px;
@ -606,36 +644,44 @@ export default {
color: #fff; color: #fff;
line-height: 30px; line-height: 30px;
} }
.bg { .bg {
position: absolute; position: absolute;
top: -20px; top: -20px;
right: 23px; right: 23px;
} }
.des-list { .des-list {
display: flex; display: flex;
justify-content: center; justify-content: center;
& > li {
&>li {
min-width: 225px; min-width: 225px;
padding: 7px 25px 26px 7px; padding: 7px 25px 26px 7px;
margin-right: 16px; margin-right: 16px;
border-radius: 16px; border-radius: 16px;
background-color: #fff; background-color: #fff;
box-shadow: 0px 2px 19px 0px rgba(49,106,209,0.16); box-shadow: 0px 2px 19px 0px rgba(49, 106, 209, 0.16);
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
} }
} }
.des-title { .des-title {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 20px; font-size: 20px;
color: #007EFF; color: #007EFF;
img { img {
margin-right: -8px; margin-right: -8px;
} }
} }
.detail { .detail {
margin: 10px 0 0 24px; margin: 10px 0 0 24px;
li { li {
display: flex; display: flex;
align-items: center; align-items: center;
@ -643,6 +689,7 @@ export default {
color: #0B1D30; color: #0B1D30;
line-height: 25px; line-height: 25px;
white-space: nowrap; white-space: nowrap;
&::before { &::before {
content: ''; content: '';
width: 2px; width: 2px;
@ -654,37 +701,47 @@ export default {
} }
} }
} }
.scroll { .scroll {
padding-bottom: 80px; padding-bottom: 80px;
} }
.scroll-bg { .scroll-bg {
background: url(../../../assets/img/zxy/scroll-bg.png) (0 40px)/100% 100% no-repeat; background: url(../../../assets/img/zxy/scroll-bg.png) (0 40px)/100% 100% no-repeat;
} }
.scroll-wrap { .scroll-wrap {
width: 100%; width: 100%;
margin: 70px 0 30px; margin: 70px 0 30px;
overflow: hidden; overflow: hidden;
} }
.scroll-list { .scroll-list {
display: flex; display: flex;
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: none; display: none;
} }
li { li {
width: 276px; width: 276px;
height: 346px; height: 346px;
text-align: center; text-align: center;
&:hover { &:hover {
padding: 10px 40px; padding: 10px 40px;
text-align: left; text-align: left;
border-radius: 10px; border-radius: 10px;
background: url(../../../assets/img/zxy/scroll-hover.png) 0 0/100% 100% no-repeat; background: url(../../../assets/img/zxy/scroll-hover.png) 0 0/100% 100% no-repeat;
img { img {
display: none; display: none;
} }
h6 { h6 {
font-size: 18px; font-size: 18px;
color: #fff; color: #fff;
&:after { &:after {
content: ''; content: '';
display: block; display: block;
@ -694,6 +751,7 @@ export default {
background-color: rgba(255, 255, 255, 0.19); background-color: rgba(255, 255, 255, 0.19);
} }
} }
.des { .des {
width: auto; width: auto;
color: #fff; color: #fff;
@ -702,11 +760,13 @@ export default {
} }
} }
} }
h6 { h6 {
margin: 30px 0 15px; margin: 30px 0 15px;
font-size: 20px; font-size: 20px;
color: #333; color: #333;
} }
.des { .des {
width: 180px; width: 180px;
text-align: left; text-align: left;
@ -716,22 +776,26 @@ export default {
@include mul-ellipsis(2); @include mul-ellipsis(2);
} }
} }
.card { .card {
margin-bottom: 100px; margin-bottom: 100px;
.card-list { .card-list {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin-top: 70px; margin-top: 70px;
} }
li { li {
width: 320px; width: 320px;
height: 356px; height: 356px;
padding: 7px; padding: 7px;
margin-right: 14px; margin-right: 14px;
background-color: #fff; background-color: #fff;
box-shadow: 0px 5px 20px 0px rgba(98,117,163,0.08); box-shadow: 0px 5px 20px 0px rgba(98, 117, 163, 0.08);
border-radius: 10px; border-radius: 10px;
h6 { h6 {
margin: 24px 0 16px; margin: 24px 0 16px;
font-size: 18px; font-size: 18px;
@ -739,18 +803,22 @@ export default {
color: #0B1D30; color: #0B1D30;
transition: .5s; transition: .5s;
} }
&:hover { &:hover {
img { img {
transform: scale(1.05); transform: scale(1.05);
} }
h6 { h6 {
margin-top: 30px; margin-top: 30px;
} }
} }
} }
img { img {
transition: .5s; transition: .5s;
} }
.des { .des {
width: 254px; width: 254px;
margin: 0 auto; margin: 0 auto;
@ -759,16 +827,20 @@ export default {
line-height: 20px; line-height: 20px;
} }
} }
.card-bg { .card-bg {
background: #fff url(../../../assets/img/zxy/card-bg.png) (0 40px)/100% 100% no-repeat; background: #fff url(../../../assets/img/zxy/card-bg.png) (0 40px)/100% 100% no-repeat;
} }
@keyframes rotate { @keyframes rotate {
0% { 0% {
transform: rotate(0); transform: rotate(0);
} }
50% { 50% {
transform: rotate(180deg); transform: rotate(180deg);
} }
100% { 100% {
transform: rotate(360deg); transform: rotate(360deg);
} }

@ -64,7 +64,7 @@ export default {
page: +this.$route.query.page || 1, page: +this.$route.query.page || 1,
pageSize: 10, pageSize: 10,
multipleSelection: [], multipleSelection: [],
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
} }
}, },
components: { components: {

@ -93,7 +93,7 @@ export default {
name: '考核' name: '考核'
}, },
], ],
token: Util.local.get(Setting.tokenKey), token: Util.session.get(Setting.tokenKey),
}; };
}, },
created () { created () {

@ -275,7 +275,7 @@ export default {
reportId: this.$route.query.reportId, reportId: this.$route.query.reportId,
fromTheory: this.$route.query.theory, // fromTheory: this.$route.query.theory, //
matchName: this.$route.query.matchName, // matchName: this.$route.query.matchName, //
token: Util.local.get(Setting.tokenKey), token: Util.session.get(Setting.tokenKey),
title: "实验报告", title: "实验报告",
form: { form: {
className: "", className: "",

@ -354,7 +354,7 @@ import Setting from '@/setting'
export default { export default {
data () { data () {
return { return {
token: Util.local.get(Setting.tokenKey), token: Util.session.get(Setting.tokenKey),
time: 2, time: 2,
times: [ times: [
{ {

@ -3,31 +3,22 @@
<div class="left"> <div class="left">
<div class="inner"> <div class="inner">
<div class="text-center"> <div class="text-center">
<img :src="avatar" <img :src="avatar" class="avatar" />
class="avatar" /> <el-upload :headers="{ token }" :action="this.api.uploadUserAvatars" name="file" :limit="10"
<el-upload :headers="{token}" :show-file-list="false" :on-success="changeAvatar">
:action="this.api.uploadUserAvatars" <el-button type="text" size="small">点击更换头像</el-button>
name="file"
:limit="10"
:show-file-list="false"
:on-success="changeAvatar">
<el-button type="text"
size="small">点击更换头像</el-button>
</el-upload> </el-upload>
</div> </div>
<ul class="menu"> <ul class="menu">
<li v-for="item in typeList" <li v-for="item in typeList" :key="item.index" :class="{ active: item.index == active }">
:key="item.index"
:class="{active: item.index == active}">
{{ item.title }} {{ item.title }}
</li> </li>
</ul> </ul>
</div> </div>
</div> </div>
<div class="right"> <div class="right">
<info ref="info" <info ref="info" @updateStatus="updateStatus"></info>
@updateStatus="updateStatus"></info>
</div> </div>
</div> </div>
</template> </template>
@ -40,7 +31,7 @@ import util from '@/libs/util'
export default { export default {
data () { data () {
return { return {
token: util.local.get(Setting.tokenKey), token: util.session.get(Setting.tokenKey),
typeList: [ typeList: [
{ {
index: '1', index: '1',
@ -97,27 +88,33 @@ export default {
display: flex; display: flex;
width: $min-width; width: $min-width;
padding: 12px 0 0; padding: 12px 0 0;
.left { .left {
margin-right: 12px; margin-right: 12px;
background-color: #fff; background-color: #fff;
box-shadow: 2px 0px 6px 0px #eeeeee; box-shadow: 2px 0px 6px 0px #eeeeee;
.inner { .inner {
width: 170px; width: 170px;
padding: 20px 0; padding: 20px 0;
} }
.avatar { .avatar {
width: 80px; width: 80px;
height: 80px; height: 80px;
border-radius: 50%; border-radius: 50%;
} }
.menu { .menu {
margin-top: 32px; margin-top: 32px;
li { li {
padding: 0 20px; padding: 0 20px;
color: #303133; color: #303133;
font-size: 14px; font-size: 14px;
line-height: 38px; line-height: 38px;
cursor: pointer; cursor: pointer;
&.active { &.active {
color: #fff; color: #fff;
background-color: #006eff; background-color: #006eff;
@ -125,6 +122,7 @@ export default {
} }
} }
} }
.right { .right {
flex: 1; flex: 1;
} }

@ -432,7 +432,7 @@ export default {
}, },
destroyed () { destroyed () {
// //
Util.local.get(Setting.tokenKey) && this.courseId && this.$post(this.api.playRecordSave, { Util.session.get(Setting.tokenKey) && this.courseId && this.$post(this.api.playRecordSave, {
courseId: this.courseId, courseId: this.courseId,
courseType: 0, courseType: 0,
playTime: Math.ceil((Date.now() - this.startTime) / 1000 / 60) playTime: Math.ceil((Date.now() - this.startTime) / 1000 / 60)
@ -899,7 +899,7 @@ export default {
// python // python
toPython (projectId) { toPython (projectId) {
const id = this.systemIds const id = this.systemIds
let token = Util.local.get(Setting.tokenKey); let token = Util.session.get(Setting.tokenKey);
Util.cookies.set('assessmentId', '', -1) Util.cookies.set('assessmentId', '', -1)
Util.cookies.set('classId', '', -1) Util.cookies.set('classId', '', -1)
Util.cookies.set('startTime', '', -1) Util.cookies.set('startTime', '', -1)
@ -940,7 +940,7 @@ export default {
this.curProject = curProject.projectId this.curProject = curProject.projectId
} }
const { systemId } = curProject const { systemId } = curProject
let token = Util.local.get(Setting.tokenKey) let token = Util.session.get(Setting.tokenKey)
this.third = curProject.type === 2 ? (curProject.systemId === 28 ? 'low' : 'ai') : '' this.third = curProject.type === 2 ? (curProject.systemId === 28 ? 'low' : 'ai') : ''
if (systemId == 11) { if (systemId == 11) {
// //

@ -174,9 +174,9 @@ export default {
numToLetter: Util.numToLetter, numToLetter: Util.numToLetter,
arabicToChinese: Util.arabicToChinese, arabicToChinese: Util.arabicToChinese,
headers: { headers: {
token: Util.local.get(Setting.tokenKey) token: Util.session.get(Setting.tokenKey)
}, },
token: Util.local.get(Setting.tokenKey), token: Util.session.get(Setting.tokenKey),
paperId: +this.$route.query.paperId, // id paperId: +this.$route.query.paperId, // id
cid: +this.$route.query.cid, cid: +this.$route.query.cid,
mallId: +this.$route.query.mallId || '', mallId: +this.$route.query.mallId || '',

@ -273,7 +273,7 @@ export default {
data () { data () {
return { return {
timer: null, timer: null,
token: Util.local.get(Setting.tokenKey), token: Util.session.get(Setting.tokenKey),
fromOffical: !!this.$route.query.q, // fromOffical: !!this.$route.query.q, //
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"], statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""], endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
@ -409,7 +409,7 @@ export default {
sequence: form.sequence || null, sequence: form.sequence || null,
keyWord: this.keyword keyWord: this.keyword
} }
this.$post(this.api[Util.local.get(Setting.tokenKey) ? 'competitionAfterLogin' : 'notLoggedInBeforeStudentEvents'], data).then(async ({ data }) => { this.$post(this.api[Util.session.get(Setting.tokenKey) ? 'competitionAfterLogin' : 'notLoggedInBeforeStudentEvents'], data).then(async ({ data }) => {
const list = data.records const list = data.records
let result = [] let result = []
// 4 // 4
@ -486,7 +486,7 @@ export default {
total = startTime - now total = startTime - now
break break
} else if (now >= startTime && now <= endTime) { // } else if (now >= startTime && now <= endTime) { //
if ((item.whetherToSignUp === 0 || !Util.local.get(Setting.tokenKey)) && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', e.count ? '已提交' : '进入' + e.stageName) // if ((item.whetherToSignUp === 0 || !Util.session.get(Setting.tokenKey)) && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', e.count ? '已提交' : '进入' + e.stageName) //
this.$set(item, 'endText', '阶段结束') this.$set(item, 'endText', '阶段结束')
curStage = e curStage = e
total = endTime - now total = endTime - now
@ -734,7 +734,7 @@ export default {
const { status, id } = item const { status, id } = item
const { competitionType } = item const { competitionType } = item
// //
if (Util.local.get(Setting.tokenKey)) { if (Util.session.get(Setting.tokenKey)) {
this.curItem = item this.curItem = item
if (status == 4) { // if (status == 4) { //
// //
@ -798,7 +798,7 @@ export default {
// python // python
toPython () { toPython () {
const form = this.curItem.curStage const form = this.curItem.curStage
let token = Util.local.get(Setting.tokenKey); let token = Util.session.get(Setting.tokenKey);
Util.cookies.set('assessmentId', '', -1) Util.cookies.set('assessmentId', '', -1)
Util.cookies.set('startTime', '', -1) Util.cookies.set('startTime', '', -1)
Util.cookies.set('stopTime', '', -1) Util.cookies.set('stopTime', '', -1)
@ -841,7 +841,7 @@ export default {
window.open(this.$router.resolve(`/theoryExam?competitionId=${form.id}&stageId=${stageId}&teamId=${teamId}`).href, 'theory') window.open(this.$router.resolve(`/theoryExam?competitionId=${form.id}&stageId=${stageId}&teamId=${teamId}`).href, 'theory')
this.choosing = false this.choosing = false
} else { } else {
let token = Util.local.get(Setting.tokenKey) let token = Util.session.get(Setting.tokenKey)
if (systemId == 11) { if (systemId == 11) {
// //
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true` location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`

@ -15,7 +15,7 @@ service.defaults.headers.post["Content-Type"] = "application/json;charset=UTF-8"
// 请求拦截器 // 请求拦截器
service.interceptors.request.use(config => { service.interceptors.request.use(config => {
Util.getToken(); Util.getToken();
let token = Util.local.get(Setting.tokenKey) let token = Util.session.get(Setting.tokenKey)
if (token) config.headers.token = token if (token) config.headers.token = token
return config return config
}, err => { }, err => {

@ -6,7 +6,7 @@ const whiteList = Setting.whiteList // 白名单
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
const officalTag = from.query.q && !to.query.q ? ((to.fullPath.includes('?') ? '&' : '?') + `q=${Date.now()}`) : '' // 安财赛事专用标识 const officalTag = from.query.q && !to.query.q ? ((to.fullPath.includes('?') ? '&' : '?') + `q=${Date.now()}`) : '' // 安财赛事专用标识
document.title = to.path === '/screenShow' || to.path === '/screenShowPro' ? '安徽省绿色食品全产业链数据可视化看板' : Setting.titleSuffix + '-' + to.meta.title document.title = to.path === '/screenShow' || to.path === '/screenShowPro' ? '安徽省绿色食品全产业链数据可视化看板' : Setting.titleSuffix + '-' + to.meta.title
const role = util.local.get(Setting.tokenKey); const role = util.session.get(Setting.tokenKey);
if (!role && !whiteList.includes(to.path)) { if (!role && !whiteList.includes(to.path)) {
next('/login' + officalTag) next('/login' + officalTag)
} else if (role && to.path === '/login') { } else if (role && to.path === '/login') {

@ -31,7 +31,7 @@ if (isDev) {
host = "http://118.31.167.228/"; // 测试服 host = "http://118.31.167.228/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服 // host = 'https://www.occupationlab.com/' // 正式服
const ip = localStorage.getItem('localIp') const ip = localStorage.getItem('localIp')
const ips = ['http://192.168.31.217:9000/', 'http://192.168.31.51:9000/', 'http://118.31.167.228/'] const ips = ['http://192.168.31.217:9000/', 'http://192.168.31.51:9000/', 'https://www.occupationlab.com/']
host = ips[+ip] host = ips[+ip]
// host = 'http://192.168.31.51:9000/' // host = 'http://192.168.31.51:9000/'
} else if (isSq) { } else if (isSq) {

@ -88,7 +88,7 @@ export default {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
post(api.logout).then(() => { post(api.logout).then(() => {
util.local.remove(Setting.storeKey) util.local.remove(Setting.storeKey)
util.local.remove(Setting.tokenKey) util.session.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') util.cookies.remove('customerName')

Loading…
Cancel
Save