|
|
|
@ -34,7 +34,7 @@ |
|
|
|
|
</dl> |
|
|
|
|
</div> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
@click="$router.push('manage')">我的项目</el-button> |
|
|
|
|
@click="toManage">我的项目</el-button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="list"> |
|
|
|
@ -95,7 +95,8 @@ |
|
|
|
|
layout="total, prev, pager, next" |
|
|
|
|
:total="totals" |
|
|
|
|
@current-change="handleCurrentChange" |
|
|
|
|
:current-page="page"> |
|
|
|
|
:current-page="page" |
|
|
|
|
:page-size="pageSize"> |
|
|
|
|
</el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
@ -137,11 +138,10 @@ |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { mapState, mapMutations } from "vuex"; |
|
|
|
|
import { Loading } from "element-ui"; |
|
|
|
|
import Setting from "@/setting" |
|
|
|
|
import util from "@/libs/util" |
|
|
|
|
import Bus from '@/libs/bus' |
|
|
|
|
import qs from 'qs' |
|
|
|
|
export default { |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
@ -164,8 +164,8 @@ export default { |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
form: { |
|
|
|
|
filterSort: 0, |
|
|
|
|
whetherToSignUp: '' |
|
|
|
|
filterSort: this.$route.query.filterSort ? +this.$route.query.filterSort : 0, |
|
|
|
|
whetherToSignUp: this.$route.query.whetherToSignUp ? +this.$route.query.whetherToSignUp : '' |
|
|
|
|
}, |
|
|
|
|
sorts: [ |
|
|
|
|
{ |
|
|
|
@ -178,9 +178,9 @@ export default { |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
sort: 1, |
|
|
|
|
keyword: "", |
|
|
|
|
keyword: this.$route.query.keyword || '', |
|
|
|
|
searchTimer: null, |
|
|
|
|
page: 1, |
|
|
|
|
page: +this.$route.query.page || 1, |
|
|
|
|
pageSize: 10, |
|
|
|
|
totals: 0, |
|
|
|
|
listData: [], |
|
|
|
@ -200,6 +200,11 @@ export default { |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted () { |
|
|
|
|
const { query } = this.$route |
|
|
|
|
if (query.page) { |
|
|
|
|
this.$router.push('list').catch(() => { }) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// websocket实时刷新 |
|
|
|
|
Bus.$on('activitySocket', () => { |
|
|
|
|
this.getData() |
|
|
|
@ -211,9 +216,6 @@ export default { |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
...mapMutations('match', [ |
|
|
|
|
'SET_TYPE' |
|
|
|
|
]), |
|
|
|
|
getData () { |
|
|
|
|
this.clearTimer() |
|
|
|
|
const { form } = this |
|
|
|
@ -303,7 +305,18 @@ export default { |
|
|
|
|
this.form.filterSort = type |
|
|
|
|
this.initData() |
|
|
|
|
}, |
|
|
|
|
// 缓存当前页面和参数,详情页返回到列表的时候直接取该url |
|
|
|
|
setReferrer () { |
|
|
|
|
this.$store.commit('activity/setReferrer', `${this.$route.path}?${qs.stringify(this.form)}&keyword=${this.keyword}&page=${this.page}`) |
|
|
|
|
}, |
|
|
|
|
// 我的项目 |
|
|
|
|
toManage () { |
|
|
|
|
this.setReferrer() |
|
|
|
|
this.$router.push('manage') |
|
|
|
|
}, |
|
|
|
|
// 详情 |
|
|
|
|
toDetail (item) { |
|
|
|
|
this.setReferrer() |
|
|
|
|
this.$router.push(`/activity/details?id=${item.id}`); |
|
|
|
|
}, |
|
|
|
|
handleCurrentChange (val) { |
|
|
|
@ -358,50 +371,6 @@ export default { |
|
|
|
|
}).catch(() => { }) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 进入python系统 |
|
|
|
|
toPython () { |
|
|
|
|
const form = this.curItem.curStage |
|
|
|
|
let token = util.local.get(Setting.tokenKey); |
|
|
|
|
util.cookies.set('assessmentId', '', -1) |
|
|
|
|
util.cookies.set('startTime', '', -1) |
|
|
|
|
util.cookies.set('stopTime', '', -1) |
|
|
|
|
util.cookies.set('projectId', form.projectId) |
|
|
|
|
util.cookies.set('token', token) |
|
|
|
|
util.cookies.set('courseId', form.cid) |
|
|
|
|
util.cookies.set('curriculumName', escape(form.systemName)) |
|
|
|
|
util.cookies.set('systemId', form.systemId) |
|
|
|
|
util.cookies.set('competitionId', this.curItem.id) |
|
|
|
|
util.cookies.set('stageId', form.stageId) |
|
|
|
|
util.cookies.set('teamId', this.curItem.teamId) |
|
|
|
|
util.cookies.set('stopTime', form.endTime) |
|
|
|
|
util.cookies.set('resultsDetails', form.resultsDetails) |
|
|
|
|
util.cookies.set('resultAnnouncementTime', form.resultAnnouncementTime) |
|
|
|
|
util.cookies.set('fromManager', '', -1) |
|
|
|
|
// 8个python子系统都跳这个地址,子系统会通过cookie里的systemId识别展示哪套系统 |
|
|
|
|
location.href = process.env.NODE_ENV === 'development' ? |
|
|
|
|
`http://${location.hostname}:8085/#/` : |
|
|
|
|
Setting.isPro ? |
|
|
|
|
`https://${location.hostname}/pyTrials` : |
|
|
|
|
`${location.origin}/pyTrials` |
|
|
|
|
}, |
|
|
|
|
// 进入子系统 |
|
|
|
|
toSub () { |
|
|
|
|
const form = this.curItem |
|
|
|
|
const { systemId, projectId, cid, stageId } = form.curStage |
|
|
|
|
const competitionId = form.id |
|
|
|
|
const teamId = form.teamId |
|
|
|
|
let token = util.local.get(Setting.tokenKey); |
|
|
|
|
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` |
|
|
|
|
} else if (systemId == 12) { |
|
|
|
|
// 众筹系统 |
|
|
|
|
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}`); |
|
|
|
|
} else { |
|
|
|
|
// python系统 |
|
|
|
|
this.toPython() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|