北尚诉办前端
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.

42 lines
1.6 KiB

4 years ago
<template>
4 years ago
<div class="">
4 years ago
<iframe :src="URL" class="iframe" frameborder="no"/>
4 years ago
</div>
4 years ago
</template>
<script>
import Cookies from 'js-cookie'
export default {
data () {
return {
URL: ''
}
},
created () {
// 社区查询 main/shequ-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']}/communityService-shzz-index?token=${Cookies.get('token')}`
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.iframe {
width: 100%;
3 years ago
// min-height: calc(calc(100vh - 50px - 38px - 30px) - 2px - 45px);
min-height: calc(100vh - 123px);
4 years ago
}
3 years ago
</style>