activityDetail.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  1. <template>
  2. <view class="container activity-detail">
  3. <view class="" v-if="haveAuth == 1">
  4. <!-- 头部滚动显示 -->
  5. <view class="notice" v-if="detailData.IsLimitPeople == 1">
  6. <van-notice-bar color="#FFFFFF" background="#FE9000" text="该活动参与名额有限,报名客户请按时参加,若不能按时参加请及时取消报名,爽约会影响您的后续报名资格" />
  7. </view>
  8. <!-- 内容部分 -->
  9. <view class="content">
  10. <view v-if="detailData.ActivityName" class="dialog-title" :class="1 == 1 ? 'brackets-title' : ''">{{ detailData.ActivityName }}</view>
  11. <view class="city-box">
  12. <text v-if="detailData.ActivityTypeName">活动类型:</text>
  13. <view class="city">
  14. <text style="color: #333">{{ detailData.ActivityTypeName }}</text>
  15. <image v-if="detailData.City" style="margin-left: 15rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/location.png" mode=""></image>
  16. <text v-if="detailData.City">{{ detailData.City }}</text>
  17. </view>
  18. <view class="choose-limit" @click="strictSelection" v-if="detailData.IsShowSustainable">
  19. <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/choose_icon.png" mode=""></image>
  20. <image class="limit-img" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/limit_icon.png" mode=""></image>
  21. </view>
  22. </view>
  23. <view v-if="detailData.ChartPermissionName" class="network">
  24. <view class="network-left">所属行业:</view>
  25. <view class="network-right">{{ detailData.ChartPermissionName }}</view>
  26. </view>
  27. <view v-if="detailData.ActivityTimeText" class="network">
  28. <view class="network-left">活动时间:</view>
  29. <view class="network-right">{{ detailData.ActivityTimeText }}</view>
  30. </view>
  31. <view v-if="detailData.DistinguishedGuest" class="network">
  32. <view class="network-left">嘉&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;宾:</view>
  33. <view class="network-right">{{ detailData.DistinguishedGuest }}</view>
  34. </view>
  35. <view v-if="detailData.Host" class="network">
  36. <view class="network-left">主&nbsp;&nbsp;持&nbsp;人:</view>
  37. <view class="network-right">{{ detailData.Host }}</view>
  38. </view>
  39. <view v-if="detailData.Speaker" class="network">
  40. <view class="network-left">主&nbsp;&nbsp;讲&nbsp;人:</view>
  41. <view class="network-right">{{ detailData.Speaker }}</view>
  42. </view>
  43. <view v-if="detailData.Expert" class="network">
  44. <view class="network-left">专家背景:</view>
  45. <view class="network-right">
  46. <rich-text :nodes="detailData.Expert"></rich-text>
  47. </view>
  48. </view>
  49. <view v-if="detailData.MainlandTell" class="network">
  50. <view class="network-left">大陆拨入:</view>
  51. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.MainlandTell)">{{ detailData.MainlandTell }}</view>
  52. </view>
  53. <view v-if="detailData.HongKongTell" class="network">
  54. <view class="network-left">香港拨入:</view>
  55. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.HongKongTell)">{{ detailData.HongKongTell }}</view>
  56. </view>
  57. <view v-if="detailData.TaiwanTell" class="network">
  58. <view class="network-left">台湾拨入:</view>
  59. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.TaiwanTell)">{{ detailData.TaiwanTell }}</view>
  60. </view>
  61. <view v-if="detailData.AmericaTell" class="network">
  62. <view class="network-left">美国拨入:</view>
  63. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.AmericaTell)">{{ detailData.AmericaTell }}</view>
  64. </view>
  65. <view v-if="detailData.ParticipationCode" class="network">
  66. <view class="network-left">拨入密码:</view>
  67. <view class="network-right">{{
  68. detailData.ActivityTypeName == "公司调研电话会" && detailData.IsLimitPeople == 1 && detailData.IsSignup == 0 ? "请报名获取" : detailData.ParticipationCode
  69. }}</view>
  70. </view>
  71. <view class="network" v-if="detailData.OnlineParticipation">
  72. <view class="network-left">网络参会:</view>
  73. <view class="network-right network-link" style="color: #2c83ff">
  74. <view class="">
  75. <text class="default text_oneLine" @click="networkBtn">{{ detailData.OnlineParticipation }}</text>
  76. <text class="default copy-link" @click="copyLink">复制链接</text>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="network" v-if="detailData.LinkParticipants">
  81. <view class="network-left">链接参会:</view>
  82. <view class="network-right network-zoom" style="color: #2c83ff">
  83. <view>
  84. <text class="default text_zoom">{{ detailData.LinkParticipants }}</text>
  85. <view> 点击<text class="default copy-link copy-zoom" @click="copyLink">复制链接</text>在手机浏览器打开,并输入会议密码 </view>
  86. </view>
  87. </view>
  88. </view>
  89. <view v-if="detailData.AppAttendance" class="network">
  90. <view class="network-left">App参会: </view>
  91. <view class="network-right">
  92. <rich-text :nodes="detailData.AppAttendance"></rich-text>
  93. </view>
  94. </view>
  95. <view v-if="detailData.ConferencePassword" class="network">
  96. <view class="network-left">拨入密码:</view>
  97. <view class="network-right">{{
  98. detailData.ActivityTypeName == "公司调研电话会" && detailData.IsLimitPeople == 1 && detailData.IsSignup == 0 ? "请报名获取" : detailData.ConferencePassword
  99. }}</view>
  100. </view>
  101. <view v-if="detailData.Address" class="network">
  102. <view class="network-left">活动地址:</view>
  103. <view class="network-right" v-if="detailData.IsSignup == 0 && detailData.ActivityTypeName == '公司线下调研' && detailData.IsLimitPeople == 1">请报名获取 </view>
  104. <view class="network-right" v-else>{{ detailData.Address }}</view>
  105. </view>
  106. <view v-if="detailData.Highlights" class="network">
  107. <view class="network-left">活动亮点: </view>
  108. <view class="network-right">
  109. <rich-text :nodes="detailData.Highlights"></rich-text>
  110. </view>
  111. </view>
  112. <view class="network" v-if="detailData.ReportLink">
  113. <view class="network-left">相关报告:</view>
  114. <view class="network-right" style="color: #2c83ff" @click="goDetail"> 查看报告链接 </view>
  115. </view>
  116. <view v-if="detailData.Theme" class="network">
  117. <view class="network-left">主&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;题: </view>
  118. <view class="network-right">
  119. <rich-text :nodes="detailData.Theme"></rich-text>
  120. </view>
  121. </view>
  122. <view v-if="detailData.Remarks" class="network">
  123. <view class="network-left">备&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;注: </view>
  124. <view class="network-right">
  125. <rich-text :nodes="detailData.Remarks"></rich-text>
  126. </view>
  127. </view>
  128. </view>
  129. <view class="" style="height: 50rpx"></view>
  130. <!-- 操作按钮部分 -->
  131. <view>
  132. <view
  133. class="content-bottom"
  134. v-if="
  135. detailData.ActivityTypeId == 1 ||
  136. detailData.ActivityTypeId == 2 ||
  137. (detailData.ActivityTypeId == 3 && detailData.IsLimitPeople == 0) ||
  138. (detailData.IsLimitPeople == 0 && detailData.ActivityTypeName == '公司线下调研')
  139. "
  140. >
  141. <view class="" v-if="detailData.ActiveState == 1">
  142. <view class="make-outbound" @click="signupCancel(1)" v-if="detailData.IsSignup == 1"> 取消外呼 </view>
  143. <view class="make-outbound" v-else @click="signupAdd(1)"> 预约外呼 </view>
  144. <view @click="meetingReminderCancel" class="make-conference" v-if="detailData.IsCancelMeetingReminder == 1">
  145. 取消会议提醒
  146. <text>(会前15分钟推送微信消息提醒)</text>
  147. </view>
  148. <view @click="meetingReminderAdd" class="make-conference" v-else>
  149. 会议提醒
  150. <text>(会前15分钟推送微信消息提醒)</text>
  151. </view>
  152. <view v-if="detailData.ActivityTypeId == 1" class="make-generation make-conference" @click="askingGo"> 帮我带问 </view>
  153. </view>
  154. </view>
  155. <view class="bottom-env" v-else>
  156. <view class="apply-box" v-if="detailData.ActiveState == 1">
  157. <view class="cancel-apply">
  158. 报名人数:<text>{{ detailData.SignupNum }}</text
  159. >/{{ detailData.LimitPeopleNum }}
  160. </view>
  161. <view v-if="detailData.IsSignup == 0" class="ok-apply" @click="wanttosignup">
  162. {{ detailData.SignupType == 1 ? "预约外呼" : "我要报名" }}
  163. </view>
  164. <view v-else class="ok-apply" @click="signupCancel(2)">
  165. {{ detailData.SignupType == 1 ? "取消外呼" : "取消报名" }}
  166. </view>
  167. </view>
  168. </view>
  169. <view class="content-bottom" v-if="detailData.ActiveState == 2 && detailData.ActivityTypeId == 1">
  170. <view class="make-conference" @click="askingGo('提问')">
  171. 实时提问
  172. <text>会议过程中,分析师可替您提问专家</text>
  173. </view>
  174. </view>
  175. </view>
  176. <!-- 参会方式的弹出层 -->
  177. <view class="select-box">
  178. <u-popup v-model="selectShow" mode="bottom">
  179. <view style="color: #333333; font-size: 28rpxrpx">请选择参会方式</view>
  180. <view style="color: #2c83ff" @click="signupAdd(1)">预约外呼</view>
  181. <view style="color: #2c83ff" @click="signupAdd(2)">自主拨入</view>
  182. <view style="color: #a9afb8" @click="selectShow = false">取消</view>
  183. </u-popup>
  184. </view>
  185. <!-- 各种弹框部分 -->
  186. <modalDialog
  187. :isShow="isShow"
  188. :signupType="signupType"
  189. :goFollow="goFollow"
  190. :signupStatus="signupStatus"
  191. :isCancelShow="isCancelShow"
  192. :idTypeCancel="idTypeCancel"
  193. @cancelShowBtn="cancelEnsure"
  194. :editIsShow="editIsShow"
  195. :countryCode="countryCode"
  196. :mobileEdit="mobileEdit"
  197. :goOnNextStep="goOnNextStep"
  198. :mailboxBinding="mailboxBinding"
  199. />
  200. <!-- 区号的弹出层 -->
  201. <areaCode :isAreaCode="isAreaCode" :areaCode="areaCode" />
  202. </view>
  203. <!-- 权限部分 -->
  204. <view v-else>
  205. <jurisdiction :idAct="id" :haveAuth="haveAuth" :industryMsg="industryMsg" :msgType="msgType" :sellerMobile="sellerMobile" :sellerName="sellerName"></jurisdiction>
  206. </view>
  207. <freeCharge class="free-charge" :isShowFreeBtn="isShowFree" />
  208. </view>
  209. </template>
  210. <script>
  211. import { activity, User } from "@/config/api.js";
  212. import modalDialog from "@/components/modalDialog.vue";
  213. import areaCode from "@/activityPages/components/areaCode.vue";
  214. import jurisdiction from "./jurisdiction/components.vue";
  215. import freeCharge from "@/components/freeCharge";
  216. let app = getApp({ allowDefault: true });
  217. export default {
  218. data() {
  219. return {
  220. id: "",
  221. detailData: {},
  222. isShowJurisdiction: false,
  223. isGain: true,
  224. signupType: "", //关注类型
  225. goFollow: false, //是否关注公众号
  226. signupStatus: "Success", //4个不同的类型提示文案
  227. isShow: false, //弹框
  228. isCancelShow: false,
  229. idTypeCancel: {
  230. id: "",
  231. type: 1,
  232. cutId: "",
  233. state: "",
  234. },
  235. selectShow: false,
  236. isAreaCode: false,
  237. areaCode: {
  238. id: "",
  239. type: "",
  240. },
  241. isNeedAddCountryCode: false,
  242. haveAuth: "",
  243. industryMsg: "",
  244. sellerMobile: "",
  245. sellerName: "", //销售名称
  246. msgType: "",
  247. editIsShow: false, //外呼莫泰框
  248. countryCode: "", //外呼区号
  249. mobileEdit: "", //外呼手机号
  250. goOnNextStep: "", //设置外呼号后弹出哪个
  251. mailboxBinding: false, //是否绑定邮箱
  252. };
  253. },
  254. components: {
  255. modalDialog,
  256. jurisdiction,
  257. areaCode,
  258. freeCharge,
  259. },
  260. watch: {
  261. haveAuth: {
  262. handler() {
  263. if (this.haveAuth == 1) {
  264. this.$store.dispatch("statistics", { PageType: "ActivitParticulars", DetailId: this.id });
  265. }
  266. },
  267. immediate: true,
  268. },
  269. },
  270. methods: {
  271. //获取是否需要填写区号接口
  272. countryCcode() {
  273. User.countryCcode().then((res) => {
  274. if (res.Ret == 200) {
  275. this.isNeedAddCountryCode = res.Data.IsNeedAddCountryCode;
  276. }
  277. });
  278. },
  279. getActivityDetail() {
  280. activity
  281. .getActivityDetail({
  282. ActivityId: this.id,
  283. })
  284. .then((res) => {
  285. if (res.Ret == 200) {
  286. this.haveAuth = res.Data.HasPermission;
  287. this.industryMsg = res.Data.PopupMsg;
  288. this.sellerMobile = res.Data.SellerMobile;
  289. this.sellerName = res.Data.SellerName;
  290. this.msgType = res.Data.MsgType;
  291. if (res.Data.HasPermission == 1) {
  292. this.detailData = res.Data.Detail;
  293. let pages = getCurrentPages();
  294. let prevPage = pages[pages.length - 2];
  295. let path = prevPage.$page.fullPath;
  296. if (path == "/pages/activity/activity" || path == "/activityPages/activitySearch/activitySearch") {
  297. const index = prevPage.$vm.collectList.findIndex((item) => item.ActivityId == this.id);
  298. prevPage.$vm.collectList[index].IsSignup = this.detailData.IsSignup;
  299. prevPage.$vm.collectList[index].SignupNum = this.detailData.SignupNum;
  300. prevPage.$vm.collectList[index].IsCancelMeetingReminder = this.detailData.IsCancelMeetingReminder;
  301. }
  302. }
  303. }
  304. });
  305. },
  306. phonebtn(phone) {
  307. uni.makePhoneCall({
  308. phoneNumber: phone,
  309. });
  310. },
  311. //报名
  312. signupAdd(type) {
  313. if (this.isNeedAddCountryCode) {
  314. this.isAreaCode = true;
  315. this.areaCode = {
  316. id: Number(this.id),
  317. type,
  318. };
  319. } else {
  320. activity
  321. .signupAdd({
  322. ActivityId: Number(this.id),
  323. SignupType: type,
  324. })
  325. .then((res) => {
  326. if (res.Ret == 200) {
  327. this.signupType = res.Data.SignupType;
  328. this.signupStatus = res.Data.SignupStatus;
  329. this.countryCode = res.Data.CountryCode;
  330. this.mobileEdit = res.Data.Mobile;
  331. this.goOnNextStep = res.Data.GoFollow;
  332. this.idTypeCancel = {
  333. cutId: res.Data.ActivityId,
  334. state: 1,
  335. };
  336. if (res.Data.GoBindEmail) {
  337. this.mailboxBinding = true;
  338. return;
  339. }
  340. if (res.Data.SignupStatus !== "Success") {
  341. this.isShow = true;
  342. } else {
  343. if (res.Data.GoOutboundMobile) {
  344. this.editIsShow = true;
  345. } else if (res.Data.GoFollow) {
  346. this.goFollow = res.Data.GoFollow;
  347. } else if (res.Data.SignupStatus == "Success") {
  348. this.isShow = true;
  349. }
  350. }
  351. }
  352. });
  353. }
  354. this.selectShow = false;
  355. },
  356. //取消报名
  357. signupCancel(type) {
  358. this.isCancelShow = true;
  359. this.idTypeCancel = {
  360. id: Number(this.id),
  361. type,
  362. cutId: "",
  363. state: 0,
  364. };
  365. },
  366. networkBtn() {
  367. if (this.detailData.OnlineParticipation.includes("http")) {
  368. uni.navigateTo({
  369. url: "/activityPages/networkAttend/networkAttend?url=" + this.detailData.OnlineParticipation,
  370. });
  371. } else {
  372. uni.navigateToMiniProgram({
  373. appId: "wxade30ff0c4ee757d",
  374. path: this.detailData.OnlineParticipation,
  375. });
  376. }
  377. },
  378. cancelEnsure() {
  379. this.getActivityDetail();
  380. },
  381. goDetail() {
  382. uni.navigateTo({
  383. url: "/pageMy/reportDetail/reportDetail?id=" + this.detailData.ArticleId,
  384. });
  385. },
  386. askingGo(type = "") {
  387. uni.navigateTo({
  388. url: "/activityPages/generationAsk/generationAsk?id=" + this.id + "&type=" + type,
  389. });
  390. },
  391. meetingReminderAdd() {
  392. activity
  393. .meetingReminderAdd({
  394. ActivityId: Number(this.id),
  395. })
  396. .then((res) => {
  397. if (res.Ret == 200) {
  398. uni.showModal({
  399. confirmText: "知道了",
  400. confirmColor: "#3385FF",
  401. content: res.Msg,
  402. showCancel: false,
  403. success: (res) => {
  404. if (res.confirm) {
  405. this.getActivityDetail();
  406. }
  407. },
  408. });
  409. }
  410. });
  411. },
  412. //取消会议提醒接口
  413. meetingReminderCancel() {
  414. activity
  415. .meetingReminderCancel({
  416. ActivityId: Number(this.id),
  417. })
  418. .then((res) => {
  419. if (res.Ret == 200) {
  420. uni.showModal({
  421. confirmText: "知道了",
  422. confirmColor: "#3385FF",
  423. content: res.Msg,
  424. showCancel: false,
  425. success: (res) => {
  426. if (res.confirm) {
  427. this.getActivityDetail();
  428. }
  429. },
  430. });
  431. }
  432. });
  433. },
  434. wanttosignup() {
  435. if (this.detailData.IsLimitPeople == 1 && this.detailData.ActivityTypeName == "公司调研电话会") {
  436. this.selectShow = true;
  437. } else {
  438. this.signupAdd(3);
  439. }
  440. },
  441. //点击了严选
  442. strictSelection() {
  443. activity.descriptionOfResearch().then((res) => {
  444. if (res.Ret == 200) {
  445. uni.showModal({
  446. content: res.Data.Item.ConfigValue,
  447. confirmText: "知道了",
  448. showCancel: false,
  449. confirmColor: "#3385FF",
  450. success: function (res) {},
  451. });
  452. }
  453. });
  454. },
  455. copyLink() {
  456. uni.setClipboardData({
  457. data: this.detailData.LinkParticipants || this.detailData.OnlineParticipation,
  458. success: function () {
  459. uni.showToast({
  460. title: "复制成功,可在浏览器打开",
  461. icon: "none",
  462. duration: 2000,
  463. });
  464. },
  465. });
  466. },
  467. },
  468. onLoad(option) {
  469. this.id = option.id || "";
  470. },
  471. async onShow() {
  472. await this.$store.dispatch("checkHandle");
  473. if (!this.$store.state.isAuth && !this.$store.state.isBind) {
  474. //已授权已绑定
  475. this.countryCcode(); //判断是否加区号
  476. this.getActivityDetail();
  477. }
  478. },
  479. /**
  480. * 用户点击分享
  481. */
  482. onShareAppMessage: function (res) {
  483. return {
  484. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : "活动详情",
  485. path: "/activityPages/activityDetail/activityDetail?id=" + this.id,
  486. success: (res) => {},
  487. fail: (err) => {},
  488. };
  489. },
  490. };
  491. </script>
  492. <style lang="scss">
  493. .activity-detail {
  494. padding-bottom: 100rpx;
  495. .notice {
  496. height: 60rpx;
  497. width: 100%;
  498. }
  499. .choose-limit {
  500. position: relative;
  501. display: flex;
  502. align-items: center;
  503. // margin-left: 20rpx;
  504. image {
  505. width: 93rpx;
  506. height: 38rpx;
  507. }
  508. .limit-img {
  509. position: absolute;
  510. top: -13rpx;
  511. right: -30rpx;
  512. width: 46rpx;
  513. height: 26rpx;
  514. }
  515. }
  516. .content {
  517. padding: 34rpx 34rpx 0rpx;
  518. margin-bottom: -20rpx;
  519. color: #333333;
  520. font-size: 28rpx;
  521. view {
  522. padding-left: 20rpx;
  523. }
  524. text {
  525. line-height: 80rpx;
  526. padding-left: 20rpx;
  527. }
  528. .phone {
  529. padding: 0;
  530. display: inline-block;
  531. color: #2c83ff;
  532. }
  533. .dialog-title {
  534. width: 682rpx;
  535. padding: 20rpx;
  536. background: #f2f2f2;
  537. opacity: 0.8;
  538. font-size: 30rpx;
  539. font-weight: bold;
  540. margin-bottom: 15rpx;
  541. color: #000;
  542. }
  543. .brackets-title {
  544. padding-left: 20rpx;
  545. }
  546. .city-box {
  547. display: flex;
  548. align-items: center;
  549. text {
  550. padding: 0;
  551. }
  552. .city {
  553. display: flex;
  554. color: #2088ff;
  555. align-items: center;
  556. image {
  557. width: 27rpx;
  558. height: 32rpx;
  559. margin-right: 12rpx;
  560. }
  561. }
  562. }
  563. }
  564. .network {
  565. margin-bottom: 30rpx;
  566. padding: 0 !important;
  567. display: flex;
  568. .network-left {
  569. width: 160rpx;
  570. text-align-last: justify;
  571. text-align: justify;
  572. }
  573. .network-right {
  574. width: 480rpx;
  575. }
  576. .network-zoom {
  577. .text_zoom {
  578. width: 100%;
  579. word-break: break-all;
  580. color: #333333;
  581. }
  582. view {
  583. padding: 0 !important;
  584. margin: 0 !important;
  585. }
  586. .copy-zoom {
  587. display: inline-block;
  588. padding: 5rpx 17rpx !important;
  589. border-radius: 34rpx;
  590. background-color: #ebf4ff;
  591. font-size: 24rpx;
  592. color: #2c83ff;
  593. margin: 0 10rpx;
  594. margin-top: 30rpx;
  595. }
  596. }
  597. .network-link {
  598. width: 520rpx !important;
  599. view {
  600. padding: 0 !important;
  601. margin: 0 !important;
  602. width: 100%;
  603. display: flex;
  604. justify-content: space-between;
  605. :first-child {
  606. width: 350rpx;
  607. }
  608. .copy-link {
  609. padding: 5rpx 17rpx !important;
  610. border-radius: 34rpx;
  611. background-color: #ebf4ff;
  612. font-size: 24rpx;
  613. color: #2c83ff;
  614. }
  615. }
  616. }
  617. }
  618. .default {
  619. // padding: 0 !important;
  620. // margin: 0;
  621. padding-left: 0 !important;
  622. line-height: 40rpx !important;
  623. }
  624. .content-bottom {
  625. margin: 50rpx 0 30rpx;
  626. .make-outbound {
  627. margin: 0 auto;
  628. width: 368rpx;
  629. height: 80rpx;
  630. background: linear-gradient(268deg, #2ddbff 0%, #1599ff 49%, #005eff 100%);
  631. opacity: 1;
  632. border-radius: 4rpx;
  633. color: #ffffff;
  634. font-size: 34rpx;
  635. line-height: 80rpx;
  636. text-align: center;
  637. }
  638. .make-generation {
  639. padding-top: 0rpx !important;
  640. line-height: 76rpx;
  641. }
  642. .make-conference {
  643. margin: 30rpx auto;
  644. width: 368rpx;
  645. height: 80rpx;
  646. border: 2px solid #2c83ff;
  647. opacity: 1;
  648. border-radius: 4rpx;
  649. padding-top: 5rpx;
  650. text-align: center;
  651. color: #2c83ff;
  652. font-size: 30rpx;
  653. text {
  654. font-size: 16rpx;
  655. }
  656. }
  657. }
  658. .bottom-env {
  659. position: fixed;
  660. bottom: 0;
  661. padding-bottom: constant(safe-area-inset-bottom);
  662. padding-bottom: env(safe-area-inset-bottom);
  663. left: 0;
  664. width: 100%;
  665. background-color: #ffffff;
  666. }
  667. .apply-box {
  668. width: 100%;
  669. height: 100rpx;
  670. display: flex;
  671. font-size: 32rpx;
  672. color: #333333;
  673. line-height: 100rpx;
  674. .cancel-apply {
  675. display: flex;
  676. padding-left: 50rpx;
  677. flex: 1;
  678. border: 2rpx solid #005eff;
  679. background-color: #fff;
  680. text {
  681. color: #005eff;
  682. }
  683. }
  684. .ok-apply {
  685. flex: 1;
  686. background: linear-gradient(268deg, #2ddbff 0%, #1599ff 49%, #005eff 100%);
  687. text-align: center;
  688. color: #ffffff;
  689. }
  690. }
  691. .select-box {
  692. width: 100%;
  693. view {
  694. height: 95prx;
  695. line-height: 95rpx;
  696. text-align: center;
  697. font-size: 32rpx;
  698. border-bottom: 1rpx solid #ebebeb;
  699. }
  700. }
  701. }
  702. </style>