<template>
|
<public-sector>
|
<template v-slot:tabs>
|
<public-tabs ref='refsRiskTabsData'></public-tabs>
|
</template>
|
<template v-slot:publicPart>
|
<public-table ref="refsRiskTableData"></public-table>
|
</template>
|
<!-- <template v-slot:video>-->
|
<!-- <public-video></public-video>-->
|
<!-- </template>-->
|
</public-sector>
|
</template>
|
|
<script>
|
|
import PublicTabs from '@components/base-page/RiskSource/PublicTabs'
|
import PublicTable from '@components/base-page/RiskSource/PublicTable'
|
// import PublicVideo from '@components/base-page/PublicVideo'
|
import PublicSector from '@components/base-page/PublicSector'
|
|
export default {
|
name: 'RiskSourceIndex',
|
props: ['riskSourceId'],
|
components: {
|
PublicSector,
|
PublicTabs,
|
PublicTable
|
// PublicVideo
|
},
|
mounted () {
|
this.$nextTick(() => {
|
this.refsData()
|
})
|
},
|
data () {
|
return {}
|
},
|
methods: {
|
refsData () {
|
const param = {
|
riskSourceId: this.riskSourceId
|
}
|
this.$refs.refsRiskTabsData.refsRiskDataTabs(param)
|
this.$refs.refsRiskTableData.refsRiskDataTable(param)
|
}
|
}
|
}
|
</script>
|
|
<style lang="less" scoped>
|
.public-bounced {
|
z-index: 2000;
|
position: absolute;
|
top: 35%;
|
left: 20%;
|
|
.public-bounced-title {
|
cursor: move;
|
height: 0.1rem;
|
padding: 10px 0;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
|
span {
|
color: #f4f7ff;
|
margin: 0 15px;
|
font-size: 14px;
|
}
|
|
i {
|
color: #C0C4CC;
|
margin: 0 15px;
|
font-size: 22px;
|
cursor: pointer;
|
}
|
|
i:hover {
|
color: #00fff6;
|
}
|
}
|
|
.public-bounced-content {
|
//padding: 0.1rem;
|
display: flex;
|
//align-items: center;
|
//justify-content: space-around;
|
|
.public-bounced-content-left {
|
//width: 4.8rem;
|
}
|
|
.public-bounced-content-right {
|
//width: 3rem;
|
margin-left: 0.1rem;
|
}
|
}
|
}
|
</style>
|