order.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. <template>
  2. <view>
  3. <!-- 岗位要求 -->
  4. <view class="job flex justify-center">
  5. <view class="job-info flex justify-center">
  6. <view class="job-info-c">
  7. <view class="job-info-c-title" v-if="info.stationName">
  8. <block v-if="isSameName(info.ruleClassifyName,info.stationName)">
  9. {{info.ruleClassifyName}}-
  10. </block>
  11. <block>
  12. {{info.stationName}}
  13. </block>
  14. </view>
  15. <view class="job-info-c-label flex align-center flex-wrap">
  16. <view class="job-info-c-label-item" v-if="info.county">
  17. {{info.county}}
  18. </view>
  19. <view class="job-info-c-label-item" v-if="info.experience">
  20. {{info.experience}}
  21. </view>
  22. <view class="job-info-c-label-item" v-if="info.education">
  23. {{info.education}}
  24. </view>
  25. </view>
  26. <view class="job-info-c-price" v-if="info.salaryRange">
  27. {{info.salaryRange}}
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <!-- 岗位介绍 -->
  33. <view class="jobRemarks flex justify-center">
  34. <!-- <skeleton type="round" bgColor="#ffffff"> -->
  35. <view class="jobRemarks-box flex justify-center">
  36. <view class="jobRemarks-box-c">
  37. <view class="jobRemarks-box-c-title">
  38. 岗位介绍
  39. </view>
  40. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.tag">
  41. <view class="jobRemarks-box-c-label-item" v-for="(item,index) in info.tag.split(',')"
  42. :key="index">
  43. {{item}}
  44. </view>
  45. </view>
  46. <view class="jobRemarks-box-c-con" v-if="info.positionDetails">
  47. <view class="jobRemarks-box-c-con-item" v-html="info.positionDetails">
  48. </view>
  49. </view>
  50. <view class="jobRemarks-box-c-line"></view>
  51. <view class="jobRemarks-box-c-title" style="margin-top: 25rpx;">
  52. 岗位福利
  53. </view>
  54. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.positionWelfare">
  55. <view class="jobRemarks-box-c-label-item"
  56. v-for="(item,index) in info.positionWelfare?info.positionWelfare.split(','):[]"
  57. :key="index">
  58. {{item}}
  59. </view>
  60. </view>
  61. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-else>
  62. <view class="jobRemarks-box-c-label-item">
  63. 暂无
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- </skeleton> -->
  69. </view>
  70. <!-- 企业简介 -->
  71. <view class="enterprise flex justify-center" v-if="info.lng" @click="goInfo(info.company.companyId)">
  72. <view class="enterprise-box flex justify-center">
  73. <view class="enterprise-box-c">
  74. <view class="enterprise-box-c-info flex align-center">
  75. <image :src="info.company?info.company.companyLogo:'../../../static/logo.png'"
  76. style="width: 95rpx;height: 95rpx;border-radius: 50%;" mode=""></image>
  77. <view class="enterprise-box-c-info-n">
  78. <view class="">
  79. {{info.company?info.company.companyName:''}}
  80. </view>
  81. <view class="">
  82. {{info.company?info.company.companyScope:''}}
  83. </view>
  84. </view>
  85. </view>
  86. <view class="enterprise-box-c-bto flex align-center justify-between" @click.stop="gotoMap()">
  87. <view class="enterprise-box-c-bto-l flex align-center">
  88. <u-icon name="map" color="#00B88F" style="margin-left: 20rpx;margin-right: 10rpx;"
  89. size="28"></u-icon>
  90. {{info.province?info.province:''}}{{info.city?info.city:''}}{{info.county?info.county:''}}{{info.address?info.address:''}}
  91. </view>
  92. <view class="enterprise-box-c-bto-r">
  93. <u-icon name="arrow-right" color="#00B88F" style="margin-right: 20rpx;" size="28"></u-icon>
  94. </view>
  95. </view>
  96. <!-- #ifndef APP -->
  97. <view class="enterprise-box-c-map">
  98. <map style="width: 100%; height: 100%;" scale="14" @tap.stop="gotoMap()" :latitude="info.lat"
  99. :longitude="info.lng" :markers="covers">
  100. </map>
  101. </view>
  102. <!-- #endif -->
  103. </view>
  104. </view>
  105. </view>
  106. <!-- 底部操作 -->
  107. <view class="caozuo flex justify-center align-center">
  108. <view class="caozuo-box flex align-center justify-between">
  109. <view class="caozuo-box-l flex align-center">
  110. <!-- #ifdef MP-WEIXIN -->
  111. <view class="caozuo-box-l-item flex align-center flex-wrap">
  112. <button open-type="share">
  113. <u-icon name="share" color="#333333" size="50"></u-icon>
  114. <text style="margin-top: 16rpx;">分享</text>
  115. </button>
  116. </view>
  117. <!-- #endif -->
  118. <!-- #ifdef H5 -->
  119. <view class="caozuo-box-l-item flex align-center flex-wrap" @click="shar()">
  120. <u-icon name="share" color="#333333" size="50"></u-icon>
  121. <view class="">
  122. 分享
  123. </view>
  124. </view>
  125. <!-- #endif -->
  126. <!-- #ifdef APP-PLUS -->
  127. <view class="caozuo-box-l-item flex align-center flex-wrap" @click="shows = true">
  128. <u-icon name="share" color="#333333" size="50"></u-icon>
  129. <view class="">
  130. 分享
  131. </view>
  132. </view>
  133. <!-- #endif -->
  134. <view class="caozuo-box-l-item flex align-center flex-wrap" @click="goJuBao()">
  135. <u-icon name="warning" color="#333333" size="50"></u-icon>
  136. <view class="">
  137. 举报
  138. </view>
  139. </view>
  140. <view @click="setCollection()" class="caozuo-box-l-item flex align-center flex-wrap">
  141. <u-icon name="star" v-if="info.isCollection==0" color="#333333" size="50"></u-icon>
  142. <u-icon name="star-fill" v-else color="#00B88F" size="50"></u-icon>
  143. <view class="">
  144. {{info.isCollection==0?'收藏':'取消'}}
  145. </view>
  146. </view>
  147. </view>
  148. <view class="caozuo-box-r flex align-center justify-center" @click="bindphone(2)">
  149. 立即联系
  150. </view>
  151. </view>
  152. </view>
  153. <u-popup v-model="shows" z-index="99999" mode="bottom" border-radius="14" height="300rpx">
  154. <view class="shar flex justify-center">
  155. <view class="shar-box flex justify-around">
  156. <view class="shar-box-item" @click="appShare('WXSceneSession')">
  157. <u-icon name="weixin-circle-fill" color="#45b630" style="margin-left: 10rpx;" size="70">
  158. </u-icon>
  159. <view class="">
  160. 微信好友
  161. </view>
  162. </view>
  163. <view class="shar-box-item" @click="appShare('WXSenceTimeline')">
  164. <u-icon name="moments-circel-fill" color="#6dbf30" size="70" style="margin-left: 20rpx;">
  165. </u-icon>
  166. <view class="">
  167. 微信朋友圈
  168. </view>
  169. </view>
  170. </view>
  171. </view>
  172. <view class="line"></view>
  173. <view class="sharNo" @click="shows = false">
  174. 取消
  175. </view>
  176. </u-popup>
  177. <!-- 返回首页按钮 -->
  178. <!-- #ifdef H5 -->
  179. <view class="backHome" @click="goHome()">
  180. <image src="../../../static/images/index/backHome.png" mode=""></image>
  181. </view>
  182. <!-- #endif -->
  183. </view>
  184. </template>
  185. <script>
  186. import config from '../../../common/config.js'
  187. export default {
  188. //分享
  189. onShareAppMessage(res) {
  190. return {
  191. path: '/pages/index/game/order?postPushId=' + this.postPushId + '&invitation=' + uni.getStorageSync(
  192. 'invitationCode'),
  193. title: this.info.stationName,
  194. }
  195. },
  196. /*
  197. * uniapp微信小程序分享页面到微信朋友圈
  198. */
  199. onShareTimeline(res) {
  200. return {
  201. path: '/pages/index/game/order?postPushId=' + this.postPushId + '&invitation=' + uni.getStorageSync(
  202. 'invitationCode'),
  203. title: this.info.stationName,
  204. }
  205. },
  206. data() {
  207. return {
  208. loading: true,
  209. shows: false,
  210. postPushId: '',
  211. info: {}, //岗位详情
  212. token: uni.getStorageSync('token'),
  213. covers: [{
  214. id: 1,
  215. latitude: '',
  216. longitude: '',
  217. width: 20,
  218. height: 20,
  219. iconPath: '../../../static/images/mapMarker.png',
  220. callout: {
  221. content: '',
  222. color: '#000', //文字颜色
  223. fontSize: 10, //文本大小
  224. padding: 10, //附近留白
  225. borderRadius: 24, //边框圆角
  226. bgColor: '#FFFFFF', //背景颜色
  227. display: 'ALWAYS', //常显
  228. }
  229. }],
  230. sharType: 0,
  231. sharMsg: '',
  232. };
  233. },
  234. onLoad(option) {
  235. // 获取邀请码保存到本地
  236. if (option.invitation) {
  237. this.$queue.setData('inviterCode', option.invitation);
  238. }
  239. // #ifdef MP-WEIXIN
  240. if (option.scene) {
  241. const scene = decodeURIComponent(option.scene);
  242. this.$queue.setData('inviterCode', scene.split(',')[0]);
  243. }
  244. // #endif
  245. //小程序分享版本
  246. this.$Request.getT('/app/common/type/340').then(res => {
  247. if (res.code == 0) {
  248. if (res.data && res.data.value) {
  249. this.sharType = res.data.value
  250. }
  251. }
  252. });
  253. //小程序分享图片
  254. this.$Request.getT('/app/common/type/341').then(res => {
  255. if (res.code == 0) {
  256. if (res.data && res.data.value) {
  257. this.sharMsg = res.data.value
  258. }
  259. }
  260. });
  261. uni.showLoading({
  262. title: '加载中'
  263. })
  264. this.postPushId = option.postPushId
  265. this.getInfo()
  266. },
  267. methods: {
  268. //判断岗位名称与职位名称是否相同(不区分大小写)
  269. isSameName(className, name) {
  270. let str1 = className.trim();
  271. let str2 = name.trim();
  272. if (str1.length !== str2.length) {
  273. return true;
  274. }
  275. return str1.toLowerCase() !== str2.toLowerCase();
  276. },
  277. goHome() {
  278. let pages = getCurrentPages(); // 获取页面栈
  279. console.log(pages)
  280. if (pages.length > 1) { //有上一页
  281. uni.navigateBack()
  282. } else {
  283. uni.switchTab({
  284. url: '/pages/index/index'
  285. })
  286. }
  287. },
  288. //app分享
  289. appShare(scene) {
  290. let that = this
  291. let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
  292. let curRoute = routes[routes.length - 1].$page.fullPath // 获取当前页面路由,也就是最后一个打开的页面路由
  293. uni.share({
  294. provider: "weixin", //分享服务提供商(即weixin|qq|sinaweibo)
  295. scene: scene, //场景,可取值参考下面说明。
  296. type: 5, //分享形式 0:图文 1:纯文字 2:纯图片 3:音乐 4:视频 5:小程序
  297. // href: curRoute, //跳转链接
  298. // imageUrl:'https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-uni-app-doc/962fc340-4f2c-11eb-bdc1-8bd33eb6adaa.png',
  299. imageUrl: that.sharMsg,
  300. title: that.info.stationName, //分享内容的标题
  301. miniProgram: {
  302. id: 'gh_d531be6accdb', //分享的小程序原始id
  303. path: curRoute, //分享的小程序的页面路径
  304. webUrl: "https://ask.dcloud.net.cn/article/287", //地址
  305. type: that.sharType, //微信小程序的版本 0-正式版; 1-测试版; 2-体验版。 默认值为0。
  306. },
  307. success: function(res) {
  308. that.shows = false; //成功后关闭底部弹框
  309. },
  310. fail: function(err) {
  311. console.log(err, '分享失败回调')
  312. uni.showToast({
  313. title: '分享失败',
  314. icon: 'none',
  315. duration: 2000
  316. })
  317. that.shows = false;
  318. }
  319. });
  320. },
  321. getShowModal() {
  322. uni.showModal({
  323. title: '提示',
  324. content: '请登录后联系企业',
  325. showCancel: true,
  326. cancelText: '取消',
  327. confirmText: '去登录',
  328. complete: (res) => {
  329. if (res.confirm) {
  330. uni.navigateTo({
  331. url: '/pages/public/login'
  332. })
  333. }
  334. }
  335. });
  336. },
  337. shar() {
  338. if (this.token) {
  339. let that = this
  340. // h5分享
  341. // #ifdef H5
  342. let url = config.WSHOST4 + '/pages/index/game/order?postPushId=' + this.postPushId
  343. // let url = 'http://192.168.0.109:8081/pages/index/game/order?postPushId=' + this.postPushId
  344. // alert(url)
  345. uni.setClipboardData({
  346. data: url,
  347. success() {
  348. uni.showToast({
  349. title: '分享链接已复制'
  350. })
  351. }
  352. })
  353. // #endif
  354. } else {
  355. this.getShowModal()
  356. }
  357. },
  358. goJuBao() {
  359. if (this.token) {
  360. uni.navigateTo({
  361. url: '/my/feedback/jubao?postPushId=' + this.postPushId
  362. })
  363. } else {
  364. this.getShowModal()
  365. }
  366. },
  367. //在线联系
  368. bindphone(phone, index) {
  369. if (uni.getStorageSync('token')) {
  370. this.$Request.get('/app/resumes/selectResumesByUserId').then(res => {
  371. if (res.code == 0) {
  372. let obj = res.data
  373. if (JSON.stringify(obj) == '{}' || obj == null) {
  374. uni.showModal({
  375. title: '提示',
  376. content: '暂无简历,请完善简历!',
  377. confirmText: '去完善',
  378. confirmColor: '#00B88F',
  379. complete(ret) {
  380. if (ret.confirm) {
  381. uni.navigateTo({
  382. url: '/package/my/resume'
  383. })
  384. }
  385. }
  386. })
  387. } else {
  388. this.$Request.postJson('/app/chat/insertChatConversation', {
  389. userId: uni.getStorageSync('userId'), //用户userid
  390. focusedUserId: this.info.user.userId, //企业userid
  391. type: 1,
  392. postPushId: this.info.postPushId,
  393. resumesId: res.data.resumesId
  394. }).then(res => {
  395. if (res.code == 0) {
  396. uni.navigateTo({
  397. url: '/pages/msg/im?byUserId=' + this.info.user
  398. .userId + '&chatConversationId=' + res.data
  399. .chatConversationId + '&postPushId=' + res.data
  400. .postPushId
  401. })
  402. }
  403. })
  404. }
  405. }
  406. })
  407. } else {
  408. uni.showModal({
  409. title: '提示',
  410. content: '请登录后联系企业',
  411. showCancel: true,
  412. cancelText: '取消',
  413. confirmText: '去登录',
  414. complete: (res) => {
  415. if (res.confirm) {
  416. uni.navigateTo({
  417. url: '/pages/public/login'
  418. })
  419. }
  420. }
  421. });
  422. }
  423. },
  424. //拉起地图导航
  425. gotoMap() {
  426. let that = this
  427. uni.openLocation({
  428. latitude: that.info.lat,
  429. longitude: that.info.lng,
  430. address: that.info.province + '' + that.info.city + '' + that.info.county + '' + that.info
  431. .address,
  432. name: that.info.address,
  433. complete(ret) {
  434. }
  435. })
  436. },
  437. /**
  438. * 收藏岗位
  439. */
  440. setCollection() {
  441. this.$Request.postT("/app/myCollection/saveCollection", {
  442. postPushId: this.postPushId,
  443. type: 1
  444. }).then(res => {
  445. if (res.code == 0) {
  446. uni.showToast({
  447. title: res.msg
  448. })
  449. this.getInfo()
  450. }
  451. })
  452. },
  453. /**
  454. * 获取岗位详情
  455. */
  456. getInfo() {
  457. this.$Request.getT("/app/postPush/selectPostPushDetails", {
  458. userId: uni.getStorageSync('userId'),
  459. postPushId: this.postPushId
  460. }).then(res => {
  461. if (res.code == 0) {
  462. this.info = res.data
  463. this.covers = [{
  464. id: 1,
  465. latitude: this.info.lat,
  466. longitude: this.info.lng,
  467. width: 20,
  468. height: 20,
  469. iconPath: '../../../static/images/mapMarker.png',
  470. callout: {
  471. content: this.info.city + '' + this.info.county + '' + this.info.address,
  472. color: '#000', //文字颜色
  473. fontSize: 10, //文本大小
  474. padding: 10, //附近留白
  475. borderRadius: 24, //边框圆角
  476. bgColor: '#FFFFFF', //背景颜色
  477. display: 'ALWAYS', //常显
  478. }
  479. }]
  480. }
  481. uni.hideLoading()
  482. })
  483. },
  484. //跳转企业详情
  485. goInfo(companyId) {
  486. uni.navigateTo({
  487. url: '/my/enterpriseInfo/enterpriseInfo?companyId=' + companyId
  488. })
  489. },
  490. }
  491. }
  492. </script>
  493. <style lang="scss">
  494. page {
  495. background-color: #F2F2F7;
  496. padding-bottom: 200rpx;
  497. }
  498. button {
  499. background: #ffffff;
  500. border: none !important;
  501. width: 120rpx;
  502. font-size: 24rpx;
  503. height: 80rpx;
  504. display: flex;
  505. justify-content: center;
  506. align-content: flex-start;
  507. flex-wrap: wrap;
  508. margin: 0;
  509. padding: 0 !important;
  510. line-height: 0 !important;
  511. }
  512. button:after {
  513. border: none !important;
  514. }
  515. .backHome {
  516. position: fixed;
  517. right: 30rpx;
  518. bottom: 160rpx;
  519. image {
  520. width: 80rpx;
  521. height: 80rpx;
  522. border-radius: 50%;
  523. }
  524. }
  525. .shar {
  526. width: 100%;
  527. height: 100rpx;
  528. margin-top: 40rpx;
  529. .shar-box {
  530. width: 686rpx;
  531. height: 100%;
  532. .shar-box-item {
  533. font-size: 24rpx;
  534. }
  535. }
  536. }
  537. .line {
  538. width: 100%;
  539. border: 1rpx solid #F2F2F7;
  540. margin-top: 30rpx;
  541. margin-bottom: 20rpx;
  542. }
  543. .sharNo {
  544. width: 100%;
  545. color: #cccccc;
  546. font-size: 24rpx;
  547. text-align: center;
  548. }
  549. .job {
  550. width: 100%;
  551. margin-top: 30rpx;
  552. .job-info {
  553. width: 686rpx;
  554. height: 100%;
  555. border-radius: 24rpx;
  556. background-color: #ffffff;
  557. .job-info-c {
  558. width: 626rpx;
  559. height: 100%;
  560. padding-top: 30rpx;
  561. padding-bottom: 30rpx;
  562. }
  563. .job-info-c-title {
  564. color: #333333;
  565. font-size: 38rpx;
  566. font-weight: 800;
  567. }
  568. .job-info-c-label {
  569. margin-top: 30rpx;
  570. .job-info-c-label-item {
  571. margin-right: 30rpx;
  572. color: #999999;
  573. font-size: 28rpx;
  574. margin-bottom: 10rpx;
  575. }
  576. }
  577. .job-info-c-price {
  578. color: #00B88F;
  579. font-size: 38rpx;
  580. font-weight: bold;
  581. margin-top: 30rpx;
  582. }
  583. }
  584. }
  585. .jobRemarks {
  586. width: 100%;
  587. margin-top: 20rpx;
  588. .jobRemarks-box {
  589. width: 686rpx;
  590. height: 100%;
  591. background-color: #ffffff;
  592. border-radius: 24rpx;
  593. .jobRemarks-box-c {
  594. width: 628rpx;
  595. height: 100%;
  596. padding-top: 30rpx;
  597. padding-bottom: 30rpx;
  598. }
  599. .jobRemarks-box-c-title {
  600. color: #333333;
  601. font-size: 32rpx;
  602. font-weight: 800;
  603. }
  604. .jobRemarks-box-c-label {
  605. width: 100%;
  606. margin-top: 25rpx;
  607. .jobRemarks-box-c-label-item {
  608. color: #666666;
  609. font-size: 24rpx;
  610. padding: 10rpx 15rpx;
  611. background-color: #F6F6F6;
  612. border-radius: 8rpx;
  613. margin-right: 20rpx;
  614. margin-bottom: 10rpx;
  615. }
  616. }
  617. .jobRemarks-box-c-con {
  618. width: 100%;
  619. margin-top: 25rpx;
  620. .jobRemarks-box-c-con-item {
  621. margin-bottom: 10rpx;
  622. color: #141414;
  623. font-size: 28rpx;
  624. font-weight: 500;
  625. }
  626. }
  627. .jobRemarks-box-c-line {
  628. width: 100%;
  629. border: 1rpx solid #E6E6E6;
  630. margin-top: 25rpx;
  631. }
  632. }
  633. }
  634. .enterprise {
  635. width: 100%;
  636. // height: 256rpx;
  637. margin-top: 25rpx;
  638. .enterprise-box {
  639. width: 686rpx;
  640. background-color: #ffffff;
  641. height: 100%;
  642. padding-bottom: 25rpx;
  643. border-radius: 24rpx;
  644. .enterprise-box-c {
  645. width: 626rpx;
  646. height: 100%;
  647. }
  648. .enterprise-box-c-info {
  649. width: 100%;
  650. height: 95rpx;
  651. margin-top: 40rpx;
  652. .enterprise-box-c-info-n {
  653. margin-left: 18rpx;
  654. view:nth-of-type(1) {
  655. color: #333333;
  656. font-size: 32rpx;
  657. font-weight: 800;
  658. }
  659. view:nth-of-type(2) {
  660. color: #999999;
  661. font-size: 24rpx;
  662. font-weight: 500;
  663. margin-top: 10rpx;
  664. }
  665. }
  666. }
  667. .enterprise-box-c-bto {
  668. width: 100%;
  669. // height: 60rpx;
  670. padding-top: 15rpx;
  671. padding-bottom: 15rpx;
  672. background-color: #EDFFFB;
  673. border-radius: 30rpx;
  674. margin-top: 20rpx;
  675. color: #00B88F;
  676. font-size: 24rpx;
  677. font-weight: 500;
  678. }
  679. .enterprise-box-c-map {
  680. width: 100%;
  681. margin-top: 20rpx;
  682. height: 400rpx;
  683. }
  684. }
  685. }
  686. .caozuo {
  687. width: 100%;
  688. height: 120rpx;
  689. position: fixed;
  690. bottom: 0;
  691. background-color: #ffffff;
  692. .caozuo-box {
  693. width: 686rpx;
  694. height: 80rpx;
  695. .caozuo-box-l {
  696. .caozuo-box-l-item {
  697. width: 60rpx;
  698. font-size: 24rpx;
  699. color: #242424;
  700. font-weight: 500;
  701. margin-right: 50rpx;
  702. }
  703. }
  704. .caozuo-box-r {
  705. width: 400rpx;
  706. height: 100%;
  707. color: #ffffff;
  708. border-radius: 45rpx;
  709. /* #ifndef APP-PLUS */
  710. background: linear-gradient(90deg, #00DCC2 0%, #00DC94 100%);
  711. /* #endif */
  712. /* #ifdef APP-PLUS */
  713. background-color: #00DCC2;
  714. line-height: 80rpx;
  715. text-align: center;
  716. /* #endif */
  717. font-size: 32rpx;
  718. font-weight: 800;
  719. }
  720. }
  721. }
  722. </style>