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.
43 lines
1.9 KiB
43 lines
1.9 KiB
4 years ago
|
<template>
|
||
|
<el-card shadow="never" class="aui-card--fill">
|
||
|
<!-- <div class="mod-sys__user">
|
||
|
<iframe style="height: 100vh; width:100vw;border: none;display: block;margin: 0 auto;transform: scale(0.8, 0.8) translate(-13%, -12%);" :src="URL" scrolling="no" frameborder="no" border="0"></iframe>
|
||
|
</div> -->
|
||
|
<iframe :src="URL" class="iframe" frameborder="no"/>
|
||
|
</el-card>
|
||
|
</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-measure-index?token=${Cookies.get('token')}`
|
||
|
},
|
||
|
methods: {
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.iframe {
|
||
|
width: 100%;
|
||
|
min-height: calc(calc(100vh - 50px - 38px - 30px) - 2px - 45px);
|
||
|
}
|
||
|
</style>
|