| | |
| | | </template> |
| | | |
| | | <script> |
| | | import { getList } from "@/api/mobile/orgnav/index"; //机构单位 |
| | | import { getChildNavList } from "@/api/mobile/public/arc"; //校园建筑 |
| | | import { |
| | | getListlivingFacilitiesr, |
| | | getListsupermarket, |
| | | getListmedical, |
| | | getListmail, |
| | | getListbathroom, |
| | | getListduplicate, |
| | | getListnetwork, |
| | | getListaed, |
| | | getListsignal, |
| | | } from "@/api/mobile/livingFacilities/index"; //生活设施 |
| | | import { getListparking } from "@/api/mobile/stop/index"; //停车场 |
| | | export default { |
| | | name: "mobilePopupOurAfter", |
| | | data() { |
| | |
| | | { |
| | | name: "机构单位", |
| | | icon: "el-icon-s-cooperation", |
| | | opendata: "openData1", |
| | | }, |
| | | { |
| | | name: "校园建筑", |
| | | opendata: "openData2", |
| | | icon: "el-icon-s-management", |
| | | }, |
| | | { |
| | | name: "生活设施", |
| | | opendata: "openData3", |
| | | icon: "el-icon-s-flag", |
| | | }, |
| | | ], |
| | | choiceDataDown: [ |
| | | { |
| | | name: "文化风景", |
| | | opendata: "openData4", |
| | | icon: "el-icon-s-opportunity", |
| | | }, |
| | | { |
| | | name: "出入口", |
| | | opendata: "openData5", |
| | | icon: "el-icon-s-promotion", |
| | | }, |
| | | { |
| | | name: "停车场", |
| | | opendata: "openData6", |
| | | icon: "el-icon-s-flag", |
| | | }, |
| | | ], |
| | | openData1: [ |
| | | { name: "党群机构", type: 1, method: getList }, |
| | | { name: "职能部处", type: 2, method: getList }, |
| | | { name: "直属及附属单位", type: 3, method: getList }, |
| | | { name: "教学与科研机构", type: 4, method: getList }, |
| | | { name: "其他机构", type: 5, method: getList }, |
| | | ], |
| | | openData2: [ |
| | | { name: "行政办公", type: 1, method: getChildNavList }, |
| | | { name: "教学科研", type: 2, method: getChildNavList }, |
| | | { name: "校内场馆", type: 3, method: getChildNavList }, |
| | | { name: "宿舍公寓", type: 4, method: getChildNavList }, |
| | | { name: "文化风景", type: 5, method: getChildNavList }, |
| | | { name: "家属住宅", type: 6, method: getChildNavList }, |
| | | { name: "其他楼宇", type: 7, method: getChildNavList }, |
| | | ], |
| | | openData3: [ |
| | | { name: "食堂餐厅", type: 1, method: getListlivingFacilitiesr }, |
| | | { name: "购物超市", type: 2, method: getListsupermarket }, |
| | | { name: "校内医疗", type: 3, method: getListmedical }, |
| | | { name: "邮寄快递", type: 4, method: getListmail }, |
| | | { name: "学生浴室", type: 5, method: getListbathroom }, |
| | | // { name: "圈存机", type: 6 ,method:getListlivingFacilitiesr}, |
| | | { name: "打字复印", type: 7, method: getListduplicate }, |
| | | { name: "AED", type: 8, method: getListaed }, |
| | | { name: "银行网点", type: 9, method: getListnetwork }, |
| | | { name: "通信营业厅", type: 10, method: getListsignal }, |
| | | ], |
| | | openData4: [ |
| | | { name: "文化风景", type: 1, method: getListlivingFacilitiesr }, |
| | | ], |
| | | openData5: [ |
| | | { name: "出入口", type: 1, method: getListlivingFacilitiesr }, |
| | | ], |
| | | openData6: [{ name: "停车场", type: 1, method: getListparking }], |
| | | }; |
| | | }, |
| | | mounted() {}, |
| | | methods: { |
| | | openBigPopup(val) { |
| | | let d = { |
| | | main: this[val.opendata], |
| | | qurey: val.name, |
| | | }; |
| | | this.$store.commit("MSET_POPUPOUROPENDATA", d); |
| | | this.$store.commit("MSET_BIGPOPUP", val); |
| | | }, |
| | | closeBigPopupAfter() { |