commit
This commit is contained in:
@@ -205,7 +205,7 @@ layout("/layouts/platform.html"){
|
|||||||
this.pageForm.totalCount = res.data.totalCount
|
this.pageForm.totalCount = res.data.totalCount
|
||||||
if(this.id) {
|
if(this.id) {
|
||||||
const activity = this.tableData.find(o => o.id === this.id)
|
const activity = this.tableData.find(o => o.id === this.id)
|
||||||
this.onOpen(activity)
|
this.onView(activity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ layout("/layouts/platform.html"){
|
|||||||
this.pageForm.totalCount = res.data.totalCount
|
this.pageForm.totalCount = res.data.totalCount
|
||||||
if(this.id) {
|
if(this.id) {
|
||||||
const activity = this.tableData.find(o => o.id === this.id)
|
const activity = this.tableData.find(o => o.id === this.id)
|
||||||
this.onOpen(activity)
|
this.onView(activity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ layout("/layouts/platform_h5.html"){
|
|||||||
fetchOne() {
|
fetchOne() {
|
||||||
this.$axios.post('/platform/family/manage/findOne', {id: this.id}).then((res) => {
|
this.$axios.post('/platform/family/manage/findOne', {id: this.id}).then((res) => {
|
||||||
if(res.code === 0) {
|
if(res.code === 0) {
|
||||||
this.onApply(res.data)
|
this.onView(res.data)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ layout("/layouts/platform_h5.html"){
|
|||||||
fetchOne() {
|
fetchOne() {
|
||||||
this.$axios.post('/platform/trainSignUp/manage/findOne', {id: this.id}).then((res) => {
|
this.$axios.post('/platform/trainSignUp/manage/findOne', {id: this.id}).then((res) => {
|
||||||
if(res.code === 0) {
|
if(res.code === 0) {
|
||||||
this.onApply(res.data)
|
this.onView(res.data)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user