相关方人员显示不全bug修复
parent
419dd41376
commit
01edc5f766
|
@ -232,7 +232,6 @@ export default {
|
||||||
placeList: [],
|
placeList: [],
|
||||||
trainingTypeList: [],
|
trainingTypeList: [],
|
||||||
classSizeList: [
|
classSizeList: [
|
||||||
{ DICTIONARIES_ID: '1' },
|
|
||||||
{ DICTIONARIES_ID: '30' },
|
{ DICTIONARIES_ID: '30' },
|
||||||
{ DICTIONARIES_ID: '50' },
|
{ DICTIONARIES_ID: '50' },
|
||||||
{ DICTIONARIES_ID: '60' },
|
{ DICTIONARIES_ID: '60' },
|
||||||
|
@ -370,7 +369,13 @@ export default {
|
||||||
return row.USER_ID
|
return row.USER_ID
|
||||||
},
|
},
|
||||||
getPeopleList() {
|
getPeopleList() {
|
||||||
requestFN('/classMessage/getPeopleList', { BELONG_TO_CORP: this.util.BELONG_TO_CORP }).then((data) => {
|
let pageSize = 10
|
||||||
|
if (!this.form.CLASS_SIZE || this.form.CLASS_SIZE === 0) {
|
||||||
|
pageSize = 10
|
||||||
|
} else {
|
||||||
|
pageSize = this.form.CLASS_SIZE
|
||||||
|
}
|
||||||
|
requestFN('/classMessage/getPeopleList?showCount=' + pageSize + '¤tPage=1', { BELONG_TO_CORP: this.util.BELONG_TO_CORP }).then((data) => {
|
||||||
this.peopleList = data.varList
|
this.peopleList = data.varList
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
|
|
Loading…
Reference in New Issue