jkDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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. width: 500rpx;
  340. }
  341. .shopaddress{
  342. font-weight: 400;
  343. color: #999999;
  344. font-size: 24rpx;
  345. padding-top: 10rpx;
  346. width: 500rpx;
  347. }
  348. .shopRightSx{
  349. width: 2rpx;
  350. height: 69rpx;
  351. background:#EEEEEE ;
  352. margin-left: 34rpx;
  353. margin-right: 34rpx;
  354. margin-top: 14rpx;
  355. }
  356. .shopCont{
  357. display: flex;
  358. justify-content: space-between;
  359. padding-top: 25rpx;
  360. }
  361. .shopContRight{
  362. display: flex;
  363. }
  364. .shopContRightLine{
  365. text-align: center;
  366. color: #999999;
  367. font-size: 24rpx;
  368. }
  369. .content{
  370. min-height: 100vh;
  371. background:#F4F5F7;
  372. }
  373. .detailImg{
  374. width: 750rpx;
  375. display: block;
  376. }
  377. .detailBOx{
  378. background: #ffffff;
  379. margin-top: 20rpx;
  380. }
  381. .detailTitle{
  382. color: #3C3C3C;
  383. font-weight: 500;
  384. padding: 20rpx 24rpx;
  385. font-size: 30rpx;
  386. }
  387. .topimg{
  388. width: 750rpx;
  389. }
  390. .shopMs{
  391. font-weight: 500;
  392. color: #222222;
  393. line-height: 42rpx;
  394. font-size: 30rpx;
  395. }
  396. .shopBox{
  397. background: #ffffff;
  398. margin-top: 20rpx;
  399. padding: 20rpx 34rpx;
  400. }
  401. .shopBoxTop{
  402. display: flex;
  403. justify-content: space-between;
  404. }
  405. .shopTy{
  406. display: flex;
  407. }
  408. .shopTyTxt{
  409. font-weight: 400;
  410. color: #666666;
  411. font-size: 24rpx;
  412. line-height: 42rpx;
  413. }
  414. .shopjt{
  415. width: 14rpx;
  416. height: 23rpx;
  417. margin-top: 10rpx;
  418. margin-left: 10rpx;
  419. }
  420. .cont{
  421. background: #ffffff;
  422. border-radius: 24rpx 24rpx 0px 0px;
  423. margin-top: -30rpx;
  424. padding: 30rpx 24rpx;
  425. position: relative;
  426. }
  427. .name{
  428. color: #3C3C3C;
  429. line-height: 42rpx;
  430. font-weight: 500;
  431. font-size: 30rpx;
  432. }
  433. .name2{
  434. color: #3C3C3C;
  435. line-height: 36rpx;
  436. font-weight: 400;
  437. font-size: 26rpx;
  438. padding-top: 16rpx;
  439. }
  440. .name3{
  441. color: #999999;
  442. line-height: 36rpx;
  443. font-weight: 400;
  444. font-size: 26rpx;
  445. padding-top: 16rpx;
  446. }
  447. .bottom{
  448. width: 750rpx;
  449. height: 98rpx;
  450. background: #FFFFFF;
  451. position: fixed;
  452. bottom: 0;
  453. left: 0;
  454. display: flex;
  455. }
  456. .bottomLeft{
  457. width: 375rpx;
  458. line-height: 98rpx;
  459. text-align: center;
  460. color: #3C3C3C;
  461. font-size: 30rpx;
  462. }
  463. .bottomRight{
  464. width: 375rpx;
  465. height: 98rpx;
  466. background: #3F90F7;
  467. line-height: 98rpx;
  468. text-align: center;
  469. color: #FFFFFF;
  470. font-size: 30rpx;
  471. }
  472. .brandsBg {
  473. display: flex;
  474. height: 38rpx;
  475. flex-wrap: wrap;
  476. align-items: center;
  477. overflow: hidden;
  478. padding: 5rpx 0rpx;
  479. }
  480. .brands {
  481. border-radius: 4rpx;
  482. padding: 0 5rpx;
  483. color: #F19D01;
  484. height: 28rpx;
  485. border: 1px solid #F19D01;
  486. font-size: 20rpx;
  487. line-height: 28rpx;
  488. margin: 5rpx 10rpx 5rpx 0rpx;
  489. }
  490. .timeBg {
  491. display: flex;
  492. }
  493. .shopTime {
  494. color: #666666;
  495. font-size: 22rpx;
  496. }
  497. .addressBox {
  498. color: #666666;
  499. font-size: 22rpx;
  500. }
  501. </style>