赛事范围拆分(未完成)

dev_2022-06-14
yujialong 2 years ago
parent be06206e8b
commit a5e7c65d15
  1. 2
      src/setting.js
  2. 164
      src/views/match/add/index.vue

@ -10,7 +10,7 @@ let host = `${location.origin}/`
if (isDev) { if (isDev) {
jumpPath = 'http://192.168.31.125:8087/' // 本地调试-需要启动本地判分点系统 jumpPath = 'http://192.168.31.125:8087/' // 本地调试-需要启动本地判分点系统
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/'// 赓
} else if (isPro) { } else if (isPro) {
jumpPath = 'https://www.huorantech.cn/judgmentPoint/' jumpPath = 'https://www.huorantech.cn/judgmentPoint/'

@ -143,16 +143,21 @@
</div> </div>
<el-dialog title="请勾选院校" :visible.sync="rangeVisible" width="580px" custom-class="range-dia" :close-on-click-modal="false"> <el-dialog title="请勾选院校" :visible.sync="rangeVisible" width="580px" custom-class="range-dia" :close-on-click-modal="false">
<el-cascader <el-select v-model="rangeForm.provinceId" multiple filterable clearable placeholder="请选择省份" @change="getCity" @clear="clearProvince">
ref="range" <el-option v-for="(item,index) in provinces" :key="index" :label="item.provinceName" :value="item.provinceId"></el-option>
v-model="range" </el-select>
:props="props"
:show-all-levels="false" <el-select v-model="rangeForm.cityId" multiple filterable clearable placeholder="请选择城市" :disabled="rangeForm.provinceId ? false : true" @change="getSchool">
clearable <el-option v-for="(item,index) in cities" :key="index" :label="item.cityName" :value="item.cityId"></el-option>
filterable </el-select>
:before-filter="beforeFilter"
:options="rangeList" <el-select v-if="rangeForm.cityId.length" v-model="rangeForm.schoolId" multiple filterable clearable placeholder="请选择学校">
@input.native="rangeSearch"></el-cascader> <el-option v-for="(item,index) in schools" :key="index" :label="item.schoolName" :value="item.schoolId"></el-option>
</el-select>
<el-select v-else v-model="rangeForm.schoolId" multiple filterable clearable placeholder="请选择学校">
<el-option v-for="(item,index) in allSchool" :key="index" :label="item.schoolName" :value="item.schoolId"></el-option>
</el-select>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button size="small" @click="rangeVisible = false"> </el-button> <el-button size="small" @click="rangeVisible = false"> </el-button>
<el-button size="small" type="primary" @click="rangeSubmit"> </el-button> <el-button size="small" type="primary" @click="rangeSubmit"> </el-button>
@ -208,73 +213,19 @@ export default {
range: [], range: [],
rangeInit: [], rangeInit: [],
rangeName: '', rangeName: '',
//
props: {
multiple: true,
checkStrictly: true,
lazy: true,
lazyLoad (node, resolve) {
//
const input = document.querySelector('.el-cascader__search-input')
console.log("🚀 ~ file: index.vue ~ line 219 ~ lazyLoad ~ input", input, node)
if (input && input.value) return resolve([])
const { level, value } = node
// console.log("🚀 ~ file: index.vue ~ line 221 ~ lazyLoad ~ level", node)
//
if (!level) {
that.$get(that.api.queryProvince).then(({ list }) => {
const data = []
list.map(e => {
data.push({
value: e.provinceId,
label: e.provinceName,
children: []
})
})
resolve(data)
}).catch(res => {})
} else if (level === 1) {
//
that.$get(that.api.queryCity, {
provinceId: value
}).then(({ list }) => {
const data = []
list.map(e => {
data.push({
provinceId: value,
value: e.cityId,
label: e.cityName
})
})
resolve(data)
}).catch(res => {})
} else if (level === 2) {
//
that.$get(that.api.getSchoolsByProvince, {
provinceId: node.data.provinceId,
cityId: value,
schoolName: ''
}).then(({ list }) => {
const data = []
list.map(e => {
data.push({
value: e.schoolId,
label: e.schoolName,
leaf: true
})
})
resolve(data)
}).catch(res => {})
} else {
resolve([])
}
}
},
submiting: false, submiting: false,
updateTime: 0, updateTime: 0,
rangeTimer: null, rangeTimer: null,
provinces: [],
cities: [],
schools: [], schools: [],
rangeList: [] rangeForm: {
provinceId: [],
cityId: [],
schoolId: []
},
allSchool: [],
curProvinceId: ''
}; };
}, },
components: { components: {
@ -311,7 +262,8 @@ export default {
}, },
mounted() { mounted() {
this.getData() this.getData()
this.getSchool() this.getProvince()
this.getAllSchool()
}, },
methods: { methods: {
getData() { getData() {
@ -365,37 +317,48 @@ export default {
showRange() { showRange() {
this.rangeVisible = true this.rangeVisible = true
}, },
// //
getSchool() { getProvince() {
this.$get(this.api.querySchoolData).then(({ list }) => { this.$get(this.api.queryProvince).then(({ list }) => {
const result = [] this.provinces = list
list.map(e => {
result.push({
value: e.schoolId,
label: e.schoolName,
leaf: true
})
})
this.schools = result
}).catch(res => {}) }).catch(res => {})
}, },
// //
beforeFilter() { clearProvince(){
return false this.rangeForm.cityId = ''
}, },
// //
rangeSearch(el) { getCity(val) {
clearTimeout(this.rangeTimer) const { rangeForm } = this
this.rangeTimer = setTimeout(() => { rangeForm.cityId = ''
const val = el.target.value this.curProvinceId = val[val.length - 1] // id
let result = this.schools.filter(e => e.label.includes(val)) // this.$get(this.api.queryCity, {
this.rangeList = val ? result : [] provinceId: this.curProvinceId
}, 500) }).then(({ list }) => {
this.cities = list
}).catch(res => {})
},
//
getSchool(val) {
this.$get(this.api.getSchoolsByProvince, {
provinceId: this.curProvinceId,
cityId: val[val.length - 1]
}).then(({ list }) => {
this.schools = list
}).catch(res => {})
},
//
getAllSchool() {
this.$get(this.api.querySchoolData).then(({ list }) => {
this.allSchool = list
}).catch(res => {})
}, },
// //
rangeSubmit() { rangeSubmit() {
// id // id
const data = [] const data = []
console.log("🚀 ~ file: index.vue ~ line 360 ~ rangeSubmit ~ data", this.rangeForm)
return
this.range.map(e => { this.range.map(e => {
data.push({ data.push({
provinceId: e[0] || '', provinceId: e[0] || '',
@ -679,7 +642,12 @@ $upload-lg-height: 150px;
margin-left: 32px; margin-left: 32px;
} }
} }
.range-dia {
.el-select {
width: 150px;
margin-right: 10px;
}
}
.add-btn { .add-btn {
display: flex; display: flex;
justify-content: center; justify-content: center;

Loading…
Cancel
Save