jkDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  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: 45vh;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. methods: {
  135. play2(){
  136. this.bgmMusic.play();
  137. this.payshow=false;
  138. },
  139. play(){
  140. this.payshow=true;
  141. this.bgmMusic.stop(()=>{
  142. console.log('背景音乐停止了');
  143. });
  144. },
  145. noShowShop2(){
  146. this.useShopShow=false;
  147. },
  148. showuse(){
  149. this.useShopShow=true;
  150. },
  151. call() {
  152. uni.makePhoneCall({
  153. phoneNumber: this.shopInfo.mobilePhone
  154. });
  155. },
  156. getmap() {
  157. console.log("打开地图");
  158. return false;
  159. var that = this;
  160. if (!that.shopInfo.lat || !that.shopInfo.lng) {
  161. uni.showToast({
  162. title: '该店铺未设置定位',
  163. icon: 'none',
  164. duration: 3000
  165. });
  166. } else {
  167. uni.openLocation({
  168. latitude: Number(that.shopInfo.lat),
  169. longitude: Number(that.shopInfo.lng),
  170. name: that.shopInfo.shopName,
  171. address: that.shopInfo.provinceName + that.shopInfo.cityName + that.shopInfo.areaName + that.shopInfo.address,
  172. success: function() {
  173. console.log('success');
  174. },
  175. fail(err) {
  176. console.log(err)
  177. }
  178. });
  179. }
  180. },
  181. edit1(){
  182. uni.navigateBack(-1)
  183. },
  184. auditSetTheGuest(){
  185. uni.showLoading({
  186. title: '加载中'
  187. })
  188. this.$http('openH5SetTheGuest/auditSetTheGuest', this.info,'POST').then(res => {
  189. uni.hideLoading();
  190. if(res.code==0){
  191. uni.showToast({
  192. title: '活动已生成',
  193. icon:'none',
  194. duration: 2000
  195. });
  196. uni.navigateTo({
  197. url:'activity?type=2'
  198. })
  199. }
  200. //this.list=res.data
  201. })
  202. },
  203. getShopinfo(){
  204. this.$http('openH5SetTheGuest/getShopinfo',{},'GET').then(res => {
  205. //this.shopInfo=res.data;
  206. var shopinfo=res.data;
  207. this.shopckList.forEach(item=>{
  208. if(item.id==shopinfo.id){
  209. this.shopInfo=shopinfo
  210. }
  211. })
  212. if(this.shopInfo==''){
  213. this.shopInfo=this.shopckList[0]
  214. }
  215. })
  216. },
  217. generate(){
  218. var that=this;
  219. uni.showModal({
  220. title: '提示',
  221. content: '活动已生成,是否立即启用',
  222. cancelText:'暂不启用',
  223. confirmText:'立即启用',
  224. success: function(res) {
  225. if (res.confirm) {
  226. that.info.clState=2;
  227. that.auditSetTheGuest()
  228. }else{
  229. console.log("no")
  230. that.info.clState=1;
  231. that.auditSetTheGuest()
  232. }
  233. }
  234. });
  235. }
  236. }
  237. }
  238. </script>
  239. <style scoped>
  240. .mp3Img{
  241. /* transform: translate(-1584.4%, 121.5%) scale(1); */
  242. position: fixed;
  243. top: 100rpx;
  244. right: 40rpx;
  245. width: 60rpx;
  246. height: 60rpx;
  247. }
  248. .shopImg {
  249. width: 146rpx;
  250. height: 146rpx;
  251. border-radius: 6rpx;
  252. }
  253. .ckshopLine{
  254. display: flex;
  255. padding: 20rpx 0;
  256. border-bottom: 1px solid #EEEEEE;
  257. }
  258. .baomingBox{
  259. width: 750rpx;
  260. height: 100vh;
  261. background: rgba(0, 0, 0, 0.4);
  262. position: fixed;
  263. top: 0;
  264. left: 0;
  265. z-index: 11;
  266. }
  267. .bmshopjt{
  268. width: 12rpx;
  269. height: 20rpx;
  270. margin-top: 10rpx;
  271. }
  272. .bmlineInput{
  273. color: #333333;
  274. font-size: 28rpx;
  275. height: 98rpx;
  276. line-height: 98rpx;
  277. }
  278. .bmshopname{
  279. font-weight: 400;
  280. color: #999999;
  281. font-size: 28rpx;
  282. line-height: 40rpx;
  283. width: 500rpx;
  284. white-space:nowrap;
  285. overflow:hidden;
  286. text-overflow:ellipsis;
  287. }
  288. .bmshopLine{
  289. display: flex;
  290. justify-content: space-between;
  291. padding: 26rpx 0;
  292. border-bottom: 1px solid #EEEEEE;
  293. }
  294. .bmLine{
  295. border-bottom: 1px solid #EEEEEE;
  296. }
  297. .bmTop{
  298. display: flex;
  299. justify-content: space-between;
  300. padding: 40rpx 24rpx 10rpx 24rpx;
  301. }
  302. .bmTitle{
  303. font-weight: 500;
  304. color: #3C3C3C;
  305. font-size: 30rpx;
  306. line-height: 36rpx;
  307. }
  308. .bmChimg{
  309. width: 36rpx;
  310. height: 36rpx;
  311. }
  312. .baomingCont{
  313. position: absolute;
  314. width: 750rpx;
  315. height:850rpx;
  316. padding-bottom: constant(safe-area-inset-bottom);
  317. padding-bottom: env(safe-area-inset-bottom);
  318. left: 0;
  319. bottom: 0;
  320. background: #ffffff;
  321. border-radius: 24rpx 24rpx 0px 0px;
  322. }
  323. .shopRightIcon{
  324. width: 44rpx;
  325. height: 44rpx;
  326. display: block;
  327. margin: 0 auto;
  328. margin-bottom: 10rpx;
  329. }
  330. .shopName{
  331. color: #3C3C3C;
  332. font-size: 28rpx;
  333. }
  334. .shopaddress{
  335. font-weight: 400;
  336. color: #999999;
  337. font-size: 24rpx;
  338. padding-top: 10rpx;
  339. width: 500rpx;
  340. }
  341. .shopRightSx{
  342. width: 2rpx;
  343. height: 69rpx;
  344. background:#EEEEEE ;
  345. margin-left: 34rpx;
  346. margin-right: 34rpx;
  347. margin-top: 14rpx;
  348. }
  349. .shopCont{
  350. display: flex;
  351. justify-content: space-between;
  352. padding-top: 25rpx;
  353. }
  354. .shopContRight{
  355. display: flex;
  356. }
  357. .shopContRightLine{
  358. text-align: center;
  359. color: #999999;
  360. font-size: 24rpx;
  361. }
  362. .content{
  363. min-height: 100vh;
  364. background:#F4F5F7;
  365. }
  366. .detailImg{
  367. width: 750rpx;
  368. display: block;
  369. }
  370. .detailBOx{
  371. background: #ffffff;
  372. margin-top: 20rpx;
  373. }
  374. .detailTitle{
  375. color: #3C3C3C;
  376. font-weight: 500;
  377. padding: 20rpx 24rpx;
  378. font-size: 30rpx;
  379. }
  380. .topimg{
  381. width: 750rpx;
  382. }
  383. .shopMs{
  384. font-weight: 500;
  385. color: #222222;
  386. line-height: 42rpx;
  387. font-size: 30rpx;
  388. }
  389. .shopBox{
  390. background: #ffffff;
  391. margin-top: 20rpx;
  392. padding: 20rpx 34rpx;
  393. }
  394. .shopBoxTop{
  395. display: flex;
  396. justify-content: space-between;
  397. }
  398. .shopTy{
  399. display: flex;
  400. }
  401. .shopTyTxt{
  402. font-weight: 400;
  403. color: #666666;
  404. font-size: 24rpx;
  405. line-height: 42rpx;
  406. }
  407. .shopjt{
  408. width: 14rpx;
  409. height: 23rpx;
  410. margin-top: 10rpx;
  411. margin-left: 10rpx;
  412. }
  413. .cont{
  414. background: #ffffff;
  415. border-radius: 24rpx 24rpx 0px 0px;
  416. margin-top: -30rpx;
  417. padding: 30rpx 24rpx;
  418. position: relative;
  419. }
  420. .name{
  421. color: #3C3C3C;
  422. line-height: 42rpx;
  423. font-weight: 500;
  424. font-size: 30rpx;
  425. }
  426. .name2{
  427. color: #3C3C3C;
  428. line-height: 36rpx;
  429. font-weight: 400;
  430. font-size: 26rpx;
  431. padding-top: 16rpx;
  432. }
  433. .name3{
  434. color: #999999;
  435. line-height: 36rpx;
  436. font-weight: 400;
  437. font-size: 26rpx;
  438. padding-top: 16rpx;
  439. }
  440. .bottom{
  441. width: 750rpx;
  442. height: 98rpx;
  443. background: #FFFFFF;
  444. position: fixed;
  445. bottom: 0;
  446. left: 0;
  447. display: flex;
  448. }
  449. .bottomLeft{
  450. width: 375rpx;
  451. line-height: 98rpx;
  452. text-align: center;
  453. color: #3C3C3C;
  454. font-size: 30rpx;
  455. }
  456. .bottomRight{
  457. width: 375rpx;
  458. height: 98rpx;
  459. background: #3F90F7;
  460. line-height: 98rpx;
  461. text-align: center;
  462. color: #FFFFFF;
  463. font-size: 30rpx;
  464. }
  465. .brandsBg {
  466. display: flex;
  467. height: 38rpx;
  468. flex-wrap: wrap;
  469. align-items: center;
  470. overflow: hidden;
  471. padding: 5rpx 0rpx;
  472. }
  473. .brands {
  474. border-radius: 4rpx;
  475. padding: 0 5rpx;
  476. color: #F19D01;
  477. height: 28rpx;
  478. border: 1px solid #F19D01;
  479. font-size: 20rpx;
  480. line-height: 28rpx;
  481. margin: 5rpx 10rpx 5rpx 0rpx;
  482. }
  483. .timeBg {
  484. display: flex;
  485. }
  486. .shopTime {
  487. color: #666666;
  488. font-size: 22rpx;
  489. }
  490. .addressBox {
  491. color: #666666;
  492. font-size: 22rpx;
  493. }
  494. </style>