jkDetail.vue 12 KB

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