dev_202412
yujialong 3 months ago
parent 66649dc686
commit a5e95f7591
  1. 3
      src/pages/match/list/index.vue
  2. 3
      src/pages/touristMatch/list/index.vue
  3. 2
      src/setting.js

@ -525,7 +525,8 @@ export default {
// 4
if (this.fromOffical) {
list.forEach(e => {
(+e.id > 457 && +e.id < 462) && result.push(e)
const id = +e.id
if ((id > 457 && id < 462) || id === 533) result.push(e)
})
} else {
result = list

@ -415,7 +415,8 @@ export default {
// 4
if (this.fromOffical) {
list.forEach(e => {
(+e.id > 457 && +e.id < 462) && result.push(e)
const id = +e.id
if ((id > 457 && id < 462) || id === 533) result.push(e)
})
} else {
result = list

@ -11,7 +11,7 @@ const isZxy = url.includes('izhixinyun'); //是否是智信云
const isSq = url.includes('10.20.100.204'); // 商丘
let zcPath = `120.78.139.126:8879` // 众筹
let systemPath = `${location.origin}/banksystem`
let systemPath = `${location.origin}/systembank`
let sandPath = `${location.origin}/sandbox` // 沙盘地址
let host = `${location.origin}/`
// let host = `https://izhixinyun.com/`

Loading…
Cancel
Save