diff --git a/src/main/resources/views/platform/zhgh/democratic/executiveCommittee/delegationTwoPush/index.html b/src/main/resources/views/platform/zhgh/democratic/executiveCommittee/delegationTwoPush/index.html
index 892fccc1..acd1bb32 100644
--- a/src/main/resources/views/platform/zhgh/democratic/executiveCommittee/delegationTwoPush/index.html
+++ b/src/main/resources/views/platform/zhgh/democratic/executiveCommittee/delegationTwoPush/index.html
@@ -17,7 +17,7 @@ layout("/layouts/platform.html"){
filterable
placeholder="请选择教代会"
style="width:100%;"
- @change="doSearch"
+ @change="getAllDelegation(pageForm.teacherMeetId);doSearch()"
>
+
+
+
+
+
@@ -58,13 +65,14 @@ layout("/layouts/platform.html"){
fixed
type="index"
width="50">
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -36,7 +36,7 @@ const DELEGATION_TWO_PUSH_FORMAL_DIALOG = {
- 推选名额:{{delegationQuotaCount}}个
+ 投票名额:{{delegationQuotaCount}}个
+
+
+
+
+
@@ -76,15 +83,15 @@ layout("/layouts/platform.html"){
fixed
type="index"
width="50">
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
{{ $moment(row.pushDate).format('YYYY-MM-DD') }}
@@ -137,6 +144,8 @@ layout("/layouts/platform.html"){
unitOptions: [],
chooseUserTableData: [],
infoDialogVisible: false,
+
+ delegations: []
}
},
components: {},
@@ -177,11 +186,19 @@ layout("/layouts/platform.html"){
this.teacherMeets = resp.data
if (this.teacherMeets && this.teacherMeets.length > 0) {
this.$set(this.pageForm, 'teacherMeetId', this.teacherMeets[0].id)
+ this.getAllDelegation(this.teacherMeets[0].id)
this.pageData()
}
}
})
},
+ getAllDelegation(id) {
+ this.$axios.post("/platform/teacherCongress/common/listDelegation", {sessionId: id}).then(resp => {
+ if (resp.code === 0) {
+ this.delegations = resp.data
+ }
+ })
+ },
}
})