You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.6 KiB
41 lines
1.6 KiB
<template>
|
|
<div class="">
|
|
<iframe :src="URL" class="iframe" frameborder="no"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Cookies from 'js-cookie'
|
|
export default {
|
|
data () {
|
|
return {
|
|
URL: ''
|
|
}
|
|
},
|
|
created () {
|
|
// 社区查询 main/shequ-index
|
|
// 导入记录 main/importRecord-index
|
|
// 基础信息-小区管理 main/base-community-community
|
|
// 基础信息-居民信息 main/base-resi
|
|
// 社区党建-党员风采 main/communityParty-elegant-index
|
|
// 社区党建-区域化党建-联建单位 main/communityParty-regionalParty-units
|
|
// 社区党建-区域化党建-联建活动 main/communityParty-regionalParty-activitys
|
|
// 社区服务-服务管理措施 main/communityService-measure-index
|
|
// 社区服务-社会组织 main/communityService-shzz-index
|
|
// 社区服务-党群服务中心 main/communityService-dqfwzx-index
|
|
// 社区服务-社区自组织 main/communityService-sqzzz-index
|
|
// 社区服务-九小场所巡查-巡查监管 main/communityService-ninePlaces-inspect-inspect
|
|
// 社区服务-九小场所巡查-九小场所管理 main/communityService-ninePlaces-places-places
|
|
// 社区服务-九小场所巡查-巡查人员管理 main/communityService-ninePlaces-team-team
|
|
this.URL = `${window.SITE_CONFIG['iframeBaseUrl']}/workSys-resiCate?token=${Cookies.get('token')}`
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.iframe {
|
|
width: 100%;
|
|
min-height: calc(calc(100vh - 50px - 38px - 30px) - 5px);
|
|
}
|
|
</style>
|
|
|