activityDetail.vue 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252
  1. <template>
  2. <block>
  3. <view class="container activity-detail" v-if="isUserBindingPhoneNumber">
  4. <is-track-follow :isShowFollowButton.sync="detailData.IsShowFollowButton" source="activity" :sourceId="detailData.ActivityId" :isFollowData.sync="detailData.IsFollowButton" />
  5. <view class="" v-if="haveAuth == 1">
  6. <block v-if="detailData.YidongActivityUrl">
  7. <web-view :src="detailData.YidongActivityUrl"></web-view>
  8. </block>
  9. <block v-else>
  10. <!-- 头部滚动显示 -->
  11. <view class="notice" v-if="detailData.IsLimitPeople">
  12. <van-notice-bar color="#FFFFFF" background="#FE9000" text="该活动参与名额有限,报名客户请按时参加,若不能按时参加请及时取消报名,爽约会影响您的后续报名资格" />
  13. </view>
  14. <!-- 内容部分 -->
  15. <view class="content">
  16. <view v-if="detailData.ActivityName" class="dialog-title brackets-title">
  17. <image v-if="detailData.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
  18. <image v-else-if="detailData.IsResearch" src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
  19. <image v-else-if="!detailData.IsResearchPoints && detailData.IsExternalLabel" src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"></image>
  20. {{ detailData.ActivityName }}
  21. </view>
  22. <block v-if="detailData.FileType == 1">
  23. <view class="audio-card" v-if="detailData.VoiceList && detailData.VoiceList.Url">
  24. <view class="slider-paly">
  25. <view style="flex: 1; padding-top: 20rpx">
  26. <slider
  27. activeColor="#3385FF"
  28. :max="detailData.VoiceList.PlaySeconds"
  29. :value="curTime"
  30. @touchstart="touchstartHandler"
  31. @change="handleAudioSliderChange($event)"
  32. @changing="handleAudioSliderChangeing($event)"
  33. block-size="16"
  34. class="slider"
  35. />
  36. <view class="card-time">
  37. <view class="time">{{ curTime | formatVoiceTime }}</view>
  38. <view class="time">{{ detailData.VoiceList.PlaySeconds | formatVoiceTime }}</view>
  39. </view>
  40. </view>
  41. <view class="is-paly-card">
  42. <image
  43. @click.stop="audioPlayBack"
  44. class=""
  45. :src="
  46. curVoiceId === detailData.ActivityId && !curAudioPaused
  47. ? 'https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/play_icon.gif'
  48. : 'https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/pause_icon.png'
  49. "
  50. ></image>
  51. </view>
  52. </view>
  53. <view class="fast-reverse">
  54. <image @click="speedReverseHandler('reverse')" class="speed-img" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/fastReverse_icon.png"></image>
  55. <block v-for="(item, index) in timesTheSpeed" :key="item.value">
  56. <view class="speed-button" v-if="isTimes == item.value" @click="isTimesHandler(index)">
  57. {{ item.name }}
  58. </view>
  59. </block>
  60. <image @click="speedReverseHandler('speed')" class="speed-img" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/speed_icon.png"></image>
  61. </view>
  62. <view class="card-title text_twoLine">
  63. {{ detailTitle(detailData.VoiceList.Name) }}
  64. <view class="title-image">
  65. <image @click="myLeavingMessageHandler" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/multimedia/leaving_message.png"></image>
  66. <image
  67. @click="isCollectionHandeler"
  68. :src="
  69. detailData.IsCollect
  70. ? 'https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/multimedia/collected_icon.png'
  71. : 'https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/multimedia/not_collected.png'
  72. "
  73. ></image>
  74. </view>
  75. </view>
  76. </view>
  77. </block>
  78. <block v-if="detailData.FileType == 2">
  79. <view class="video-play" v-if="detailData.VideoDetail && detailData.VideoDetail.ResourceUrl">
  80. <video
  81. :id="detailData.ActivityId"
  82. :src="detailData.VideoDetail.ResourceUrl"
  83. enable-play-gesture
  84. :custom-cache="false"
  85. object-fit="contain"
  86. show-mute-btn
  87. @ended="handleVideoEnd"
  88. @play="handelVideoPlay"
  89. @loadedmetadata="loadedmetadataHandle"
  90. @timeupdate="handleVideoTimeUpdate"
  91. ></video>
  92. <view class="title text_twoLine">
  93. {{ detailTitle(detailData.VideoDetail.Title) }}
  94. <view class="title-image">
  95. <image @click="myLeavingMessageHandler" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/multimedia/leaving_message.png"></image>
  96. <image
  97. @click="isCollectionHandeler"
  98. :src="
  99. detailData.IsCollect
  100. ? 'https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/multimedia/collected_icon.png'
  101. : 'https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/multimedia/not_collected.png'
  102. "
  103. ></image>
  104. </view>
  105. </view>
  106. </view>
  107. </block>
  108. <view class="city-box">
  109. <text class="network-left" v-if="detailData.ActivityTypeName">活动类型:</text>
  110. <view class="city">
  111. <text style="color: #333">
  112. <block v-if="detailData.ChartPermissionName !== '买方研选'">({{ detailData.ChartPermissionName }})</block>
  113. {{ detailData.ActivityTypeName }}
  114. </text>
  115. <view class="choose-limit" @click="strictSelection">
  116. <image v-if="detailData.ChartPermissionName.includes('研选')" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/purchaser.png" mode=""></image>
  117. <image v-if="detailData.IsShowSustainable" class="limit-img" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/limit_icon.png" mode=""></image>
  118. </view>
  119. <image v-if="detailData.City" style="margin-left: 15rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/location.png" mode=""></image>
  120. <text v-if="detailData.City">{{ detailData.City }}</text>
  121. </view>
  122. </view>
  123. <view v-if="detailData.Listndustrial.length" class="network dustrial-ui">
  124. <view class="network-left">产业标签:</view>
  125. <view class="network-right dustrial-content">
  126. <view class="item" v-for="item in detailData.Listndustrial" :key="item.IndustrialManagementId">
  127. <view :class="['dustrial-li', item.IsJump && 'dustrial-item']" @click="goDustrialHandler(item)">{{ item.IndustryName }} </view>
  128. <image v-if="item.IndustryNewLabel" class="new_icon" src="https://hzstatic.hzinsights.com/cygx/icon/new_report.png" mode=""></image>
  129. </view>
  130. </view>
  131. </view>
  132. <view v-if="detailData.ActivityTimeText" class="network">
  133. <view class="network-left">活动时间:</view>
  134. <view class="network-right">{{ detailData.ActivityTimeText }}</view>
  135. </view>
  136. <view v-if="detailData.DistinguishedGuest" class="network">
  137. <view class="network-left">嘉&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;宾:</view>
  138. <view class="network-right">{{ detailData.DistinguishedGuest }}</view>
  139. </view>
  140. <view v-if="detailData.Host" class="network">
  141. <view class="network-left">主&nbsp;&nbsp;持&nbsp;人:</view>
  142. <view class="network-right">{{ detailData.Host }}</view>
  143. </view>
  144. <view v-if="detailData.Speaker" class="network">
  145. <view class="network-left">主&nbsp;&nbsp;讲&nbsp;人:</view>
  146. <view class="network-right">{{ detailData.Speaker }}</view>
  147. </view>
  148. <view v-if="detailData.Expert" class="network">
  149. <view class="network-left">专家背景:</view>
  150. <view class="network-right">
  151. <rich-text :nodes="detailData.Expert"></rich-text>
  152. </view>
  153. </view>
  154. <view v-if="detailData.MainlandTell" class="network">
  155. <view class="network-left">大陆拨入:</view>
  156. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.MainlandTell)">{{ detailData.MainlandTell }}</view>
  157. </view>
  158. <view v-if="detailData.HongKongTell" class="network">
  159. <view class="network-left">香港拨入:</view>
  160. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.HongKongTell)">{{ detailData.HongKongTell }}</view>
  161. </view>
  162. <view v-if="detailData.TaiwanTell" class="network">
  163. <view class="network-left">台湾拨入:</view>
  164. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.TaiwanTell)">{{ detailData.TaiwanTell }}</view>
  165. </view>
  166. <view v-if="detailData.AmericaTell" class="network">
  167. <view class="network-left">美国拨入:</view>
  168. <view class="network-right" style="color: #2c83ff" @click="phonebtn(detailData.AmericaTell)">{{ detailData.AmericaTell }}</view>
  169. </view>
  170. <view v-if="detailData.ParticipationCode" class="network">
  171. <view class="network-left">拨入密码:</view>
  172. <view class="network-right">{{ [1, 2, 3].includes(detailData.ActivityTypeId) && detailData.IsLimitPeople && !detailData.IsSignup ? "请报名获取" : detailData.ParticipationCode }}</view>
  173. </view>
  174. <view class="network" v-if="detailData.OnlineParticipation">
  175. <view class="network-left">网络参会:</view>
  176. <view class="network-right network-link" v-if="[1, 2].includes(detailData.ActivityTypeId) && detailData.IsLimitPeople && !detailData.IsSignup"> 请报名获取 </view>
  177. <view class="network-right network-link" style="color: #2c83ff" v-else>
  178. <view class="">
  179. <text class="default text_oneLine" @click="networkBtn">{{ detailData.OnlineParticipation }}</text>
  180. <text class="default copy-link" @click="copyLink(1)">复制链接</text>
  181. </view>
  182. </view>
  183. </view>
  184. <view class="network" v-if="detailData.LinkParticipants">
  185. <view class="network-left">链接参会:</view>
  186. <view class="network-right network-zoom" style="color: #2c83ff">
  187. <view>
  188. <view class="default text_zoom" v-if="!detailData.IsSignup && detailData.ActivityTypeName == '公司调研电话会' && detailData.IsLimitPeople">请报名获取 </view>
  189. <blcok v-else>
  190. <text class="default text_zoom">{{ detailData.LinkParticipants }}</text>
  191. <view> 点击<text class="default copy-link copy-zoom" @click="copyLink(1)">复制链接</text>在手机浏览器打开,并输入会议密码 </view>
  192. </blcok>
  193. </view>
  194. </view>
  195. </view>
  196. <view v-if="detailData.AppAttendance" class="network">
  197. <view class="network-left">App参会: </view>
  198. <view class="network-right">
  199. <rich-text :nodes="detailData.AppAttendance"></rich-text>
  200. </view>
  201. </view>
  202. <view v-if="detailData.ConferencePassword" class="network">
  203. <view class="network-left">拨入密码:</view>
  204. <view class="network-right">{{
  205. detailData.ActivityTypeName == "公司调研电话会" && detailData.IsLimitPeople && !detailData.IsSignup ? "请报名获取" : detailData.ConferencePassword
  206. }}</view>
  207. </view>
  208. <view v-if="detailData.Address" class="network">
  209. <view class="network-left">活动地址:</view>
  210. <view class="network-right" v-if="!detailData.IsSignup && detailData.ActivityTypeName == '公司线下调研' && detailData.IsLimitPeople">请报名获取 </view>
  211. <text class="network-right text-copy" user-select v-else>{{ detailData.Address }}</text>
  212. </view>
  213. <view v-if="detailData.Highlights" class="network">
  214. <view class="network-left">活动亮点: </view>
  215. <view class="network-right">
  216. <rich-text :nodes="detailData.Highlights"></rich-text>
  217. </view>
  218. </view>
  219. <view class="network" v-if="detailData.ArticleList.length">
  220. <view class="network-left">相关报告:</view>
  221. <view class="network-right look-link" style="color: #2c83ff" @click="articleLinkHandler"> 点击查看 </view>
  222. </view>
  223. <view class="network" v-if="detailData.TencentConferenceNumber">
  224. <view class="network-left">腾讯会议号:</view>
  225. <view class="network-right network-link" v-if="!detailData.IsSignup && (detailData.IsYidongConduct || detailData.IsLimitPeople)">请报名获取</view>
  226. <view class="network-right network-link" style="color: #2c83ff" v-else>
  227. <view class="">
  228. <text class="default tencent text_oneLine">{{ detailData.TencentConferenceNumber }}</text>
  229. <text class="default copy-link" @click="copyLink(2)">复制会议号</text>
  230. </view>
  231. </view>
  232. </view>
  233. <view v-if="detailData.Theme" class="network">
  234. <view class="network-left">主&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;题: </view>
  235. <view class="network-right">
  236. <rich-text :nodes="detailData.Theme"></rich-text>
  237. </view>
  238. </view>
  239. <view v-if="detailData.Remarks" class="network">
  240. <view class="network-left">备&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;注: </view>
  241. <view class="network-right">
  242. <rich-text :nodes="detailData.Remarks"></rich-text>
  243. </view>
  244. </view>
  245. </view>
  246. <view class="" style="height: 50rpx"></view>
  247. <!-- 操作按钮部分 -->
  248. <view class="content-bottom">
  249. <block v-if="detailData.ActiveState == 1">
  250. <view class="make-outbound" @click="signupIsAddOfCancel(1)" v-if="detailData.IsShowOutboundCall">
  251. {{ detailData.LimitPeopleNum > 0 ? `${showOutboundCall}(${detailData.SignupNum}/${detailData.LimitPeopleNum})` : showOutboundCall }}
  252. </view>
  253. <view @click="meetingReminderCancel" class="make-conference" v-if="detailData.IsShowMeetingReminder">
  254. {{ detailData.IsCancelMeetingReminder == 1 ? "取消会议提醒" : "会议提醒" }}
  255. <text>(会前15分钟推送微信消息提醒)</text>
  256. </view>
  257. <view v-if="detailData.IsShowAppointment" @click="summaryIsHandel" class="make-generation make-conference">{{ detailData.IsAppointment == 1 ? "取消纪要" : "预约纪要" }}</view>
  258. <view v-if="detailData.IsShowHelpSsk" class="make-generation make-conference" @click="askingGo"> 帮我带问 </view>
  259. <view class="make-outbound" @click="wanttosignup" v-if="!detailData.IsSignup && detailData.IsShowSignup">
  260. {{ detailData.LimitPeopleNum > 0 ? `我要报名(${detailData.SignupNum}/${detailData.LimitPeopleNum})` : "我要报名" }}
  261. </view>
  262. <view v-if="detailData.IsSignup && detailData.IsShowSignup" class="make-outbound" @click="signupIsAddOfCancel(2)">
  263. {{ detailData.LimitPeopleNum > 0 ? `${showWay}(${detailData.SignupNum}/${detailData.LimitPeopleNum})` : showWay }}
  264. </view>
  265. </block>
  266. <view class="content-bottom" v-if="detailData.ActiveState == 2 && detailData.ActivityTypeId == 1">
  267. <view class="make-conference" @click="askingGo('提问')">
  268. 实时提问
  269. <text>会议过程中,分析师可替您提问专家</text>
  270. </view>
  271. </view>
  272. </view>
  273. </block>
  274. <!-- 参会方式的弹出层 -->
  275. <SelectPopup :selectShow.sync="selectShow" @signupIsAddOfCancel="signupIsAddOfCancel" :selectYdong="selectYdong" />
  276. <view class="select-box">
  277. <u-popup v-model="selectShowLink" mode="bottom">
  278. <view style="color: #2c83ff" class="text_oneLine article-title" @click="goDetail(item.ArticleId)" v-for="item in detailData.ArticleList" :key="item.ArticleId"> {{ item.Title }}</view>
  279. <view style="color: #a9afb8" @click="selectShowLink = false">取消</view>
  280. </u-popup>
  281. </view>
  282. <!-- 各种弹框部分 -->
  283. <modalDialog
  284. :isShow="isShow"
  285. :signupType="signupType"
  286. :goFollow="goFollow"
  287. :isCancelShow="isCancelShow"
  288. :idTypeCancel="idTypeCancel"
  289. :editIsShow="editIsShow"
  290. :countryCode="countryCode"
  291. :mobileEdit="mobileEdit"
  292. :goOnNextStep="goOnNextStep"
  293. :jurisdictionList="jurisdictionList"
  294. :mailboxBinding="mailboxBinding"
  295. />
  296. </view>
  297. <!-- 权限部分 -->
  298. <view v-else>
  299. <jurisdiction :idAct="id" :jurisdictionList="jurisdictionList"></jurisdiction>
  300. </view>
  301. <freeCharge class="free-charge" :isShowFreeBtn="isShowFree" />
  302. <view v-show="false">
  303. <audioModule ref="childrenAudio" :showAudioPop="showAudioPop" />
  304. </view>
  305. <suspenButton v-if="showSingInImg" :showSingInImg.sync="showSingInImg" type="活动详情">
  306. <template slot="center">
  307. <image mode="widthFix" style="height: 120rpx; width: 120rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/sing_in_icon.png"> </image>
  308. </template>
  309. <template slot="top">
  310. <image @click.stop="isDlgImg = true" mode="widthFix" style="height: 120rpx; width: 120rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/sign_in_img.png"> </image>
  311. </template>
  312. <template slot="left">
  313. <image @click.stop="goSingUpDetail" mode="widthFix" style="height: 120rpx; width: 120rpx" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/sing_up_details.png"> </image>
  314. </template>
  315. </suspenButton>
  316. <van-popup custom-class="custom-class-popup" :show="isDlgImg" @close="onCloseHandler">
  317. <view class="sign-in-img-box">
  318. <image :src="detailData.SigninImg"></image>
  319. <view class="button-box">
  320. <text @click="onCloseHandler">关闭</text>
  321. <text @click="downloadImage">保存图片</text>
  322. </view>
  323. </view>
  324. </van-popup>
  325. <!-- 各种弹框部分 -->
  326. <ShowResearchDlg :isResearchModalShow.sync="isResearchModalShow" :jurisdictionList="jurisdictionList" :checkResearchList.sync="checkResearchList" />
  327. </view>
  328. <not-have-login v-else />
  329. <Loading />
  330. </block>
  331. </template>
  332. <script>
  333. import { activity, User, Home } from "@/config/api.js";
  334. import modalDialog from "@/components/modalDialog.vue";
  335. import jurisdiction from "./jurisdiction/components.vue";
  336. import freeCharge from "@/components/freeCharge";
  337. import audioModule from "@/components/audioModule/index";
  338. import manageMixin from "./manageMixin";
  339. import IsTrackFollow from "@/components/isTrackFollow.vue";
  340. import SelectPopup from "@/components/activity/selectPopup";
  341. import NotHaveLogin from "@/components/notHaveLogin.vue";
  342. import suspenButton from "@/components/suspen_button.vue";
  343. import ShowResearchDlg from "@/components/activity/showResearchDlg.vue";
  344. let app = getApp({ allowDefault: true });
  345. export default {
  346. filters: {
  347. formatVoiceTime(e) {
  348. let m = parseInt(e / 60);
  349. let s = parseInt(e % 60);
  350. return `${m > 9 ? m : "0" + m}:${s > 9 ? s : "0" + s}`;
  351. },
  352. },
  353. data() {
  354. return {
  355. id: "",
  356. detailData: {},
  357. isShowJurisdiction: false,
  358. isGain: true,
  359. signupType: "", //关注类型
  360. goFollow: false, //是否关注公众号
  361. isShow: false, //弹框
  362. isCancelShow: false,
  363. idTypeCancel: {
  364. id: "",
  365. type: 1,
  366. cutId: "",
  367. state: "",
  368. },
  369. selectShow: false, // 参会方式的隐藏显示
  370. selectYdong: false, // 参会方式展示的文案
  371. haveAuth: "",
  372. jurisdictionList: {},
  373. editIsShow: false, //外呼莫泰框
  374. countryCode: "", //外呼区号
  375. mobileEdit: "", //外呼手机号
  376. goOnNextStep: "", //设置外呼号后弹出哪个
  377. mailboxBinding: false, //是否绑定邮箱
  378. play: false,
  379. timesTheSpeed: [
  380. { name: "倍速", value: 1 },
  381. { name: "1.25倍", value: 1.25 },
  382. { name: "1.5倍", value: 1.5 },
  383. { name: "2倍", value: 2 },
  384. ],
  385. curTime: 0,
  386. videoContext: null,
  387. isVideoPlay: false,
  388. selectShowLink: false,
  389. isSendWx: "",
  390. isDlgImg: false,
  391. showSingInImg: false,
  392. isResearchModalShow: false,
  393. checkResearchList: {},
  394. };
  395. },
  396. mixins: [manageMixin],
  397. computed: {
  398. curVoiceId() {
  399. //当前正在播放的音频id
  400. return this.$store.state.audioBg.activityId;
  401. },
  402. curAudioPaused() {
  403. //当前音频是否暂停状态
  404. return this.$store.state.audioBg.paused;
  405. },
  406. //视频的id
  407. activityVideoId() {
  408. return this.$store.state.videoPlay.playVideoActId;
  409. },
  410. //报名的显示
  411. showWay() {
  412. let text = this.detailData.SignupType == 1 ? "取消外呼" : "取消报名";
  413. return text;
  414. },
  415. showOutboundCall() {
  416. let text = this.detailData.IsSignup ? "取消外呼" : "预约外呼";
  417. return text;
  418. },
  419. //几倍的播放数度
  420. isTimes() {
  421. let isMultiple = this.curVoiceId === this.detailData.ActivityId ? this.$store.state.audioBg.multiple : 1;
  422. return isMultiple;
  423. },
  424. showAudioPop() {
  425. return this.$store.state.audioBg.show;
  426. },
  427. },
  428. components: {
  429. modalDialog,
  430. jurisdiction,
  431. freeCharge,
  432. audioModule,
  433. IsTrackFollow,
  434. SelectPopup,
  435. NotHaveLogin,
  436. suspenButton,
  437. ShowResearchDlg,
  438. },
  439. watch: {
  440. haveAuth: {
  441. handler() {
  442. if (this.haveAuth == 1) {
  443. this.$store.dispatch("statistics", { PageType: "ActivitParticulars", DetailId: this.id });
  444. }
  445. },
  446. immediate: true,
  447. },
  448. "$store.state.audioBg.curTime": {
  449. handler(newVal) {
  450. this.curTime = this.curVoiceId === this.detailData.ActivityId ? newVal : 0;
  451. },
  452. immediate: true,
  453. deep: true,
  454. },
  455. },
  456. methods: {
  457. downloadImage() {
  458. wx.downloadFile({
  459. url: this.detailData.SigninImg,
  460. success(res) {
  461. wx.saveImageToPhotosAlbum({
  462. filePath: res.tempFilePath,
  463. success(data) {
  464. wx.showModal({
  465. title: "提示",
  466. content: "保存成功",
  467. modalType: false,
  468. });
  469. },
  470. fail(err) {
  471. if (
  472. err.errMsg === "saveImageToPhotosAlbum:fail:auth denied" ||
  473. err.errMsg === "saveImageToPhotosAlbum:fail auth deny" ||
  474. err.errMsg === "saveImageToPhotosAlbum:fail authorize no response"
  475. ) {
  476. wx.showModal({
  477. title: "提示",
  478. content: "需要您授权保存相册",
  479. modalType: false,
  480. success: (modalSuccess) => {
  481. wx.openSetting({
  482. success(settingdata) {
  483. console.log("settingdata", settingdata);
  484. if (settingdata.authSetting["scope.writePhotosAlbum"]) {
  485. wx.showModal({
  486. title: "提示",
  487. content: "获取权限成功,再次点击图片即可保存",
  488. modalType: false,
  489. });
  490. } else {
  491. wx.showModal({
  492. title: "提示",
  493. content: "获取权限失败,将无法保存到相册哦~",
  494. modalType: false,
  495. });
  496. }
  497. },
  498. fail(failData) {
  499. console.log("failData", failData);
  500. },
  501. complete(finishData) {
  502. console.log("finishData", finishData);
  503. },
  504. });
  505. },
  506. });
  507. }
  508. },
  509. });
  510. },
  511. });
  512. },
  513. onCloseHandler() {
  514. this.isDlgImg = false;
  515. },
  516. // 获取详情
  517. getActivityDetail() {
  518. activity
  519. .getActivityDetail({
  520. ActivityId: this.id,
  521. PageRouter: this.$store.state.pageRouterActivity,
  522. IsSendWx: this.isSendWx,
  523. })
  524. .then((res) => {
  525. if (res.Ret == 200) {
  526. this.$store.commit("setRouterActivity", "活动详情");
  527. this.haveAuth = res.Data.HasPermission;
  528. this.jurisdictionList = res.Data;
  529. if (res.Data.HasPermission == 1) {
  530. this.detailData = res.Data.Detail;
  531. this.showSingInImg = this.detailData.IsShowSigninButton;
  532. this.synchronization();
  533. }
  534. }
  535. });
  536. },
  537. // 同步数据
  538. synchronization() {
  539. let pages = getCurrentPages();
  540. let prevPage = pages[pages.length - 2];
  541. let path = prevPage ? prevPage.$page.fullPath : "";
  542. if (path.includes("/activityPages/themeActivity/themeActivity") || path.includes("/pages-search/indedxSearch/indedxSearch?source=活动详情页面")) {
  543. const index = prevPage.$vm.collectList.findIndex((item) => item.ActivityId == this.id);
  544. prevPage.$vm.collectList[index].IsSignup = this.detailData.IsSignup;
  545. prevPage.$vm.collectList[index].SignupNum = this.detailData.SignupNum;
  546. prevPage.$vm.collectList[index].SignupType = this.detailData.SignupType;
  547. prevPage.$vm.collectList[index].IsAppointment = this.detailData.IsAppointment;
  548. prevPage.$vm.collectList[index].IsCancelMeetingReminder = this.detailData.IsCancelMeetingReminder;
  549. }
  550. },
  551. // 拨打电话
  552. phonebtn(phone) {
  553. uni.makePhoneCall({
  554. phoneNumber: phone,
  555. });
  556. },
  557. // 跳转新的小程序
  558. networkBtn() {
  559. if (this.detailData.OnlineParticipation.includes("http")) {
  560. uni.navigateTo({
  561. url: "/activityPages/networkAttend/networkAttend?url=" + this.detailData.OnlineParticipation,
  562. });
  563. } else {
  564. uni.navigateToMiniProgram({
  565. appId: "wxade30ff0c4ee757d",
  566. path: this.detailData.OnlineParticipation,
  567. });
  568. }
  569. },
  570. // 弹框的回调事件
  571. cancelEnsure() {
  572. this.getActivityDetail();
  573. },
  574. // 跳转
  575. goDetail(id) {
  576. uni.navigateTo({
  577. url: "/pageMy/reportDetail/reportDetail?id=" + id,
  578. });
  579. },
  580. // 提问
  581. async askingGo(type = "") {
  582. await activity.checkAskActivity({ ActivityId: Number(this.id), PageRouter: this.$store.state.pageRouterActivity });
  583. uni.navigateTo({
  584. url: "/activityPages/generationAsk/generationAsk?id=" + this.id + "&type=" + type,
  585. });
  586. },
  587. //点击了严选
  588. strictSelection() {
  589. activity.descriptionOfResearch().then((res) => {
  590. if (res.Ret == 200) {
  591. uni.showModal({
  592. content: res.Data.Item.ConfigValue,
  593. confirmText: "知道了",
  594. showCancel: false,
  595. confirmColor: "#3385FF",
  596. success: function (res) {},
  597. });
  598. }
  599. });
  600. },
  601. // 复制的操作
  602. copyLink(type) {
  603. uni.setClipboardData({
  604. data: type == 1 ? this.detailData.LinkParticipants || this.detailData.OnlineParticipation : this.detailData.TencentConferenceNumber,
  605. success: function () {
  606. uni.showToast({
  607. title: `复制成功${type == 1 ? ",可在浏览器打开" : ""}`,
  608. icon: "none",
  609. duration: 2000,
  610. });
  611. },
  612. });
  613. },
  614. // 跳转产业标签
  615. goDustrialHandler(item) {
  616. if (!item.IsJump) return;
  617. if (item.IsResearch) {
  618. //严选
  619. uni.navigateTo({ url: "/reportPages/researchTheme/researchTheme?id=" + item.IndustrialManagementId });
  620. } else {
  621. //非严选
  622. uni.navigateTo({ url: "/reportPages/IndustryReport/IndustryReport?id=" + item.IndustrialManagementId });
  623. }
  624. },
  625. // 音频点击暂停播放
  626. audioPlayBack() {
  627. if (this.$store.state.audioBg.activityId == this.detailData.ActivityId) {
  628. if (this.globalBgAudioManager.paused) {
  629. this.globalBgAudioManager.play();
  630. } else {
  631. this.globalBgAudioManager.pause();
  632. }
  633. } else {
  634. this.$store.commit("audioBg/addAudio", {
  635. list: this.detailData.VoiceList,
  636. activityId: this.detailData.ActivityId,
  637. activityTitle: this.detailData.ActivityName,
  638. });
  639. }
  640. },
  641. // 拖动进度条
  642. handleAudioSliderChangeing(e) {
  643. this.curTime = e.detail.value;
  644. },
  645. // 拖动进度条
  646. handleAudioSliderChange(e) {
  647. const value = e.detail.value;
  648. this.globalBgAudioManager.seek(value);
  649. this.$refs.childrenAudio.isRecord = false;
  650. setTimeout(() => {
  651. this.$store.commit("audioBg/setSlide", false);
  652. }, 300);
  653. },
  654. // 手指离开拖动进度条
  655. touchstartHandler() {
  656. this.$store.commit("audioBg/setSlide", true);
  657. },
  658. //倍速播放
  659. isTimesHandler(i) {
  660. if (this.$store.state.audioBg.activityId == this.detailData.ActivityId) {
  661. let index = i == 3 ? 0 : i + 1;
  662. this.$store.commit("audioBg/setMultiple", this.timesTheSpeed[index].value);
  663. this.globalBgAudioManager.playbackRate = this.isTimes;
  664. this.globalBgAudioManager.startTime = this.curTime;
  665. if (this.globalBgAudioManager.paused) {
  666. this.globalBgAudioManager.play();
  667. }
  668. } else {
  669. this.$store.commit("audioBg/removeAudio");
  670. this.$store.commit("audioBg/addAudio", {
  671. list: this.detailData.VoiceList,
  672. activityId: this.detailData.ActivityId,
  673. activityTitle: this.detailData.ActivityName,
  674. });
  675. }
  676. this.$refs.childrenAudio.isRecord = false;
  677. },
  678. //快进 快退
  679. speedReverseHandler(type) {
  680. let isTime = type == "reverse" ? this.curTime - 15 : this.curTime + 15;
  681. isTime = isTime <= 0 ? 0 : isTime >= this.detailData.VoiceList.PlaySeconds ? this.detailData.VoiceList.PlaySeconds - 1 : isTime;
  682. this.globalBgAudioManager.seek(isTime);
  683. this.$refs.childrenAudio.isRecord = false;
  684. },
  685. //视频元数据加载完成时触发
  686. loadedmetadataHandle() {
  687. this.videoContext = wx.createVideoContext(this.detailData.ActivityId.toString(), this);
  688. let curVideoTime = 0;
  689. if (this.activityVideoId == this.detailData.ActivityId) {
  690. curVideoTime = this.$store.state.videoPlay.palyCurrentTime;
  691. } else {
  692. this.$store.commit("videoPlay/playVideoActivity", this.detailData.ActivityId);
  693. }
  694. this.videoContext.seek(curVideoTime);
  695. },
  696. //视频播放结束
  697. handleVideoEnd() {
  698. // 此处因为如果不调用退出全屏方法 安卓和ios页面均会表现异常,安卓横屏不恢复竖屏,ios底部tabbar渲染异常
  699. this.videoContext.exitFullScreen();
  700. },
  701. //视频时间的更新
  702. handleVideoTimeUpdate(e) {
  703. let time = parseInt(e.detail.currentTime);
  704. this.$store.commit("videoPlay/palyTimeUpdate", time);
  705. },
  706. //视频的播放事件
  707. handelVideoPlay() {
  708. if (!this.isVideoPlay) {
  709. Home.microAideoHistoryAdd({ VideoId: this.detailData.ActivityId, SourceType: 2 });
  710. }
  711. this.isVideoPlay = true;
  712. },
  713. // 标题超出省略...
  714. detailTitle(val) {
  715. let str = val.length > 41 ? val.slice(0, 41) + "..." : val;
  716. return str;
  717. },
  718. // 微路演留言
  719. myLeavingMessageHandler() {
  720. let title = this.detailData.FileType == 1 ? this.detailData.VoiceList.Name : this.detailData.VideoDetail.Title;
  721. uni.navigateTo({
  722. url: "/activityPages/generationAsk/generationAsk?id=" + this.detailData.ActivityId + "&type=文章&roadshow=" + this.detailData.FileType + "&roadshowTitle=" + title,
  723. });
  724. },
  725. // 微路演收藏
  726. async isCollectionHandeler() {
  727. await this.$store.dispatch("showLoginModal");
  728. const res = await Home.microRoadshowCollect({
  729. Id: this.detailData.FileType == 1 ? this.detailData.VoiceList.ActivityVoiceId : this.detailData.VideoDetail.Id,
  730. SourceType: this.detailData.FileType,
  731. PageRouter: this.$store.state.pageRouterReport,
  732. });
  733. if (res.Ret === 200) {
  734. uni.showToast({
  735. title: res.Msg,
  736. duration: 2000,
  737. });
  738. this.detailData.IsCollect = !this.detailData.IsCollect;
  739. }
  740. },
  741. articleLinkHandler() {
  742. if (this.detailData.ArticleList.length === 1) {
  743. uni.navigateTo({
  744. url: "/pageMy/reportDetail/reportDetail?id=" + this.detailData.ArticleList[0].ArticleId,
  745. });
  746. } else {
  747. this.selectShowLink = true;
  748. }
  749. },
  750. // 去往报名详情
  751. goSingUpDetail() {
  752. uni.navigateTo({
  753. url: "/pages-message/activityTemplate/activityTemplate?id=" + this.id,
  754. });
  755. },
  756. },
  757. onLoad(option) {
  758. this.id = option.id || "";
  759. this.isSendWx = option.IsSendWx || "";
  760. // 详情页面不写路径
  761. },
  762. onShow() {
  763. if (!this.$store.state.isAuth && !this.$store.state.isBind) {
  764. //已授权已绑定
  765. this.getActivityDetail();
  766. }
  767. this.$store.commit("setRouterReport", "活动详情");
  768. },
  769. /**
  770. * 用户点击分享
  771. */
  772. onShareAppMessage: function (res) {
  773. return {
  774. title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : "活动详情",
  775. path: "/activityPages/activityDetail/activityDetail?id=" + this.id,
  776. success: (res) => {},
  777. fail: (err) => {},
  778. };
  779. },
  780. };
  781. </script>
  782. <style lang="scss">
  783. .activity-detail {
  784. padding-bottom: 100rpx;
  785. .text-copy {
  786. padding-top: 2rpx;
  787. line-height: normal !important;
  788. padding-left: 20rpx;
  789. }
  790. .notice {
  791. height: 60rpx;
  792. width: 100%;
  793. }
  794. .content {
  795. padding: 34rpx 34rpx 0rpx;
  796. margin-bottom: -20rpx;
  797. color: #333333;
  798. font-size: 28rpx;
  799. view {
  800. padding-left: 20rpx;
  801. }
  802. text {
  803. line-height: 80rpx;
  804. padding-left: 20rpx;
  805. }
  806. .phone {
  807. padding: 0;
  808. display: inline-block;
  809. color: #2c83ff;
  810. }
  811. .new_icon {
  812. width: 60rpx;
  813. height: 30rpx;
  814. margin: 0 20rpx 20rpx 0;
  815. }
  816. .dialog-title {
  817. width: 682rpx;
  818. padding: 20rpx;
  819. background: #f2f2f2;
  820. opacity: 0.8;
  821. font-size: 30rpx;
  822. font-weight: bold;
  823. margin-bottom: 15rpx;
  824. color: #000;
  825. image {
  826. width: 73rpx;
  827. height: 30rpx;
  828. vertical-align: middle;
  829. margin-right: 5rpx;
  830. margin-bottom: 5rpx;
  831. }
  832. }
  833. .brackets-title {
  834. padding-left: 20rpx;
  835. }
  836. .city-box {
  837. display: flex;
  838. align-items: center;
  839. .network-left {
  840. width: 170rpx;
  841. text-align-last: justify;
  842. text-align: justify;
  843. }
  844. text {
  845. padding: 0;
  846. }
  847. .city {
  848. display: flex;
  849. color: #2088ff;
  850. align-items: center;
  851. image {
  852. width: 27rpx;
  853. height: 32rpx;
  854. margin-right: 12rpx;
  855. }
  856. .choose-limit {
  857. position: relative;
  858. display: flex;
  859. align-items: center;
  860. margin-right: 20rpx;
  861. image {
  862. width: 130rpx;
  863. height: 38rpx;
  864. }
  865. .limit-img {
  866. position: absolute;
  867. top: -13rpx;
  868. right: -30rpx;
  869. width: 46rpx;
  870. height: 26rpx;
  871. }
  872. }
  873. }
  874. }
  875. }
  876. .network {
  877. margin-bottom: 30rpx;
  878. padding: 0 !important;
  879. display: flex;
  880. .network-left {
  881. width: 190rpx;
  882. text-align-last: justify;
  883. text-align: justify;
  884. flex-shrink: 0;
  885. }
  886. .network-right {
  887. width: 480rpx;
  888. }
  889. .dustrial-content {
  890. display: flex;
  891. flex-wrap: wrap;
  892. .item {
  893. display: flex;
  894. align-items: center;
  895. padding-left: 0;
  896. margin-left: 0;
  897. }
  898. }
  899. .network-zoom {
  900. .text_zoom {
  901. width: 100%;
  902. word-break: break-all;
  903. color: #333333;
  904. }
  905. view {
  906. padding: 0 !important;
  907. margin: 0 !important;
  908. }
  909. .copy-zoom {
  910. display: inline-block;
  911. padding: 5rpx 17rpx !important;
  912. border-radius: 34rpx;
  913. background-color: #ebf4ff;
  914. font-size: 24rpx;
  915. color: #2c83ff;
  916. margin: 0 10rpx;
  917. margin-top: 30rpx;
  918. }
  919. }
  920. .network-link {
  921. width: 520rpx !important;
  922. view {
  923. padding: 0 !important;
  924. margin: 0 !important;
  925. width: 100%;
  926. display: flex;
  927. justify-content: space-between;
  928. :first-child {
  929. width: 350rpx;
  930. }
  931. .tencent {
  932. width: 320rpx;
  933. }
  934. .copy-link {
  935. flex-shrink: 0;
  936. padding: 5rpx 17rpx !important;
  937. border-radius: 34rpx;
  938. background-color: #ebf4ff;
  939. font-size: 24rpx;
  940. color: #2c83ff;
  941. }
  942. }
  943. }
  944. }
  945. .default {
  946. // padding: 0 !important;
  947. // margin: 0;
  948. padding-left: 0 !important;
  949. line-height: 40rpx !important;
  950. }
  951. .content-bottom {
  952. margin: 50rpx 0 30rpx;
  953. .make-outbound {
  954. margin: 0 auto;
  955. width: 368rpx;
  956. height: 80rpx;
  957. background: linear-gradient(268deg, #2ddbff 0%, #1599ff 49%, #005eff 100%);
  958. opacity: 1;
  959. border-radius: 4rpx;
  960. color: #ffffff;
  961. font-size: 34rpx;
  962. line-height: 80rpx;
  963. text-align: center;
  964. }
  965. .make-generation {
  966. padding-top: 0rpx !important;
  967. line-height: 76rpx;
  968. }
  969. .make-conference {
  970. margin: 30rpx auto;
  971. width: 368rpx;
  972. height: 80rpx;
  973. border: 2px solid #2c83ff;
  974. opacity: 1;
  975. border-radius: 4rpx;
  976. padding-top: 5rpx;
  977. text-align: center;
  978. color: #2c83ff;
  979. font-size: 30rpx;
  980. text {
  981. font-size: 16rpx;
  982. }
  983. }
  984. }
  985. .bottom-env {
  986. position: fixed;
  987. bottom: 0;
  988. padding-bottom: constant(safe-area-inset-bottom);
  989. padding-bottom: env(safe-area-inset-bottom);
  990. left: 0;
  991. width: 100%;
  992. background-color: #ffffff;
  993. }
  994. .apply-box {
  995. width: 100%;
  996. height: 100rpx;
  997. display: flex;
  998. font-size: 32rpx;
  999. color: #333333;
  1000. line-height: 100rpx;
  1001. .cancel-apply {
  1002. display: flex;
  1003. padding-left: 50rpx;
  1004. flex: 1;
  1005. border: 2rpx solid #005eff;
  1006. background-color: #fff;
  1007. text {
  1008. color: #005eff;
  1009. }
  1010. }
  1011. .ok-apply {
  1012. flex: 1;
  1013. background: linear-gradient(268deg, #2ddbff 0%, #1599ff 49%, #005eff 100%);
  1014. text-align: center;
  1015. color: #ffffff;
  1016. }
  1017. }
  1018. .select-box {
  1019. width: 100%;
  1020. view {
  1021. height: 95prx;
  1022. line-height: 95rpx;
  1023. text-align: center;
  1024. font-size: 32rpx;
  1025. border-bottom: 1rpx solid #ebebeb;
  1026. }
  1027. }
  1028. .dustrial-ui {
  1029. margin-bottom: 10rpx !important;
  1030. }
  1031. .dustrial-li {
  1032. display: flex;
  1033. align-items: center;
  1034. padding: 0 13rpx;
  1035. margin: 0 20rpx 20rpx 0;
  1036. }
  1037. .dustrial-item {
  1038. background: #edf4ff;
  1039. border: 1px solid #3385ff;
  1040. border-radius: 4rpx;
  1041. color: #3385ff;
  1042. }
  1043. .audio-card {
  1044. width: 100%;
  1045. height: 334rpx;
  1046. background: #fff;
  1047. box-shadow: 0px 3rpx 8rpx 0rpx rgba(0, 0, 0, 0.05);
  1048. border-radius: 8rpx;
  1049. margin: 0 auto;
  1050. padding: 30rpx;
  1051. padding-left: 30rpx;
  1052. view {
  1053. padding-left: 0;
  1054. }
  1055. .slider {
  1056. width: 100%;
  1057. margin: 0;
  1058. }
  1059. .slider-paly {
  1060. display: flex;
  1061. height: 80rpx;
  1062. align-items: center;
  1063. padding-left: 20rpx;
  1064. }
  1065. .card-title {
  1066. margin-top: 20rpx;
  1067. font-size: 28rpx;
  1068. padding: 15rpx 0 0 15rpx;
  1069. line-height: 44rpx;
  1070. height: 100rpx;
  1071. position: relative;
  1072. }
  1073. .card-time {
  1074. display: flex;
  1075. justify-content: space-between;
  1076. color: #999999;
  1077. font-size: 20rpx;
  1078. }
  1079. .title-image {
  1080. position: absolute;
  1081. bottom: 0;
  1082. right: 0;
  1083. width: 150rpx;
  1084. height: 40rpx;
  1085. padding-left: 15rpx;
  1086. display: flex;
  1087. justify-content: space-between;
  1088. image {
  1089. width: 40rpx;
  1090. height: 40rpx;
  1091. }
  1092. }
  1093. .is-paly-card {
  1094. width: 70rpx;
  1095. height: 70rpx;
  1096. flex-shrink: 0;
  1097. margin-left: 30rpx;
  1098. image {
  1099. width: 70rpx;
  1100. height: 70rpx;
  1101. }
  1102. }
  1103. .fast-reverse {
  1104. display: flex;
  1105. align-items: center;
  1106. justify-content: center;
  1107. margin-top: 30rpx;
  1108. .speed-button {
  1109. width: 96rpx;
  1110. height: 47rpx;
  1111. background: #eaeaea;
  1112. border-radius: 8rpx;
  1113. text-align: center;
  1114. line-height: 47rpx;
  1115. margin: 0 70rpx;
  1116. padding-left: 0;
  1117. }
  1118. .speed-img {
  1119. width: 50rpx;
  1120. height: 50rpx;
  1121. }
  1122. }
  1123. }
  1124. .video-play {
  1125. width: 100%;
  1126. padding-left: 0rpx !important;
  1127. padding-bottom: 15rpx;
  1128. height: 470rpx;
  1129. border-radius: 8rpx;
  1130. overflow: hidden;
  1131. box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.05);
  1132. font-size: 28rpx;
  1133. color: #333333;
  1134. margin-top: 20rpx;
  1135. video {
  1136. height: 340rpx;
  1137. width: 100%;
  1138. }
  1139. .title {
  1140. padding: 15rpx 0 0 15rpx !important;
  1141. font-size: 28rpx;
  1142. line-height: 44rpx;
  1143. height: 100rpx;
  1144. position: relative;
  1145. .title-flat {
  1146. float: right;
  1147. width: 150rpx;
  1148. height: 40rpx;
  1149. margin-top: -36rpx;
  1150. background-color: #f00;
  1151. }
  1152. .title-image {
  1153. position: absolute;
  1154. bottom: 0;
  1155. right: 0;
  1156. width: 150rpx;
  1157. height: 40rpx;
  1158. padding-left: 15rpx;
  1159. display: flex;
  1160. justify-content: space-between;
  1161. image {
  1162. width: 40rpx;
  1163. height: 40rpx;
  1164. }
  1165. }
  1166. }
  1167. }
  1168. .select-box {
  1169. width: 100%;
  1170. .box {
  1171. height: 95prx;
  1172. line-height: 95rpx;
  1173. text-align: center;
  1174. font-size: 32rpx;
  1175. border-bottom: 1rpx solid #ebebeb;
  1176. }
  1177. .box-bottom {
  1178. border-bottom: none !important;
  1179. }
  1180. }
  1181. .article-title {
  1182. padding: 0 20rpx;
  1183. }
  1184. .look-link {
  1185. background: #3385ff;
  1186. border-radius: 4rpx;
  1187. color: #fff !important;
  1188. width: 160rpx !important;
  1189. height: 40rpx;
  1190. text-align: center;
  1191. line-height: 40rpx;
  1192. margin-left: 20rpx;
  1193. padding-left: 0 !important;
  1194. }
  1195. .sign-in-img-box {
  1196. width: 704rpx;
  1197. height: 1121rpx;
  1198. background-color: #fff;
  1199. border-radius: 8rpx;
  1200. overflow: hidden;
  1201. image {
  1202. width: 100%;
  1203. height: calc(100% - 108rpx);
  1204. }
  1205. .button-box {
  1206. display: flex;
  1207. align-items: center;
  1208. height: 102rpx;
  1209. border-top: 1rpx solid #f0f0f0;
  1210. text {
  1211. flex: 1;
  1212. height: 100%;
  1213. display: flex;
  1214. align-items: center;
  1215. justify-content: center;
  1216. }
  1217. text:last-child {
  1218. border-left: 1rpx solid #f0f0f0;
  1219. color: #3385ff;
  1220. }
  1221. }
  1222. }
  1223. .custom-class-popup {
  1224. border-radius: 8rpx;
  1225. overflow: hidden;
  1226. }
  1227. }
  1228. </style>