一张图等页面样式调整
This commit is contained in:
parent
af6bd8a2f0
commit
974f846573
|
|
@ -7,6 +7,12 @@
|
||||||
<div id="right" class="right"></div>
|
<div id="right" class="right"></div>
|
||||||
<div id="bottom" class="bottom"></div>
|
<div id="bottom" class="bottom"></div>
|
||||||
|
|
||||||
|
<div class="title_background"></div>
|
||||||
|
<div class="title"></div>
|
||||||
|
<div class="home" @click="goHome"></div>
|
||||||
|
<div class="fullScreen" @click="fullScreen"></div>
|
||||||
|
<div class="back" @click="goHome">返回首页</div>
|
||||||
|
|
||||||
<div class="switch switch1" :class="{ 'switch-active': isMapMarkActive === 1 }" @click="changeMapMark(1)">
|
<div class="switch switch1" :class="{ 'switch-active': isMapMarkActive === 1 }" @click="changeMapMark(1)">
|
||||||
<div class="icon"></div>
|
<div class="icon"></div>
|
||||||
<div class="label">企业</div>
|
<div class="label">企业</div>
|
||||||
|
|
@ -212,6 +218,12 @@
|
||||||
<div class="btn" :class="{ 'btn-active': btnActive === 3 }" @click="getCfjetj">处罚金额</div>
|
<div class="btn" :class="{ 'btn-active': btnActive === 3 }" @click="getCfjetj">处罚金额</div>
|
||||||
<div class="btn" :class="{ 'btn-active': btnActive === 4 }" @click="getRwwjtj">任务完结</div>
|
<div class="btn" :class="{ 'btn-active': btnActive === 4 }" @click="getRwwjtj">任务完结</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- <div class="detail-content" v-show="isMoved">-->
|
||||||
|
<!-- <div class="detail-btn" @click="getJctj">详情</div>-->
|
||||||
|
<!-- <div class="detail-btn" @click="getAjtj">详情</div>-->
|
||||||
|
<!-- <div class="detail-btn" @click="getCfjetj">详情</div>-->
|
||||||
|
<!-- <div class="detail-btn" @click="getRwwjtj">详情</div>-->
|
||||||
|
<!-- </div>-->
|
||||||
</div>
|
</div>
|
||||||
<div class="bg3" :style="{ transform: isMoved ? 'translateY(-210px)' : 'translateY(0)' }" @click="toggleMove"/>
|
<div class="bg3" :style="{ transform: isMoved ? 'translateY(-210px)' : 'translateY(0)' }" @click="toggleMove"/>
|
||||||
<div class="content" v-if="isMoved">
|
<div class="content" v-if="isMoved">
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<!-- 安全基础管理信息 -->
|
<!-- 安全基础管理信息 -->
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24" style="border-bottom: 1px solid #ebeef5;">
|
|
||||||
<div style="text-align: left; font-size: 16px; font-weight: 600; width: 100%; padding: 8px 0;">以下为基础指标项:(选填)</div>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="24" style="border-bottom: 1px solid #ebeef5; margin-bottom: 10px;">
|
<el-col :span="24" style="border-bottom: 1px solid #ebeef5; margin-bottom: 10px;">
|
||||||
<div style="text-align: center; font-size: 16px; font-weight: 600; width: 100%; padding: 8px 0;">安全管理机构人员</div>
|
<div style="text-align: center; font-size: 16px; font-weight: 600; width: 100%; padding: 8px 0;">安全管理机构人员</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
|
||||||
|
|
@ -312,6 +312,16 @@ function handleQuery(queryParams) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 详情信息
|
||||||
|
function handleDetail(row) {
|
||||||
|
dialogConfig.value.show = true
|
||||||
|
dialogConfig.value.mode = 'detail'
|
||||||
|
dialogConfig.value.title = '执法信息详情'
|
||||||
|
dialogConfig.value.loading = true
|
||||||
|
findOne(row)
|
||||||
|
}
|
||||||
|
|
||||||
function findOne(row) {
|
function findOne(row) {
|
||||||
apiConfig.value.api.findOne(row.enforcementId).then(res => {
|
apiConfig.value.api.findOne(row.enforcementId).then(res => {
|
||||||
dialogConfig.value.loading = false
|
dialogConfig.value.loading = false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue