diff --git a/src/views/modules/user/volunteerinfo-detail.vue b/src/views/modules/user/volunteerinfo-detail.vue index e94ea8b..17474c3 100644 --- a/src/views/modules/user/volunteerinfo-detail.vue +++ b/src/views/modules/user/volunteerinfo-detail.vue @@ -36,7 +36,21 @@ prop="identityNo"> {{dataForm.identityNo}} - + + + + + + + + { + this.getTeamList() this.$refs['dataForm'].resetFields() if (this.dataForm.id) { this.getInfo() @@ -121,6 +138,11 @@ export default { } }) }, + getTeamList () { + this.$http.get(`heart/volunteerteam/getSysAllTeamListByName`).then(({ data: res }) => { + this.teamList = res.data + }).catch(() => {}) + }, // 获取信息 getInfo: debounce( function () { @@ -185,3 +207,33 @@ export default { } } +