|
@@ -174,19 +174,9 @@
|
|
|
onShow() {
|
|
|
NET.request(API.getEnlistAbleStudent, {}, 'POST').then(res => {
|
|
|
this.studentList1 = res.data.row
|
|
|
- }).catch(error => {
|
|
|
- this.$refs.uTips.show({
|
|
|
- title: error.message,
|
|
|
- type: 'warning',
|
|
|
- })
|
|
|
})
|
|
|
NET.request(API.getSubscribeAbleList, {}, 'POST').then(res => {
|
|
|
this.studentList2 = res.data.row
|
|
|
- }).catch(error => {
|
|
|
- this.$refs.uTips.show({
|
|
|
- title: error.message,
|
|
|
- type: 'warning',
|
|
|
- })
|
|
|
})
|
|
|
},
|
|
|
onReady() {
|
|
@@ -205,11 +195,6 @@
|
|
|
id: this.venueId
|
|
|
}, 'POST').then(res => {
|
|
|
this.venueInfo = res.data
|
|
|
- }).catch(error => {
|
|
|
- this.$refs.uTips.show({
|
|
|
- title: error.message,
|
|
|
- type: 'warning',
|
|
|
- })
|
|
|
})
|
|
|
// 会员卡
|
|
|
NET.request(API.getMemberCardList, {venueId:this.venueId}, 'POST').then(res => {
|
|
@@ -225,12 +210,6 @@
|
|
|
checked: false
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
- }).catch(error => {
|
|
|
- this.$refs.uTips.show({
|
|
|
- title: error.message,
|
|
|
- type: 'warning',
|
|
|
- })
|
|
|
})
|
|
|
},
|
|
|
checkBox(item){
|