|
@ -147,16 +147,16 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
import CDialog from '@c/CDialog' |
|
|
import CDialog from '@c/CDialog' |
|
|
import communityTable from './communityTable' |
|
|
import communityTable from './communityTable' |
|
|
import buildTable from './buildTable' |
|
|
import buildTable from './buildTable' |
|
|
import roomTable from './roomTable' |
|
|
import roomTable from './roomTable' |
|
|
import { requestPost } from "@/js/dai/request"; |
|
|
import { requestPost } from "@/js/dai/request"; |
|
|
import { mapGetters } from 'vuex' |
|
|
import { mapGetters } from 'vuex' |
|
|
import { Loading } from 'element-ui' // 引入Loading服务 |
|
|
import { Loading } from 'element-ui' // 引入Loading服务 |
|
|
|
|
|
|
|
|
let loading // 加载动画 |
|
|
let loading // 加载动画 |
|
|
export default { |
|
|
export default { |
|
|
data () { |
|
|
data () { |
|
|
return { |
|
|
return { |
|
|
filterText: '', |
|
|
filterText: '', |
|
@ -475,63 +475,63 @@ export default { |
|
|
components: { |
|
|
components: { |
|
|
communityTable, buildTable, roomTable |
|
|
communityTable, buildTable, roomTable |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
<style lang="scss" scoped > |
|
|
<style lang="scss" scoped > |
|
|
.div_main { |
|
|
.div_main { |
|
|
display: flex; |
|
|
display: flex; |
|
|
} |
|
|
} |
|
|
.scrollar { |
|
|
.scrollar { |
|
|
margin-top: 10px; |
|
|
margin-top: 10px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.div_tree { |
|
|
.div_tree { |
|
|
flex: 0 0 280px; |
|
|
flex: 0 0 280px; |
|
|
background-color: #ffffff; |
|
|
background-color: #ffffff; |
|
|
border-radius: 5px; |
|
|
border-radius: 5px; |
|
|
padding: 10px; |
|
|
padding: 10px; |
|
|
overflow-y: hidden; |
|
|
overflow-y: hidden; |
|
|
} |
|
|
} |
|
|
.filter_tree { |
|
|
.filter_tree { |
|
|
overflow-x: auto; |
|
|
overflow-x: auto; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.div_table { |
|
|
.div_table { |
|
|
margin-left: 15px; |
|
|
margin-left: 15px; |
|
|
// flex: 1; |
|
|
// flex: 1; |
|
|
width: calc(100% - 300px); |
|
|
width: calc(100% - 300px); |
|
|
background-color: #ffffff; |
|
|
background-color: #ffffff; |
|
|
border-radius: 5px; |
|
|
border-radius: 5px; |
|
|
padding: 10px; |
|
|
padding: 10px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.div_btn { |
|
|
.div_btn { |
|
|
margin-top: 20px; |
|
|
margin-top: 20px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.row { |
|
|
.row { |
|
|
padding: 10px; |
|
|
padding: 10px; |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
|
|
|
|
|
|
<style> |
|
|
<style> |
|
|
/* .aui-content > .el-tabs > .el-tabs__content { |
|
|
/* .aui-content > .el-tabs > .el-tabs__content { |
|
|
padding: 0px; |
|
|
padding: 0px; |
|
|
} */ |
|
|
} */ |
|
|
|
|
|
|
|
|
.el-tree-node:focus > .el-tree-node__content { |
|
|
.el-tree-node:focus > .el-tree-node__content { |
|
|
/* background-color: #ccc !important; */ |
|
|
/* background-color: #ccc !important; */ |
|
|
color: #2195fe; |
|
|
color: #2195fe; |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
<style lang="scss" scoped> |
|
|
<style lang="scss" scoped> |
|
|
.div_tree { |
|
|
.div_tree { |
|
|
/deep/ .el-scrollbar__wrap { |
|
|
/deep/ .el-scrollbar__wrap { |
|
|
overflow-x: hidden !important; |
|
|
overflow-x: hidden !important; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
|
|
|
|
|
|
<style lang="scss" scoped > |
|
|
<style lang="scss" scoped > |
|
|
@import "@/assets/scss/modules/visual/communityManage.scss"; |
|
|
@import "@/assets/scss/modules/visual/communityManage.scss"; |
|
|
</style> |
|
|
</style> |
|
|