Browse Source

排班信息:过滤条件,班次下拉内容查询给定参数

java8
赵宏斌 6 months ago
parent
commit
e8fe05fcfa
  1. 8
      src/views/modules/scheduling/scheduling.vue

8
src/views/modules/scheduling/scheduling.vue

@ -316,7 +316,11 @@ export default {
})
},
getClassesList() {
getClassesList().then(({data}) => {
let params = {
site: null,
buNo: null
}
getClassesList(params).then(({data}) => {
if (data.code === 0) {
this.classesList = data.rows
} else {
@ -607,7 +611,7 @@ export default {
<el-option
v-for = "i in classesList"
:key = "i.code"
:label = "i.description"
:label = "i.code +' '+i.description"
:value = "i.code">
</el-option>
</el-select>

Loading…
Cancel
Save