red-envelope.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. <template>
  2. <view>
  3. <view v-if="showMap" class="map-container">
  4. <map
  5. id="mapRef" :longitude="longitude" :latitude="latitude" :scale="scale"
  6. show-compass show-location :circles="circles"
  7. style="width: 100vw; height: 100vh" :markers="markers" @markertap="handleReceive"
  8. ></map>
  9. <view class="scale-container">
  10. <view @click="handleScale(+1)">+</view>
  11. <view @click="handleScale(-1)">-</view>
  12. </view>
  13. <view class="send" @click="handleToSendRedEnvelope">
  14. <image src="@/static/images/index/red.png" mode="" />
  15. <text>发红包</text>
  16. </view>
  17. <view class="location" @click="toCenter">
  18. <u-icon size="50" name="plus-circle"></u-icon>
  19. </view>
  20. <view
  21. ref="previewWrapperRef" class="preview-wrapper" :style="{
  22. transform: showRedPackage ? 'scale(1)' : 'scale(0)'
  23. }"
  24. >
  25. <!-- :desc="redForm.remark" :src="redForm.imageUrl" :name="redForm.publisherName" :avatar="redForm.picUrl" -->
  26. <JRedEnvelope
  27. :is-show="showRedPackage" :show-type="redEnvelopeType" :data="redForm"
  28. @click-red="handleClickRed" @close="handleClose"
  29. >
  30. </JRedEnvelope>
  31. </view>
  32. <!-- <Controls :marks="allMarks" @receive="handleReceive"></Controls> -->
  33. </view>
  34. <view v-else-if="!showMap && !isGetLocation" style="text-align: center;">
  35. <view style="margin-top: 40vh;">
  36. <view><text style="color: #666666;">获取位置失败!</text></view>
  37. <u-button
  38. type="info" style="width: 220upx;height: 64upx;margin: 10upx auto 20upx;"
  39. shape="circle" @click="handleReGetLocation"
  40. >
  41. 重新定位
  42. </u-button>
  43. <view style="margin-top: 44upx;font-size: 24upx;color: #bbbbbb;">注:该定位用于提供地图红包服务</view>
  44. </view>
  45. </view>
  46. <!-- <TabBar></TabBar> -->
  47. </view>
  48. </template>
  49. <script>
  50. import { getWrapRedReleaseApi, addWrapRedReceiveApi } from '../../api/user'
  51. import { getUserToken } from '../../utils'
  52. export default {
  53. name: 'RedEnvelope',
  54. onLoad() {
  55. // uni.showTabBar({
  56. // success: () => {
  57. // console.log(11111)
  58. // },
  59. // fail: () => {
  60. // console.log(22222)
  61. // },
  62. // complete: () => {
  63. // console.log(33333)
  64. // }
  65. // })
  66. },
  67. onShow() {
  68. if (!this.isChoosingLocation) this.getRedEnvelopeList()
  69. this.isChoosingLocation = false
  70. },
  71. data() {
  72. return {
  73. markers: [],
  74. longitude: 0,
  75. latitude: 0,
  76. scale: 15,
  77. redForm: { wrapRedText: {} },
  78. allMarks: [],
  79. showMap: false,
  80. isGetLocation: true,
  81. isChoosingLocation: false,
  82. showRedPackage: false, // false
  83. redEnvelopeType: 0, // 0
  84. circles: []
  85. }
  86. },
  87. created() {
  88. // this.getLoaction()
  89. },
  90. destroyed() {
  91. },
  92. methods: {
  93. getRedEnvelopeList(isOnce) {
  94. const tempTime = Date.now()
  95. uni.getLocation({
  96. type: 'gcj02',
  97. highAccuracyExpireTime: 1500,
  98. success: (result) => {
  99. uni.hideLoading()
  100. if ((Date.now() - tempTime) >= 1500) {
  101. console.log(this.$store.getters.obtainLocationCount)
  102. if (!this.$store.getters.obtainLocationCount) {
  103. this.$showToast('获取定位失败,请先选择所在位置')
  104. if (this.isChoosingLocation === false) {
  105. this.isChoosingLocation = true
  106. setTimeout(() => {
  107. uni.chooseLocation({
  108. success: (res) => {
  109. console.log(res)
  110. this.confirmLocationWrap({
  111. longitude: res.longitude,
  112. latitude: res.latitude
  113. })
  114. },
  115. fail: (e) => {
  116. // console.log('aaaa', e)
  117. this.isGetLocation = false
  118. this.$showToast('获取定位失败!')
  119. },
  120. complete: (e) => {
  121. // console.log('bbb', e)
  122. }
  123. })
  124. }, 2000)
  125. }
  126. } else {
  127. this.confirmLocationWrap({
  128. longitude: this.$store.state.location.locationInfo.streetNumber.location.split(',')[0],
  129. latitude: this.$store.state.location.locationInfo.streetNumber.location.split(',')[1]
  130. })
  131. }
  132. } else {
  133. this.confirmLocationWrap(result)
  134. }
  135. }
  136. })
  137. },
  138. confirmLocationWrap(result) {
  139. this.circles = [ {
  140. // longitude: 113.293184,
  141. // latitude: 22.803391,
  142. longitude: result.longitude,
  143. latitude: result.latitude,
  144. color: '#89a7c8',
  145. // 填充颜色
  146. fillColor: '#d3e5f177',
  147. // 圆半径
  148. radius: 500,
  149. // 边
  150. strokeWidth: 1
  151. } ]
  152. this.longitude = result.longitude * 1
  153. this.latitude = result.latitude * 1
  154. // this.longitude = 113.06092
  155. // this.latitude = 22.89223
  156. // console.log(result)
  157. getWrapRedReleaseApi({
  158. longitude: result.longitude * 1,
  159. latitude: result.latitude * 1
  160. // longitude: 113.06092,
  161. // latitude: 22.89223
  162. }).then((res) => {
  163. this.allMarks = res.data
  164. console.log(this.allMarks)
  165. const made = []
  166. for (const redPack of this.allMarks) {
  167. made.push({
  168. id: redPack.id,
  169. latitude: redPack.latitude,
  170. longitude: redPack.longitude,
  171. title: (redPack.brandName || redPack.username) + '的红包',
  172. width: 40 - Math.abs(this.scale - 15) * 2.5,
  173. height: 40 - Math.abs(this.scale - 15) * 2.5,
  174. anchor: {
  175. x: 0.5,
  176. y: 0.5
  177. },
  178. iconPath: '/static/images/index/red.png'
  179. })
  180. }
  181. this.markers = made
  182. this.showMap = true
  183. })
  184. },
  185. handleReGetLocation(e) {
  186. uni.showLoading({
  187. title: '定位中'
  188. })
  189. this.getRedEnvelopeList()
  190. },
  191. handleReceive(e) {
  192. // console.log(e)
  193. this.redForm = {}
  194. if (!getUserToken()) return
  195. const { markerId } = e.detail
  196. if (markerId) {
  197. const currentMark = this.allMarks.find((item) => item.id == markerId)
  198. if (currentMark) {
  199. console.log(currentMark)
  200. this.redEnvelopeType = 0
  201. this.showRedPackage = true
  202. }
  203. } else {
  204. this.$showToast('获取红包信息失败')
  205. }
  206. },
  207. handleClickRed(e) {
  208. addWrapRedReceiveApi({
  209. wrapId: this.redForm.id
  210. }).then((res) => {
  211. console.log(res)
  212. // this.$showToast(res.data)
  213. this.redForm = res.data || {}
  214. this.redEnvelopeType = 1
  215. this.getRedEnvelopeList()
  216. })
  217. },
  218. // getLoaction() {
  219. // uni.getLocation({
  220. // type: 'gcj02',
  221. // success(res) {
  222. // this.longitude = res.longitude * 1 + 0.001
  223. // this.latitude = res.latitude * 1 + 0.001
  224. // // location.reload()
  225. // },
  226. // fail(err) {
  227. // console.log(err)
  228. // this.$showToast('获取定位失败,请确保您开启了定位')
  229. // }
  230. // })
  231. // },
  232. handleClose() {
  233. this.showRedPackage = false
  234. this.redEnvelopeType = 0
  235. this.getRedEnvelopeList()
  236. },
  237. toCenter() {
  238. const _this = this
  239. uni.getLocation({
  240. type: 'gcj02',
  241. success(res) {
  242. _this.scale = 16
  243. uni.createMapContext('mapRef', _this).moveToLocation({
  244. longitude: res.longitude,
  245. latitude: res.latitude
  246. })
  247. },
  248. fail(err) {
  249. _this.$showToast('获取定位失败,请确保您开启了定位')
  250. }
  251. })
  252. },
  253. // 放大
  254. handleScale(number) {
  255. this.scale += number
  256. if (this.scale > 18) {
  257. this.scale = 18
  258. return this.$showToast('已经缩放到最大了')
  259. } else if (this.scale < 5) {
  260. this.scale = 5
  261. return this.$showToast('已经缩放到最小了')
  262. }
  263. this.markers.forEach((item) => {
  264. item.width = 40 - Math.abs(this.scale - 15) * 2.5
  265. item.height = 40 - Math.abs(this.scale - 15) * 2.5
  266. })
  267. },
  268. // 去发红包
  269. handleToSendRedEnvelope() {
  270. const userId = getUserToken()
  271. if (!userId) return
  272. this.$jump('/pages_user/serve/red-envelope-distribution/index')
  273. }
  274. }
  275. }
  276. </script>
  277. <style lang="less" scoped>
  278. .preview-wrapper {
  279. position: fixed;
  280. top: 0;
  281. left: 0;
  282. z-index: 1000;
  283. width: 100vw;
  284. height: 100vh;
  285. // background-color: rgb(255, 255, 255);
  286. transition: all 350ms;
  287. // .flex(center, center);
  288. // flex-direction: column;
  289. // padding: 40upx 40upx;
  290. box-sizing: border-box;
  291. transform: scale(0);
  292. transition: all 350ms;
  293. }
  294. .scale-container {
  295. position: fixed;
  296. top: 52%;
  297. right: 40upx;
  298. width: 84upx;
  299. height: 148upx;
  300. background-color: #fff;
  301. // z-index: 10000000;
  302. box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  303. border-radius: 20upx;
  304. display: flex;
  305. align-items: center;
  306. justify-content: space-between;
  307. flex-direction: column;
  308. overflow: hidden;
  309. view {
  310. flex: 1;
  311. display: flex;
  312. align-items: center;
  313. justify-items: center;
  314. font-size: 50upx;
  315. transition: all 350ms;
  316. text-align: center;
  317. }
  318. }
  319. .send {
  320. position: fixed;
  321. bottom: 220rpx;
  322. right: 50%;
  323. transform:translateX(50%);
  324. width: 193rpx;
  325. height: 193rpx;
  326. box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  327. background: rgba(255, 204, 102, 1);
  328. border-radius: 50%;
  329. display: flex;
  330. align-items: center;
  331. justify-content: center;
  332. flex-direction: column;
  333. text {
  334. margin-top: 22rpx;
  335. font-size: 36rpx;
  336. font-weight: 900;
  337. line-height: 17rpx;
  338. color: #FFFFFF;
  339. }
  340. image {
  341. margin-top: -18rpx;
  342. transform: rotate(35deg);
  343. width: 70.33rpx;
  344. height: 78.17rpx;
  345. }
  346. }
  347. .location {
  348. position: fixed;
  349. top: 80%;
  350. right: 40upx;
  351. border-radius: 20upx;
  352. box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  353. background-color: #fff;
  354. width: 84upx;
  355. height: 84upx;
  356. display: flex;
  357. justify-content: center;
  358. align-items: center;
  359. }
  360. </style>