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 Setting from "@/setting";
import axios from "axios"
import { Loading } from 'element-ui'
export default {
data: function() {
return {
@ -323,7 +324,7 @@ export default {
util.cookies.remove('serverLogin')
this.reloadIndex()
util.successMsg('登录成功')
this.$router.replace(this.toMatch ? '/touristMatch' : '/station')
this.$router.replace(this.toMatch ? `/touristMatch` : '/station')
},
//
submit() {

@ -221,7 +221,7 @@ export default {
//
getNotice() {
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 => {})
},
//

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

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

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

Loading…
Cancel
Save