jkDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <img :src="info.img" alt="" class="topimg">
  5. </view>
  6. <view class="cont">
  7. <view class="name">{{info.activityName}}</view>
  8. <view class="name2">{{info.startTime.slice(0,10)}}~{{info.endTime.slice(0,10)}}</view>
  9. <view class="name3">{{info.activityContent}}</view>
  10. </view>
  11. <view class="shopBox">
  12. <view class="shopBoxTop">
  13. <view class="shopMs">活动门店</view>
  14. <view class="shopTy" @click="showuse">
  15. <view class="shopTyTxt">{{shopNum}}家门店通用</view>
  16. <img src="../../static/img/jt2.png" alt="" class="shopjt">
  17. </view>
  18. </view>
  19. <view class="shopCont">
  20. <view class="shopContLeft">
  21. <view class="shopName">{{shopInfo.shopName}}</view>
  22. <view class="shopaddress">{{shopInfo.address}}</view>
  23. </view>
  24. <view class="shopContRight">
  25. <view class="shopContRightLine" @click="getmap">
  26. <img src="../../static/img/icon_map.png" alt="" class="shopRightIcon">
  27. <view class="shopRightTxt">地图</view>
  28. </view>
  29. <view class="shopRightSx"></view>
  30. <view class="shopContRightLine" @click="call">
  31. <img src="../../static/img/icon_phone.png" alt="" class="shopRightIcon">
  32. <view class="shopRightTxt">电话</view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="detailBOx" v-if="info.imgList">
  38. <view class="detailTitle">活动详情</view>
  39. <view class="detailImgBox" v-for="(item,index) in info.imgList.split(',')">
  40. <img :src="item" alt="" class="detailImg">
  41. </view>
  42. </view>
  43. <view style="height: 120rpx;"></view>
  44. <view class="bottom" v-if="type==1">
  45. <view class="bottomLeft" @click="edit1">编辑活动内容</view>
  46. <view class="bottomRight" @click="generate">生成活动</view>
  47. </view>
  48. <!-- 适用门店 -->
  49. <view class="baomingBox ckshopBox" v-if="useShopShow" @click="noShowShop2">
  50. <view class="baomingCont" @click.stop="">
  51. <view class="bmTop">
  52. <view class="bmTitle">活动门店</view>
  53. <img src="../../static/img/chahao.png" alt="" class="bmChimg" @click="noShowShop2">
  54. </view>
  55. <view style="padding: 0 24rpx; height: 65vh;overflow-y: scroll;">
  56. <view class="ckshopLine" v-for="(item,index) in shopckList" >
  57. <view class="shoplineLeft">
  58. <image :src="item.photoPath" mode="" class="shopImg" v-if="item.photoPath"></image>
  59. <image src="../../static/img/noimg.png" mode="" class="shopImg" v-else></image>
  60. </view>
  61. <view class="shopright" style="padding-left: 20rpx;">
  62. <view class="shopTop">
  63. <view class="shopName">{{item.shopName}}</view>
  64. </view>
  65. <view class="brandsBg" v-if="item.brands">
  66. <view class="brands" v-for="(v,index2) in item.brands.split(',')">{{v}}</view>
  67. </view>
  68. <view class="shopTime"><span v-if="item.startTime">{{item.startTime}}</span> - <span
  69. v-if="item.endTime">{{item.endTime}}</span> </view>
  70. <view class="shopBottomLeft">
  71. <span class="shopaddress"
  72. v-if="item.address">{{item.provinceName}}{{item.cityName}}{{item.areaName}}{{item.address}}</span>
  73. <span v-if="item.distance&&item.distance!= '0.00'">{{item.distance}}km</span>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. <!-- <audio id="video" controls autoplay="autoplay" ref="iosclick" loop="loop" >
  81. <source src="http://dmsimg.66km.com/music/sakuratears.mp3" type="audio/mpeg">
  82. </audio> -->
  83. <img src="../../static/img/mp3.png" class="mp3Img" @click="play()" v-if="!payshow&mp3Url!=''">
  84. <img src=".../../static/img/mp31.png" class="mp3Img" @click="play2()" id="bofang" v-if="payshow&mp3Url!=''">
  85. </view>
  86. </template>
  87. <script>
  88. export default {
  89. data() {
  90. return {
  91. info:'',
  92. type:'',
  93. shopNum:'',
  94. shopInfo:'',
  95. useShopShow:false,
  96. shopckList:'',
  97. ckmusic:'',
  98. bgmMusic:'',
  99. payshow:false,
  100. mp3Url:'',
  101. }
  102. },
  103. onLoad(opt) {
  104. if(opt.type==1){
  105. this.type=1;
  106. this.info = uni.getStorageSync("editdata");
  107. this.shopNum=this.info.shopList.split(',').length
  108. uni.setNavigationBarTitle({
  109. title:this.info.activityName
  110. })
  111. }
  112. this.getShopinfo()
  113. this.shopckList= uni.getStorageSync("shopckList");
  114. this.ckmusic=uni.getStorageSync("ckmusic");
  115. if(this.ckmusic){
  116. this.mp3Url=this.ckmusic.music;
  117. this.bgmMusic = uni.createInnerAudioContext();
  118. this.bgmMusic.autoplay = true;//自动播放
  119. this.bgmMusic.loop = true;//循环播放
  120. this.bgmMusic.src = 'http://dmsimg.66km.com/music/sakuratears.mp3';//背景音乐地址
  121. this.bgmMusic.onPlay(function(){
  122. console.log('背景音乐播放中');
  123. });
  124. this.bgmMusic.onError((res) => {
  125. console.log(res.errMsg);
  126. console.log(res.errCode);
  127. });
  128. }
  129. //console.log(this.bgmMusic)
  130. },
  131. onUnload(){
  132. this.bgmMusic.stop()
  133. },
  134. onHide(){
  135. this.bgmMusic.stop(()=>{
  136. console.log('背景音乐停止了');
  137. });
  138. },
  139. methods: {
  140. play2(){
  141. this.bgmMusic.play();
  142. this.payshow=false;
  143. },
  144. play(){
  145. this.payshow=true;
  146. this.bgmMusic.stop(()=>{
  147. console.log('背景音乐停止了');
  148. });
  149. },
  150. noShowShop2(){
  151. this.useShopShow=false;
  152. },
  153. showuse(){
  154. this.useShopShow=true;
  155. },
  156. call() {
  157. uni.makePhoneCall({
  158. phoneNumber: this.shopInfo.mobilePhone
  159. });
  160. },
  161. getmap() {
  162. console.log("打开地图");
  163. return false;
  164. var that = this;
  165. if (!that.shopInfo.lat || !that.shopInfo.lng) {
  166. uni.showToast({
  167. title: '该店铺未设置定位',
  168. icon: 'none',
  169. duration: 3000
  170. });
  171. } else {
  172. uni.openLocation({
  173. latitude: Number(that.shopInfo.lat),
  174. longitude: Number(that.shopInfo.lng),
  175. name: that.shopInfo.shopName,
  176. address: that.shopInfo.provinceName + that.shopInfo.cityName + that.shopInfo.areaName + that.shopInfo.address,
  177. success: function() {
  178. console.log('success');
  179. },
  180. fail(err) {
  181. console.log(err)
  182. }
  183. });
  184. }
  185. },
  186. edit1(){
  187. uni.navigateBack(-1)
  188. },
  189. auditSetTheGuest(){
  190. uni.showLoading({
  191. title: '加载中'
  192. })
  193. this.$http('openH5SetTheGuest/auditSetTheGuest', this.info,'POST').then(res => {
  194. uni.hideLoading();
  195. if(res.code==0){
  196. uni.showToast({
  197. title: '活动已生成',
  198. icon:'none',
  199. duration: 2000
  200. });
  201. uni.navigateTo({
  202. url:'activity?type=2'
  203. })
  204. }
  205. //this.list=res.data
  206. })
  207. },
  208. getShopinfo(){
  209. this.$http('openH5SetTheGuest/getShopInfo',{},'GET').then(res => {
  210. //this.shopInfo=res.data;
  211. var shopinfo=res.data;
  212. this.shopckList.forEach(item=>{
  213. if(item.id==shopinfo.id){
  214. this.shopInfo=shopinfo
  215. }
  216. })
  217. if(this.shopInfo==''){
  218. this.shopInfo=this.shopckList[0]
  219. }
  220. })
  221. },
  222. generate(){
  223. var that=this;
  224. uni.showModal({
  225. title: '提示',
  226. content: '活动已生成,是否立即启用',
  227. cancelText:'暂不启用',
  228. confirmText:'立即启用',
  229. success: function(res) {
  230. if (res.confirm) {
  231. that.info.clState=2;
  232. that.auditSetTheGuest()
  233. }else{
  234. console.log("no")
  235. that.info.clState=1;
  236. that.auditSetTheGuest()
  237. }
  238. }
  239. });
  240. }
  241. }
  242. }
  243. </script>
  244. <style scoped>
  245. .mp3Img{
  246. /* transform: translate(-1584.4%, 121.5%) scale(1); */
  247. position: fixed;
  248. top: 100rpx;
  249. right: 40rpx;
  250. width: 60rpx;
  251. height: 60rpx;
  252. }
  253. .shopImg {
  254. width: 146rpx;
  255. height: 146rpx;
  256. border-radius: 6rpx;
  257. }
  258. .ckshopLine{
  259. display: flex;
  260. padding: 20rpx 0;
  261. border-bottom: 1px solid #EEEEEE;
  262. }
  263. .baomingBox{
  264. width: 750rpx;
  265. height: 100vh;
  266. background: rgba(0, 0, 0, 0.4);
  267. position: fixed;
  268. top: 0;
  269. left: 0;
  270. z-index: 11;
  271. }
  272. .bmshopjt{
  273. width: 12rpx;
  274. height: 20rpx;
  275. margin-top: 10rpx;
  276. }
  277. .bmlineInput{
  278. color: #333333;
  279. font-size: 28rpx;
  280. height: 98rpx;
  281. line-height: 98rpx;
  282. }
  283. .bmshopname{
  284. font-weight: 400;
  285. color: #999999;
  286. font-size: 28rpx;
  287. line-height: 40rpx;
  288. width: 500rpx;
  289. white-space:nowrap;
  290. overflow:hidden;
  291. text-overflow:ellipsis;
  292. }
  293. .bmshopLine{
  294. display: flex;
  295. justify-content: space-between;
  296. padding: 26rpx 0;
  297. border-bottom: 1px solid #EEEEEE;
  298. }
  299. .bmLine{
  300. border-bottom: 1px solid #EEEEEE;
  301. }
  302. .bmTop{
  303. display: flex;
  304. justify-content: space-between;
  305. padding: 40rpx 24rpx 10rpx 24rpx;
  306. }
  307. .bmTitle{
  308. font-weight: 500;
  309. color: #3C3C3C;
  310. font-size: 30rpx;
  311. line-height: 36rpx;
  312. }
  313. .bmChimg{
  314. width: 36rpx;
  315. height: 36rpx;
  316. }
  317. .baomingCont{
  318. position: absolute;
  319. width: 750rpx;
  320. /* height:850rpx; */
  321. /* padding-bottom: constant(safe-area-inset-bottom);
  322. padding-bottom: env(safe-area-inset-bottom); */
  323. left: 0;
  324. bottom: 0;
  325. background: #ffffff;
  326. border-radius: 24rpx 24rpx 0px 0px;
  327. padding-bottom: 10rpx;
  328. }
  329. .shopRightIcon{
  330. width: 44rpx;
  331. height: 44rpx;
  332. display: block;
  333. margin: 0 auto;
  334. margin-bottom: 10rpx;
  335. }
  336. .shopName{
  337. color: #3C3C3C;
  338. font-size: 28rpx;
  339. }
  340. .shopaddress{
  341. font-weight: 400;
  342. color: #999999;
  343. font-size: 24rpx;
  344. padding-top: 10rpx;
  345. width: 500rpx;
  346. }
  347. .shopRightSx{
  348. width: 2rpx;
  349. height: 69rpx;
  350. background:#EEEEEE ;
  351. margin-left: 34rpx;
  352. margin-right: 34rpx;
  353. margin-top: 14rpx;
  354. }
  355. .shopCont{
  356. display: flex;
  357. justify-content: space-between;
  358. padding-top: 25rpx;
  359. }
  360. .shopContRight{
  361. display: flex;
  362. }
  363. .shopContRightLine{
  364. text-align: center;
  365. color: #999999;
  366. font-size: 24rpx;
  367. }
  368. .content{
  369. min-height: 100vh;
  370. background:#F4F5F7;
  371. }
  372. .detailImg{
  373. width: 750rpx;
  374. display: block;
  375. }
  376. .detailBOx{
  377. background: #ffffff;
  378. margin-top: 20rpx;
  379. }
  380. .detailTitle{
  381. color: #3C3C3C;
  382. font-weight: 500;
  383. padding: 20rpx 24rpx;
  384. font-size: 30rpx;
  385. }
  386. .topimg{
  387. width: 750rpx;
  388. }
  389. .shopMs{
  390. font-weight: 500;
  391. color: #222222;
  392. line-height: 42rpx;
  393. font-size: 30rpx;
  394. }
  395. .shopBox{
  396. background: #ffffff;
  397. margin-top: 20rpx;
  398. padding: 20rpx 34rpx;
  399. }
  400. .shopBoxTop{
  401. display: flex;
  402. justify-content: space-between;
  403. }
  404. .shopTy{
  405. display: flex;
  406. }
  407. .shopTyTxt{
  408. font-weight: 400;
  409. color: #666666;
  410. font-size: 24rpx;
  411. line-height: 42rpx;
  412. }
  413. .shopjt{
  414. width: 14rpx;
  415. height: 23rpx;
  416. margin-top: 10rpx;
  417. margin-left: 10rpx;
  418. }
  419. .cont{
  420. background: #ffffff;
  421. border-radius: 24rpx 24rpx 0px 0px;
  422. margin-top: -30rpx;
  423. padding: 30rpx 24rpx;
  424. position: relative;
  425. }
  426. .name{
  427. color: #3C3C3C;
  428. line-height: 42rpx;
  429. font-weight: 500;
  430. font-size: 30rpx;
  431. }
  432. .name2{
  433. color: #3C3C3C;
  434. line-height: 36rpx;
  435. font-weight: 400;
  436. font-size: 26rpx;
  437. padding-top: 16rpx;
  438. }
  439. .name3{
  440. color: #999999;
  441. line-height: 36rpx;
  442. font-weight: 400;
  443. font-size: 26rpx;
  444. padding-top: 16rpx;
  445. }
  446. .bottom{
  447. width: 750rpx;
  448. height: 98rpx;
  449. background: #FFFFFF;
  450. position: fixed;
  451. bottom: 0;
  452. left: 0;
  453. display: flex;
  454. }
  455. .bottomLeft{
  456. width: 375rpx;
  457. line-height: 98rpx;
  458. text-align: center;
  459. color: #3C3C3C;
  460. font-size: 30rpx;
  461. }
  462. .bottomRight{
  463. width: 375rpx;
  464. height: 98rpx;
  465. background: #3F90F7;
  466. line-height: 98rpx;
  467. text-align: center;
  468. color: #FFFFFF;
  469. font-size: 30rpx;
  470. }
  471. .brandsBg {
  472. display: flex;
  473. height: 38rpx;
  474. flex-wrap: wrap;
  475. align-items: center;
  476. overflow: hidden;
  477. padding: 5rpx 0rpx;
  478. }
  479. .brands {
  480. border-radius: 4rpx;
  481. padding: 0 5rpx;
  482. color: #F19D01;
  483. height: 28rpx;
  484. border: 1px solid #F19D01;
  485. font-size: 20rpx;
  486. line-height: 28rpx;
  487. margin: 5rpx 10rpx 5rpx 0rpx;
  488. }
  489. .timeBg {
  490. display: flex;
  491. }
  492. .shopTime {
  493. color: #666666;
  494. font-size: 22rpx;
  495. }
  496. .addressBox {
  497. color: #666666;
  498. font-size: 22rpx;
  499. }
  500. </style>