|
@@ -20,15 +20,15 @@
|
|
|
data() {
|
|
|
return {
|
|
|
orgList: [
|
|
|
- { id: '0001', name: '离岗在岗村医', description: '' },
|
|
|
- { id: '0002', name: '养老在存人员', description: '' },
|
|
|
+ { id: '0001', name: '养老在存人员', description: '' },
|
|
|
+ { id: '0002', name: '离岗在岗村医', description: '' },
|
|
|
],
|
|
|
selectedOrg: null // 当前选中的机构
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
selectOrg(org) {
|
|
|
- this.$router.push({ path: "/mainPage", query: { openId: this.openId, government: org.id } });
|
|
|
+ this.$router.push({ path: "/registerIndex", query: { openId: this.openId, government: org.id } });
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|