postInfo.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. <template>
  2. <div @click.stop="closeShow()" class="postInfos" style="padding-bottom: 20px;">
  3. <!-- 岗位详情 -->
  4. <div class="postInfo flex align-center justify-center">
  5. <div class="postInfo-box">
  6. <!-- 岗位名称/薪资 -->
  7. <div class="postInfo-box-top flex align-center justify-between">
  8. <div class="postInfo-box-top-l">
  9. {{ info.ruleClassifyName }}
  10. <span>{{ info.salaryRange }}</span>
  11. </div>
  12. <!-- <div class="postInfo-box-top-r flex align-center">
  13. <div @click.stop="getShare()" class="postInfo-box-top-r-qr flex align-center">
  14. <img src="/images/postimg/share.png" alt="" />
  15. 分享岗位
  16. <div v-if="isShowQr" class="postInfo-box-top-r-qrs flex align-center justify-center">
  17. <img :src="qr" alt="" />
  18. </div>
  19. </div>
  20. <div @click.stop="openShow()" class="flex align-center">
  21. <img src="/images/postimg/jubao.png" alt="" />
  22. 举报
  23. </div>
  24. </div> -->
  25. </div>
  26. <div class="postInfo-box-status flex align-center">
  27. {{ info.province ? info.province : '' }}{{ info.city ? info.city : '' }}{{ info.county ? info.county
  28. : '' }}{{ info.address ? info.address : '' }}
  29. </div>
  30. <!-- 地址、要求 -->
  31. <div class="postInfo-box-ins">
  32. {{info.city}} {{info.county}}<el-divider direction="vertical" />{{info.experience}}<el-divider
  33. direction="vertical" />{{info.education}}
  34. </div>
  35. <!-- 标签/操作 -->
  36. <div class="postInfo-box-labels flex justify-between">
  37. <div class="postInfo-box-labels-l flex align-center flex-wrap">
  38. <img :src="info.hr && info.hr.hrImg ? info.hr.hrImg : '/default.jpg'"
  39. style="width: 40px;height: 40px;border-radius: 50%;" mode="">
  40. </img>
  41. <div class="company-info-text">
  42. {{ info.user && info.user.userName || '未知' }}·{{ info.hr && info.hr.hrPosition || '未知' }}
  43. </div>
  44. <div class="reply-time">{{ info.respondTime || (info.user && (info.user.onlineMinutes == '从未在线' ? '不久前在线' : info.user.onlineMinutes)) }}</div>
  45. </div>
  46. <div class="postInfo-box-labels-r flex align-center">
  47. <div @click.stop="setCollection()"
  48. class="postInfo-box-labels-r-s flex align-center justify-center">
  49. <el-icon v-if="info.isCollection==0" :size="20" style="margin-right: 6px;">
  50. <Star />
  51. </el-icon>
  52. <el-icon v-else :size="20" style="margin-right: 6px;">
  53. <StarFilled />
  54. </el-icon>
  55. {{info.isCollection==0?'收藏':'已收藏'}}
  56. </div>
  57. <div @click.stop="openMeg()" class="postInfo-box-labels-r-l flex align-center justify-center">
  58. 立即沟通
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. <!-- 岗位介绍 -->
  65. <div class="postJs flex align-center justify-center">
  66. <div class="postJs-box">
  67. <div class="postJs-box-title" style="margin-bottom: 10px;">
  68. 岗位介绍
  69. </div>
  70. <div class="postJs-box-content" v-html="info.positionDetails"></div>
  71. <div class="postJs-box-tag flex align-center flex-wrap" v-if="info.positionTag">
  72. <div class="postJs-box-tag-item"
  73. v-for="(item, index) in info.positionTag ? info.positionTag.split(',') : []" :key="index">
  74. {{ item }}
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79. <!-- 岗位福利 -->
  80. <div class="postJs flex align-center justify-center">
  81. <div class="postJs-box">
  82. <div class="postJs-box-title">
  83. 岗位福利
  84. </div>
  85. <div class="postJs-box-tag flex align-center flex-wrap" v-if="info.welfareTag">
  86. <div class="postJs-box-tag-item" v-for="(item, index) in info.welfareTag ? info.welfareTag.split(';') : []" :key="index">
  87. {{ item }}
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. <!-- 公司简介 -->
  93. <div class="postGs flex align-center justify-center">
  94. <div class="postGs-box">
  95. <div class="postGs-box-title">
  96. 公司基本信息
  97. </div>
  98. <div class="postGs-box-info flex align-center">
  99. <img :src="info.company && info.company.companyLogo?info.company.companyLogo:'/default.jpg'" alt="" />
  100. <div class="postGs-box-info-r">
  101. <div class="postGs-box-info-r-name">
  102. {{ info.company?.companyName || info.company?.companyAllName || '匿名公司' }}
  103. </div>
  104. <div class="postGs-box-info-r-bottom">
  105. {{info.company?info.company.companyScope:''}}
  106. <span>
  107. {{info.company?info.company.companyPeople:''}}
  108. </span>
  109. </div>
  110. </div>
  111. </div>
  112. <el-divider />
  113. <div id="container" class="postMap">
  114. </div>
  115. <div class="postGs-box-address flex align-center">
  116. <el-icon size="18" color="#00DD9A" style="margin-right: 10px;">
  117. <Location />
  118. </el-icon>
  119. {{info.company?info.company.companyAddress:''}}
  120. </div>
  121. </div>
  122. </div>
  123. <!-- 消息组件 -->
  124. <messageCom v-if="showMeg" :byUserId="byUserId" :postPushId="postPushId"
  125. :chatConversationId="chatConversationId" :showMeg="showMeg" :userType="1" @closeMeg="closeMeg" />
  126. <!-- 举报弹窗 -->
  127. <el-dialog v-model="show" @close="closeJb" :draggable="true" destroy-on-close align-center center>
  128. <template #header>
  129. <div class="my-header flex align-center">
  130. <div class="my-header-title" style="font-weight: bold;">
  131. 举报
  132. </div>
  133. </div>
  134. </template>
  135. <div class="jb" v-loading="loading">
  136. <div class="jb-title">
  137. 问题和意见
  138. </div>
  139. <div class="jb-text">
  140. <el-input resize="none" :input-style="inputStyles" v-model="sendDate.content"
  141. :autosize="{ minRows: 6, maxRows: 8 }" type="textarea" placeholder="请详细描述你的问题和意见..." />
  142. </div>
  143. <div class="jb-title" style="margin-top: 20px;">
  144. 电话/微信
  145. </div>
  146. <div class="jb-text jb-texts">
  147. <el-input :input-style="inputStyles" style="width: 100%;" v-model="sendDate.contact"
  148. placeholder="方便我们联系您" />
  149. </div>
  150. <div class="jb-title" style="margin-top: 20px;">
  151. 上传图片
  152. </div>
  153. <div class="jb-text jb-texts" style="background-color: #ffffff;">
  154. <el-upload v-model:file-list="imgs" :action="action" :on-preview="handlePictureCardPreview"
  155. :on-remove="handleRemove" list-type="picture-card">
  156. <el-icon>
  157. <Plus />
  158. </el-icon>
  159. </el-upload>
  160. <el-dialog v-model="dialogVisible">
  161. <img w-full :src="dialogImageUrl" style="width: 100%;height: auto;" alt="Preview Image" />
  162. </el-dialog>
  163. </div>
  164. <div class="jb-btn flex align-center">
  165. <el-button @click.stop="show = false">取消</el-button>
  166. <el-button type="primary" @click.stop="reportSave">提交</el-button>
  167. </div>
  168. </div>
  169. </el-dialog>
  170. </div>
  171. </template>
  172. <script>
  173. import {
  174. ROOTPATH,
  175. ROOTPATH4
  176. } from '../../../comment/httpUrl.js'
  177. import axios from 'axios'
  178. import messageCom from '../../components/messageCom/messageCom.vue'
  179. import {
  180. ElMessageBox,
  181. ElMessage,
  182. } from 'element-plus'
  183. export default {
  184. components: {
  185. messageCom
  186. },
  187. data() {
  188. return {
  189. dialogImageUrl: '',
  190. dialogVisible: false,
  191. action: ROOTPATH4 + 'sqx_fast/alioss/upload',
  192. byUserId: '',
  193. chatConversationId: '',
  194. showMeg: false, //是否打开聊天组件
  195. sendDate: {
  196. content: '',
  197. contact: ''
  198. },
  199. inputStyles: {
  200. border: 'none',
  201. background: '#F7F7F7',
  202. borderRadius: '8px',
  203. boxShadow: 'none',
  204. },
  205. show: false,
  206. postPushId: '', //岗位id
  207. info: {}, //岗位详情
  208. qr: '', //分享二维码
  209. isShowQr: false, //是否显示分享二维码
  210. screenHeight: 0, //屏幕高度
  211. loading: false,
  212. imgs: [], //上传图片
  213. }
  214. },
  215. mounted() {
  216. this.screenHeight = window.innerHeight
  217. this.postPushId = this.$route.query.postPushId
  218. let inviterCode = this.$route.query.inviterCode
  219. if (inviterCode) {
  220. localStorage.setItem('inviterCode', inviterCode)
  221. }
  222. if (this.postPushId) {
  223. // this.qr = ROOTPATH + '/app/invite/mpPageCreateQr?page=pages/index/game/order&postPushId=' + this.postPushId
  224. this.getJobInfo()
  225. }
  226. },
  227. methods: {
  228. //移除图片
  229. handleRemove(e) {
  230. let imgs = []
  231. this.imgs.map(item => {
  232. imgs.push(item.response.data)
  233. })
  234. this.sendDate.imgs = imgs.join(',')
  235. },
  236. //放大查看
  237. handlePictureCardPreview(e) {
  238. this.dialogImageUrl = e.url
  239. this.dialogVisible = true
  240. },
  241. closeJb() {
  242. this.imgs = []
  243. this.sendDate = {
  244. content: '',
  245. contact: ''
  246. }
  247. },
  248. //去登录
  249. goLogo() {
  250. this.$router.push({
  251. name: 'login'
  252. })
  253. },
  254. //关闭子弹窗组件的回调
  255. closeMeg(data) {
  256. //关闭聊天组件
  257. this.showMeg = data
  258. },
  259. //立即联系
  260. openMeg() {
  261. if (!localStorage.getItem('token')) {
  262. this.goLogo()
  263. return
  264. }
  265. this.$Request.post('/app/chat/insertChatConversation', {
  266. userId: localStorage.getItem('userId'), //用户userid
  267. focusedUserId: this.info.user.userId, //企业userid
  268. type: 1,
  269. postPushId: this.info.postPushId,
  270. resumesId: localStorage.getItem('resumeId')
  271. }, {
  272. type: 'json'
  273. }).then(res => {
  274. if (res.code == 0) {
  275. this.byUserId = this.info.user.userId
  276. this.chatConversationId = res.data.chatConversationId
  277. this.showMeg = true
  278. }
  279. })
  280. },
  281. //初始化地图
  282. initMap() {
  283. var center = new TMap.LatLng(this.info.lat, this.info.lng); //设置中心点坐标
  284. //初始化地图
  285. var map = new TMap.Map(container, {
  286. center: center
  287. });
  288. //创建并初始化MultiMarker
  289. var markerLayer = new TMap.MultiMarker({
  290. map: map, //指定地图容器
  291. //样式定义
  292. styles: {
  293. //创建一个styleId为"myStyle"的样式(styles的子属性名即为styleId)
  294. "myStyle": new TMap.MarkerStyle({
  295. "width": 30, // 点标记样式宽度(像素)
  296. "height": 30, // 点标记样式高度(像素)
  297. "src": '/images/postimg/mapMarker.png', //图片路径
  298. //焦点在图片中的像素位置,一般大头针类似形式的图片以针尖位置做为焦点,圆形点以圆心位置为焦点
  299. "anchor": {
  300. x: 16,
  301. y: 32
  302. }
  303. })
  304. },
  305. //点标记数据数组
  306. geometries: [{
  307. "id": "1", //点标记唯一标识,后续如果有删除、修改位置等操作,都需要此id
  308. "styleId": 'myStyle', //指定样式id
  309. "position": new TMap.LatLng(this.info.lat, this.info.lng) //点标记坐标位置
  310. }]
  311. });
  312. },
  313. //举报
  314. reportSave() {
  315. if (!this.sendDate.content) {
  316. ElMessageBox.alert('请输入举报内容', '提示', {
  317. confirmButtonText: '确认',
  318. })
  319. return
  320. }
  321. if (!this.sendDate.contact) {
  322. ElMessageBox.alert('请输入联系方式', '提示', {
  323. confirmButtonText: '确认',
  324. })
  325. return
  326. }
  327. if (this.imgs.length > 0) {
  328. let imgs = []
  329. this.imgs.map(item => {
  330. imgs.push(item.response.data)
  331. })
  332. this.sendDate.imgs = imgs.join(',')
  333. }
  334. this.loading = true
  335. let data = {
  336. title: this.sendDate.contact,
  337. content: JSON.stringify(this.sendDate),
  338. state: 3,
  339. byUserId: this.postPushId
  340. }
  341. this.$Request.post('/app/message/insertMessage', data, {
  342. type: 'json'
  343. }).then(res => {
  344. if (res.code == 0) {
  345. ElMessage({
  346. message: '已提交',
  347. type: 'success',
  348. duration: 1500,
  349. offset: this.screenHeight / 2
  350. })
  351. this.loading = false
  352. this.show = false
  353. } else {
  354. this.loading = false
  355. ElMessageBox.alert(res.msg, '提示', {
  356. confirmButtonText: '确认'
  357. })
  358. }
  359. })
  360. },
  361. //打开举报弹框
  362. openShow() {
  363. if (!localStorage.getItem('token')) {
  364. this.goLogo()
  365. return
  366. }
  367. this.sendDate = {
  368. content: '',
  369. contact: ''
  370. }
  371. this.show = true
  372. },
  373. /**
  374. * 收藏岗位
  375. */
  376. setCollection() {
  377. if (!localStorage.getItem('token')) {
  378. this.goLogo()
  379. return
  380. }
  381. this.$Request.post("/app/myCollection/saveCollection", {
  382. postPushId: this.postPushId,
  383. type: 1
  384. }).then(res => {
  385. if (res.code == 0) {
  386. if (res.msg == '收藏成功'){
  387. this.info.isCollection = 1
  388. }else{
  389. this.info.isCollection = 0
  390. }
  391. }
  392. })
  393. },
  394. closeShow() {
  395. this.isShowQr = false
  396. },
  397. //显示二维码
  398. getShare() {
  399. // this.isShowQr = !this.isShowQr
  400. if (!localStorage.getItem('token')) {
  401. this.goLogo()
  402. return
  403. }
  404. let url = ROOTPATH4 + '' + this.$route.name + '?postPushId=' + this.$route.query.postPushId +
  405. '&inviterCode=' + this.$store.state.invitationCode
  406. ElMessageBox.confirm(
  407. url,
  408. '分享岗位', {
  409. confirmButtonText: '一键复制',
  410. cancelButtonText: '取消',
  411. type: 'warning',
  412. }
  413. ).then(() => {
  414. navigator.clipboard.writeText(url)
  415. .then(() => {
  416. ElMessage({
  417. type: 'success',
  418. message: '复制成功',
  419. duration: 1500,
  420. offset: this.screenHeight / 2
  421. })
  422. })
  423. .catch(() => {
  424. ElMessage({
  425. type: 'info',
  426. message: '复制失败',
  427. duration: 1500,
  428. offset: this.screenHeight / 2
  429. })
  430. })
  431. }).catch(() => {
  432. })
  433. },
  434. //获取岗位详情
  435. getJobInfo() {
  436. let data = {
  437. userId: localStorage.getItem('userId'),
  438. postPushId: this.postPushId
  439. }
  440. this.$Request.get('/app/postPush/selectPostPushDetails', {
  441. params: data
  442. }).then(res => {
  443. this.info = res.data
  444. //处理标签
  445. if (this.info.positionWelfare) {
  446. this.info.positionWelfare = this.info.positionWelfare.split(',')
  447. } else {
  448. this.info.positionWelfare = []
  449. }
  450. // 处理tag
  451. if (this.info.tag) {
  452. this.info.tag = this.info.tag.split(',')
  453. } else {
  454. this.info.tag = []
  455. }
  456. this.initMap()
  457. })
  458. },
  459. }
  460. }
  461. </script>
  462. <style lang="scss" scoped>
  463. $marginTop-60: 120px;
  464. :deep(.el-input__wrapper) {
  465. background-color: #F7F7F7 !important;
  466. box-shadow: none !important;
  467. }
  468. :deep(.el-input) {
  469. --el-input-focus-border: none;
  470. --el-input-focus-border-color: none;
  471. }
  472. :deep(.is-focus) {
  473. box-shadow: none;
  474. }
  475. :deep(.el-textarea__inner) {
  476. box-shadow: none;
  477. }
  478. :deep(.el-input__wrapper:hover) {
  479. box-shadow: none;
  480. }
  481. :deep(.el-dialog) {
  482. border-radius: 14px !important;
  483. padding: 0 !important;
  484. }
  485. :deep(.el-dialog__body) {
  486. padding-top: 10px !important;
  487. }
  488. :deep(.el-dialog__header) {
  489. background: linear-gradient(45deg, #f2fffa, #FFFFFF);
  490. padding: 10px;
  491. border-radius: 14px 14px 0 0;
  492. }
  493. .jb {
  494. width: calc(100% - 20px);
  495. padding: 0 10px 10px 10px;
  496. .jb-title {
  497. color: #333333;
  498. font-size: 14px;
  499. font-weight: 500;
  500. }
  501. .jb-text {
  502. width: 100%;
  503. margin-top: 10px;
  504. background-color: #F7F7F7;
  505. border-radius: 8px;
  506. }
  507. .jb-btn {
  508. margin-top: 40px;
  509. justify-content: flex-end;
  510. }
  511. }
  512. .postInfo {
  513. width: 100%;
  514. height: auto;
  515. margin-top: 20px;
  516. .postInfo-box {
  517. width: calc(100% - $marginTop-60 * 2);
  518. height: 100%;
  519. background-color: #ffffff;
  520. border-radius: 16px;
  521. padding: 30px 30px 10px 30px;
  522. }
  523. .postInfo-box-top-l {
  524. font-size: 20px;
  525. font-weight: 500;
  526. span {
  527. margin-left: 30px;
  528. font-size: 18px;
  529. color: #00DD9A;
  530. font-weight: 500;
  531. }
  532. }
  533. .postInfo-box-top-r {
  534. img {
  535. width: 20px;
  536. height: 20px;
  537. margin-right: 10px;
  538. }
  539. font-size: 14px;
  540. div {
  541. color: #999999;
  542. margin-left: 30px;
  543. cursor: pointer;
  544. }
  545. }
  546. .postInfo-box-top-r-qr {
  547. position: relative;
  548. .postInfo-box-top-r-qrs {
  549. position: absolute;
  550. bottom: -160px;
  551. left: 15%;
  552. transform: translate(-50%, 0);
  553. z-index: 999;
  554. width: 150px;
  555. height: 150px;
  556. background-color: #ffffff;
  557. border-radius: 10px;
  558. border: 1px solid #f5f5f5;
  559. img {
  560. width: 120px;
  561. height: 120px;
  562. margin-right: 0;
  563. }
  564. }
  565. }
  566. .postInfo-box-status {
  567. margin-top: 20px;
  568. color: #9ca4ab;
  569. font-size: 14px;
  570. img {
  571. width: 20px;
  572. height: 20px;
  573. margin-right: 10px;
  574. }
  575. }
  576. .postInfo-box-ins {
  577. margin-top: 20px;
  578. font-size: 16px;
  579. color: #666666;
  580. }
  581. .postInfo-box-labels {
  582. margin-top: 30px;
  583. width: 100%;
  584. align-items: flex-end;
  585. }
  586. .postInfo-box-labels-l {
  587. width: 70%;
  588. cursor: pointer;
  589. .company-info-text {
  590. margin: 0 10px;
  591. color: rgba(156, 164, 171, 1);
  592. font-size: 12px;
  593. font-weight: 400;
  594. }
  595. .reply-time {
  596. border-radius: 4px;
  597. background: rgba(236, 225, 253, 1);
  598. padding: 4px;
  599. color: rgba(106.94, 84.63, 214.02, 0.96);
  600. font-size: 12px;
  601. font-weight: 400;
  602. }
  603. }
  604. .postInfo-box-labels-r {
  605. width: 30%;
  606. justify-content: flex-end;
  607. margin-bottom: 20px;
  608. .postInfo-box-labels-r-s {
  609. width: 120px;
  610. height: 40px;
  611. border: 1px solid #00DD9A;
  612. border-radius: 8px;
  613. color: #00DD9A;
  614. font-size: 18px;
  615. cursor: pointer;
  616. }
  617. .postInfo-box-labels-r-l {
  618. width: 210px;
  619. height: 40px;
  620. background: #00DD9A;
  621. border-radius: 8px;
  622. font-size: 18px;
  623. color: #ffffff;
  624. margin-left: 20px;
  625. cursor: pointer;
  626. }
  627. }
  628. }
  629. .postJs {
  630. width: 100%;
  631. height: auto;
  632. margin-top: 20px;
  633. .postJs-box {
  634. width: calc(100% - $marginTop-60 * 2);
  635. height: 100%;
  636. border-radius: 16px;
  637. padding: 30px;
  638. background-color: #ffffff;
  639. }
  640. .postJs-box-title {
  641. font-weight: 500;
  642. font-size: 18px;
  643. }
  644. .postJs-box-tag {
  645. margin-top: 20px;
  646. .postJs-box-tag-item {
  647. margin-right: 20px;
  648. margin-bottom: 20px;
  649. padding: 6px 16px;
  650. border-radius: 4px;
  651. background-color: #F5F5F5;
  652. color: #333333;
  653. font-size: 15px;
  654. cursor: pointer;
  655. }
  656. }
  657. .postJs-box-content {
  658. font-size: 16px;
  659. color: #666666;
  660. white-space: pre-wrap;
  661. }
  662. }
  663. .postGs {
  664. width: 100%;
  665. height: auto;
  666. margin-top: 20px;
  667. .postGs-box {
  668. width: calc(100% - $marginTop-60 * 2);
  669. height: 100%;
  670. border-radius: 16px;
  671. padding: 30px;
  672. background-color: #ffffff;
  673. }
  674. .postGs-box-title {
  675. font-weight: 500;
  676. font-size: 18px;
  677. }
  678. .postGs-box-info {
  679. margin-top: 30px;
  680. img {
  681. width: 64px;
  682. height: 64px;
  683. margin-right: 10px;
  684. border-radius: 50%;
  685. }
  686. .postGs-box-info-r-name {
  687. color: #666666;
  688. font-size: 16px;
  689. }
  690. .postGs-box-info-r-bottom {
  691. margin-top: 10px;
  692. color: #666666;
  693. font-size: 14px;
  694. span {
  695. margin-left: 10px;
  696. }
  697. }
  698. }
  699. .postMap {
  700. width: 100%;
  701. height: 200px;
  702. border-radius: 10px;
  703. }
  704. .postGs-box-address {
  705. font-size: 14px;
  706. color: #666666;
  707. margin-top: 20px;
  708. }
  709. }
  710. </style>