jkDetail.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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}}~{{info.endTime}}</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">
  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. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. info:'',
  55. type:'',
  56. shopNum:'',
  57. shopInfo:'',
  58. }
  59. },
  60. onLoad(opt) {
  61. if(opt.type==1){
  62. this.type=1;
  63. this.info = uni.getStorageSync("editdata");
  64. this.shopNum=this.info.shopList.split(',').length
  65. uni.setNavigationBarTitle({
  66. title:this.info.activityName
  67. })
  68. }
  69. this.getShopinfo()
  70. },
  71. methods: {
  72. call() {
  73. uni.makePhoneCall({
  74. phoneNumber: this.shopInfo.mobilePhone
  75. });
  76. },
  77. getmap() {
  78. console.log("打开地图");
  79. return false;
  80. var that = this;
  81. if (!that.shopInfo.lat || !that.shopInfo.lng) {
  82. uni.showToast({
  83. title: '该店铺未设置定位',
  84. icon: 'none',
  85. duration: 3000
  86. });
  87. } else {
  88. uni.openLocation({
  89. latitude: Number(that.shopInfo.lat),
  90. longitude: Number(that.shopInfo.lng),
  91. name: that.shopInfo.shopName,
  92. address: that.shopInfo.provinceName + that.shopInfo.cityName + that.shopInfo.areaName + that.shopInfo.address,
  93. success: function() {
  94. console.log('success');
  95. },
  96. fail(err) {
  97. console.log(err)
  98. }
  99. });
  100. }
  101. },
  102. edit1(){
  103. uni.navigateBack(-1)
  104. },
  105. auditSetTheGuest(){
  106. uni.showLoading({
  107. title: '加载中'
  108. })
  109. this.$http('openH5SetTheGuest/auditSetTheGuest', this.info,'POST').then(res => {
  110. uni.hideLoading();
  111. if(res.code==0){
  112. uni.showToast({
  113. title: '活动已生成',
  114. icon:'none',
  115. duration: 2000
  116. });
  117. }
  118. //this.list=res.data
  119. })
  120. },
  121. getShopinfo(){
  122. this.$http('openH5SetTheGuest/getShopinfo',{},'GET').then(res => {
  123. this.shopInfo=res.data
  124. })
  125. },
  126. generate(){
  127. var that=this;
  128. uni.showModal({
  129. title: '提示',
  130. content: '活动已生成,是否立即启用',
  131. cancelText:'暂不启用',
  132. confirmText:'立即启用',
  133. success: function(res) {
  134. if (res.confirm) {
  135. that.info.clState=2;
  136. that.auditSetTheGuest()
  137. }else{
  138. console.log("no")
  139. that.info.clState=1;
  140. that.auditSetTheGuest()
  141. }
  142. }
  143. });
  144. }
  145. }
  146. }
  147. </script>
  148. <style scoped>
  149. .shopRightIcon{
  150. width: 44rpx;
  151. height: 44rpx;
  152. display: block;
  153. margin: 0 auto;
  154. margin-bottom: 10rpx;
  155. }
  156. .shopName{
  157. color: #3C3C3C;
  158. font-size: 28rpx;
  159. }
  160. .shopaddress{
  161. font-weight: 400;
  162. color: #999999;
  163. font-size: 24rpx;
  164. padding-top: 10rpx;
  165. width: 500rpx;
  166. }
  167. .shopRightSx{
  168. width: 2rpx;
  169. height: 69rpx;
  170. background:#EEEEEE ;
  171. margin-left: 34rpx;
  172. margin-right: 34rpx;
  173. margin-top: 14rpx;
  174. }
  175. .shopCont{
  176. display: flex;
  177. justify-content: space-between;
  178. padding-top: 25rpx;
  179. }
  180. .shopContRight{
  181. display: flex;
  182. }
  183. .shopContRightLine{
  184. text-align: center;
  185. color: #999999;
  186. font-size: 24rpx;
  187. }
  188. .content{
  189. min-height: 100vh;
  190. background:#F4F5F7;
  191. }
  192. .detailImg{
  193. width: 750rpx;
  194. display: block;
  195. }
  196. .detailBOx{
  197. background: #ffffff;
  198. margin-top: 20rpx;
  199. }
  200. .detailTitle{
  201. color: #3C3C3C;
  202. font-weight: 500;
  203. padding: 20rpx 24rpx;
  204. font-size: 30rpx;
  205. }
  206. .topimg{
  207. width: 750rpx;
  208. }
  209. .shopMs{
  210. font-weight: 500;
  211. color: #222222;
  212. line-height: 42rpx;
  213. font-size: 30rpx;
  214. }
  215. .shopBox{
  216. background: #ffffff;
  217. margin-top: 20rpx;
  218. padding: 20rpx 34rpx;
  219. }
  220. .shopBoxTop{
  221. display: flex;
  222. justify-content: space-between;
  223. }
  224. .shopTy{
  225. display: flex;
  226. }
  227. .shopTyTxt{
  228. font-weight: 400;
  229. color: #666666;
  230. font-size: 24rpx;
  231. line-height: 42rpx;
  232. }
  233. .shopjt{
  234. width: 14rpx;
  235. height: 23rpx;
  236. margin-top: 10rpx;
  237. margin-left: 10rpx;
  238. }
  239. .cont{
  240. background: #ffffff;
  241. border-radius: 24rpx 24rpx 0px 0px;
  242. margin-top: -30rpx;
  243. padding: 30rpx 24rpx;
  244. position: relative;
  245. }
  246. .name{
  247. color: #3C3C3C;
  248. line-height: 42rpx;
  249. font-weight: 500;
  250. font-size: 30rpx;
  251. }
  252. .name2{
  253. color: #3C3C3C;
  254. line-height: 36rpx;
  255. font-weight: 400;
  256. font-size: 26rpx;
  257. padding-top: 16rpx;
  258. }
  259. .name3{
  260. color: #999999;
  261. line-height: 36rpx;
  262. font-weight: 400;
  263. font-size: 26rpx;
  264. padding-top: 16rpx;
  265. }
  266. .bottom{
  267. width: 750rpx;
  268. height: 98rpx;
  269. background: #FFFFFF;
  270. position: fixed;
  271. bottom: 0;
  272. left: 0;
  273. display: flex;
  274. }
  275. .bottomLeft{
  276. width: 375rpx;
  277. line-height: 98rpx;
  278. text-align: center;
  279. color: #3C3C3C;
  280. font-size: 30rpx;
  281. }
  282. .bottomRight{
  283. width: 375rpx;
  284. height: 98rpx;
  285. background: #3F90F7;
  286. line-height: 98rpx;
  287. text-align: center;
  288. color: #FFFFFF;
  289. font-size: 30rpx;
  290. }
  291. </style>