2024-02-02 15:04:47 +08:00
|
|
|
<template>
|
2024-02-05 10:16:53 +08:00
|
|
|
<div class="benchWarp">
|
|
|
|
|
<!-- top -->
|
|
|
|
|
<div class="benchTop">
|
|
|
|
|
<!-- 合作企业概况 -->
|
|
|
|
|
<div class="bgWhite survey" style="height: calc(100vh - 120px);">
|
|
|
|
|
<!-- <img src="./index.jpeg" width="100%" height="100%"> -->
|
|
|
|
|
<iframe
|
|
|
|
|
name="iframeMap"
|
|
|
|
|
id="iframeMapViewComponent"
|
|
|
|
|
v-bind:src="getPageUrl"
|
|
|
|
|
width="100%"
|
|
|
|
|
height="100%"
|
|
|
|
|
frameborder="0"
|
|
|
|
|
scrolling="no"
|
|
|
|
|
ref="iframeDom"
|
|
|
|
|
></iframe>
|
2024-02-02 15:04:47 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-02-05 10:16:53 +08:00
|
|
|
<!-- bottom -->
|
|
|
|
|
<!-- 占位 -->
|
|
|
|
|
<div style="height: 35px;"></div>
|
|
|
|
|
</div>
|
2024-02-02 15:04:47 +08:00
|
|
|
</template>
|
|
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
<script>
|
2024-02-09 14:31:27 +08:00
|
|
|
import { getMapData } from '@/api/desk/notice'
|
2024-02-05 10:16:53 +08:00
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
getPageUrl: "/chengdu/index.html"
|
|
|
|
|
};
|
2024-02-09 14:31:27 +08:00
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
getMapData({
|
|
|
|
|
date: '2023-09',
|
|
|
|
|
province: '四川省'
|
|
|
|
|
}).then(res => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
})
|
2024-02-05 10:16:53 +08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-02-02 15:04:47 +08:00
|
|
|
<style scoped>
|
2024-02-05 10:16:53 +08:00
|
|
|
p {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
/* 底色 */
|
|
|
|
|
.bgWhite {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
/* 标题 */
|
|
|
|
|
.title {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
}
|
|
|
|
|
.benchWarp {
|
|
|
|
|
padding: 0 20px !important;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
.benchTop {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
.survey,
|
|
|
|
|
.pending {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
.survey {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
.pending {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
padding: 0 30px;
|
|
|
|
|
}
|
|
|
|
|
.content .box {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.content .box .surveyTitle,
|
|
|
|
|
.pendingTitle {
|
|
|
|
|
/*width: 71px;*/
|
|
|
|
|
height: 25px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
/*font-family: Alibaba-PuHuiTi-R, Alibaba-PuHuiTi;*/
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
color: #333333;
|
|
|
|
|
line-height: 25px;
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
/*font-size: 13px;*/
|
|
|
|
|
/*color: #999999;*/
|
|
|
|
|
margin-top: 30px !important;
|
|
|
|
|
}
|
|
|
|
|
.content .box .surveyNum,
|
|
|
|
|
.pendingNum {
|
|
|
|
|
/*width: 36px;*/
|
|
|
|
|
height: 42px;
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
/*font-family: Alibaba-PuHuiTi-B, Alibaba-PuHuiTi;*/
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
color: #333333;
|
|
|
|
|
line-height: 42px;
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
/*font-size: 16px;*/
|
|
|
|
|
/*font-weight: 650;*/
|
|
|
|
|
margin: 15px 0 !important;
|
|
|
|
|
}
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
.content .box .lookDetail {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
/*font-family: Alibaba-PuHuiTi-R, Alibaba-PuHuiTi;*/
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
color: #3f9eff;
|
|
|
|
|
line-height: 25px;
|
|
|
|
|
width: 119px;
|
|
|
|
|
height: 39px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 1px solid #3f9eff;
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
/*color: #999999;*/
|
|
|
|
|
/*border: 1px solid #999999;*/
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
/*border-radius: 10px;*/
|
|
|
|
|
/*font-size: 12px;*/
|
|
|
|
|
}
|
|
|
|
|
.content .box .goJob {
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
color: #0066ff;
|
|
|
|
|
border: 1px solid #0066ff;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
.benchBottom {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.invitationCode {
|
|
|
|
|
width: calc(100% - 550px);
|
|
|
|
|
padding: 18px 30px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
.tips {
|
|
|
|
|
width: 250px;
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
.customerService {
|
|
|
|
|
width: 414px;
|
|
|
|
|
/*height: 224px;*/
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-radius: 4px;
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
/*height: 120px;*/
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
padding: 18px 30px;
|
|
|
|
|
}
|
|
|
|
|
.customerService .customerContent {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.customerService .customerContent .img {
|
|
|
|
|
width: 115px;
|
|
|
|
|
height: 115px;
|
|
|
|
|
background: #d8d8d8;
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
background: url("/manage/img/kefu.jpg") no-repeat;
|
|
|
|
|
background-size: 115px 115px;
|
|
|
|
|
}
|
|
|
|
|
.customerService .customerContent .font {
|
|
|
|
|
/*width: 96px;*/
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
/*font-family: PingFangSC-Regular, PingFang SC;*/
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #333333;
|
|
|
|
|
/*line-height: 30px;*/
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
/*font-size: 12px;*/
|
|
|
|
|
/*color: #666666;*/
|
|
|
|
|
}
|
|
|
|
|
.tip {
|
|
|
|
|
padding: 18px 30px;
|
|
|
|
|
width: 414px;
|
|
|
|
|
/*height: 375px;*/
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
.tip .tipTop {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.tip .tipTop .more {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 22px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
/*font-family: Alibaba-PuHuiTi-R, Alibaba-PuHuiTi;*/
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
color: #3f9eff;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
}
|
|
|
|
|
.tipListBox {
|
|
|
|
|
height: 276px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
.tipListBox div {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin: 11px 0;
|
|
|
|
|
}
|
|
|
|
|
.tipListBox p {
|
|
|
|
|
width: 400px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
/*font-family: PingFangSC-Regular, PingFang SC;*/
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #333333;
|
|
|
|
|
line-height: 30px;
|
2024-02-02 15:04:47 +08:00
|
|
|
|
2024-02-05 10:16:53 +08:00
|
|
|
/*margin: 7px 0 !important;*/
|
|
|
|
|
/*font-size: 12px;*/
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.tipListBox span {
|
|
|
|
|
color: #3f9eff;
|
|
|
|
|
}
|
2024-02-02 15:04:47 +08:00
|
|
|
</style>
|