dev_2022-06-14
yujialong 3 years ago
parent 3b9fe3de0f
commit a468ef88a6
  1. BIN
      src/assets/img/index/index0.png
  2. 3
      src/pages/account/login/index.vue
  3. 2
      src/pages/match/details/index.vue
  4. 23
      src/pages/match/list/index.vue
  5. 19
      src/pages/touristMatch/list/index.vue
  6. 4
      src/setting.js

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 135 KiB

@ -148,6 +148,7 @@ import { mapState, mapMutations, mapActions } from "vuex";
import util from "@/libs/util"; import util from "@/libs/util";
import Setting from "@/setting"; import Setting from "@/setting";
import axios from "axios" import axios from "axios"
import { Loading } from 'element-ui'
export default { export default {
data: function() { data: function() {
return { return {
@ -323,7 +324,7 @@ export default {
util.cookies.remove('serverLogin') util.cookies.remove('serverLogin')
this.reloadIndex() this.reloadIndex()
util.successMsg('登录成功') util.successMsg('登录成功')
this.$router.replace(this.toMatch ? '/touristMatch' : '/station') this.$router.replace(this.toMatch ? `/touristMatch` : '/station')
}, },
// //
submit() { submit() {

@ -221,7 +221,7 @@ export default {
// //
getNotice() { getNotice() {
this.$post(`${this.api.queryAnnouncementByContestId}?pageNum=1&pageSize=1000&contestId=${this.id}`).then(({ data }) => { this.$post(`${this.api.queryAnnouncementByContestId}?pageNum=1&pageSize=1000&contestId=${this.id}`).then(({ data }) => {
this.notices = data.records this.notices = data.records.filter(e => e.status) // status 0稿 1
}).catch(res => {}) }).catch(res => {})
}, },
// //

@ -173,7 +173,7 @@ export default {
form: { form: {
provinceId: '', provinceId: '',
cityId: '', cityId: '',
sequence: 1, // (1: 2.) sequence: 2, // (1: 2.)
competitionScope: 3, // (0: 1: 2.) competitionScope: 3, // (0: 1: 2.)
eventType: 1 // (1./2.广/3.) eventType: 1 // (1./2.广/3.)
}, },
@ -210,13 +210,13 @@ export default {
} }
], ],
sorts: [ sorts: [
{
id: 1,
name: '近期报名'
},
{ {
id: 2, id: 2,
name: '最近更新' name: '最近更新'
},
{
id: 1,
name: '近期报名'
} }
], ],
sort: 1, sort: 1,
@ -250,17 +250,20 @@ export default {
methods: { methods: {
getList() { getList() {
const { form } = this const { form } = this
this.$post(this.api.contestAfterLogin, { const { eventType, competitionScope } = form
const data = {
pageNum: this.page, pageNum: this.page,
pageSize: this.pageSize, pageSize: this.pageSize,
platformSource: 1, // (01) platformSource: 1, // (01)
cityId: form.cityId || null, cityId: form.cityId || null,
provinceId: form.provinceId || null, provinceId: form.provinceId || null,
sequence: form.sequence || null, sequence: form.sequence || null,
competitionScope: form.competitionScope, eventType,
eventType: form.eventType,
keyWord: this.keyword keyWord: this.keyword
}).then(({ data }) => { }
if (eventType === 2 && !competitionScope) form.competitionScope = 3 // 广competitionScope=03广
if (eventType !== 1) data.competitionScope = form.competitionScope //
this.$post(this.api.contestAfterLogin, data).then(({ data }) => {
this.listData = data.records this.listData = data.records
this.totals = data.total this.totals = data.total
const second = 1000; const second = 1000;
@ -531,7 +534,7 @@ export default {
background-color: #52C41A; background-color: #52C41A;
} }
&.playing { &.playing {
background-color: #32cf8b; background-color: #f96d6d;
} }
&.finish { &.finish {

@ -244,6 +244,7 @@ export default {
const second = 1000; const second = 1000;
const minute = second * 60; const minute = second * 60;
const hour = minute * 60; const hour = minute * 60;
const { token } = this
records.forEach((n, k) => { records.forEach((n, k) => {
// //
let now = new Date().getTime(); let now = new Date().getTime();
@ -257,7 +258,7 @@ export default {
n.status = 0; n.status = 0;
total = signUpStartTime - now total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { // } else if (now > signUpStartTime && now < signUpEndTime) { //
n.status = n.whetherToSignUp ? 2 : 1 // 12 n.status = !token || n.whetherToSignUp ? 2 : 1 // 12
total = signUpEndTime - now total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // , } else if (now > signUpEndTime && now < playStartTime) { // ,
n.status = 3; n.status = 3;
@ -291,10 +292,13 @@ export default {
this.totals = data.total this.totals = data.total
// toMatchidscrollIntoView // toMatchidscrollIntoView
if (this.toMatch) { const id = this.toMatch
if (id) {
this.$nextTick(() => { this.$nextTick(() => {
document.getElementById(this.toMatch).scrollIntoView() // document.getElementById(id).scrollIntoView()
this.SET_SOURCE('') this.SET_SOURCE('')
const item = records.find(e => e.id === id)
item && this.toDetail(item)
}) })
} }
this.loadIns.close() this.loadIns.close()
@ -333,10 +337,6 @@ export default {
}).catch(res => {}) : }).catch(res => {}) :
this.initData() this.initData()
}, },
changeType(type) {
this.way = type;
this.initData()
},
// //
changeScope(type) { changeScope(type) {
this.form.competitionScope = type this.form.competitionScope = type
@ -355,9 +355,6 @@ export default {
this.getData(); this.getData();
}, },
signup(item) { signup(item) {
this.SET_SOURCE(item.id)
this.$router.push('/login')
return
// status=2 // status=2
if (item.status == 2) { if (item.status == 2) {
if (util.local.get(Setting.tokenKey)) { if (util.local.get(Setting.tokenKey)) {
@ -532,7 +529,7 @@ export default {
background-color: #52C41A; background-color: #52C41A;
} }
&.playing { &.playing {
background-color: #32cf8b; background-color: #f96d6d;
} }
&.finish { &.finish {

@ -10,7 +10,7 @@ const isTest = url.includes('121.37.12.51'); //是否中台测试服
let systemPath = `${location.origin}/banksystem` let systemPath = `${location.origin}/banksystem`
let host = `${location.origin}/` let host = `${location.origin}/`
let uploadURL = `https://121.37.12.51/` let uploadURL = `http://121.37.12.51/`
let title = (isHh || isCH) ? '学生端' : '职站' let title = (isHh || isCH) ? '学生端' : '职站'
if (isPro) { if (isPro) {
@ -19,7 +19,7 @@ if (isPro) {
systemPath = `https://www.huorantech.cn/banksystem` systemPath = `https://www.huorantech.cn/banksystem`
} else if (isDev) { } else if (isDev) {
// 本地 // 本地
systemPath = `http://${location.hostname}:8093/#/` systemPath = `http://${location.hostname}:8093`
host = "http://121.37.12.51/"; // 中台测试服 host = "http://121.37.12.51/"; // 中台测试服
host = "http://192.168.31.151:9000/"; // 榕 host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.137:9000/"; // 赓 // host = "http://192.168.31.137:9000/"; // 赓

Loading…
Cancel
Save