service.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. <template>
  2. <view class="service-main">
  3. <!-- #ifdef MP-WEIXIN -->
  4. <map @markertap='markertapFn' class="my_app" id="myMap" :longitude="myLocation.longitude"
  5. :latitude="myLocation.latitude" :scale="18" show-location enable-3D show-compass enable-overlooking
  6. :enable-satellite="false" :markers="markers" :polyline="polylines" :enable-traffic="false"
  7. style="width: 100%; height: calc(50vh - 0rpx)">
  8. <block v-for="(item, index) in nearCabinetList" :key="index">
  9. <cover-view v-if="selectType === 'cabinet'" slot="callout" :marker-id="item.id" class="mark blue_bg">
  10. {{ item.available_cnt }}
  11. </cover-view>
  12. </block>
  13. </map>
  14. <!-- #endif -->
  15. <!-- #ifdef APP -->
  16. <googleMap keyId="1" width="100%" height='calc(50vh - 0rpx)' @changMarkertap="changMarkertap"
  17. v-if="myLocation.latitude" :mapData='markers' :myLocation='myLocation'></googleMap>
  18. <!-- #endif -->
  19. <!-- 地图控件 -->
  20. <cover-view @click="isSearch = false" :class="[
  21. 'control-icon-view',
  22. 'flex-row',
  23. isSearch ? 'flex-between' : 'flex-end',
  24. ]">
  25. <cover-view v-if="isSearch" class="seach-return-view flex-row"><cover-image class="seach-return-img"
  26. src="https://qiniu.bms16.com/Fjpnr3cH9ZqTQrGlw3Ywp3qbJGIG"></cover-image></cover-view>
  27. <!-- <cover-view @tap="moveToLocation" class="current-location-view flex-row"><cover-image
  28. class="current-location-icon"
  29. src="https://qiniu.bms16.com/FgLe8FKDOzgt3wxi2lZt-yQGmbP3"></cover-image></cover-view> -->
  30. </cover-view>
  31. <view class="store-cabinet-block">
  32. <view class="block-p"></view>
  33. <view v-if="isSearch" class="search-view flex-row">
  34. <view class="search-input-view">
  35. <img class="search-icon" src="https://qiniu.bms16.com/FgvJrOE8Lps7tyNL86SOZKbLT1uH" alt="" />
  36. <input v-model="inputSearchValue" type="text" class="search-input" placeholder="请输入搜索内容"
  37. placeholder-class="input-placeholder" :focus="isFocused" @focus="handleFocus"
  38. @blur="handleBlur" />
  39. <img v-if="isFocused" @tap="clearSearch" class="search-close-icon"
  40. src="https://qiniu.bms16.com/FhKzwftEPo70kloqIVxKH7g0pD6I" alt="清空" />
  41. </view>
  42. <view v-if="isFocused" @tap="tapSearch" :class="['search-btn', isFocused ? 'search-btn-i' : '']">搜索
  43. </view>
  44. </view>
  45. <view class="flex-row flex-between" style="margin-bottom: 40rpx">
  46. <view class="check-type flex-row">
  47. <view @tap="tapSelectType" data-type="store" :class="[
  48. 'store-type',
  49. selectType === 'store' ? 'store-type-i' : 'store-type-s',
  50. ]">门店</view>
  51. <view @tap="tapSelectType" data-type="cabinet" :class="[
  52. 'cabinet-type',
  53. selectType === 'cabinet' ? 'cabinet-type-i' : 'cabinet-type-s',
  54. ]">换电柜</view>
  55. </view>
  56. <view class="config-view flex-row">
  57. <view class="seach-img" @tap="openSearch"><img
  58. src="https://qiniu.bms16.com/FiWnFuZm5vWQ_Si3CEYLGJnVhSal" alt="搜索" /></view>
  59. <view @tap="openSelectType" class="screen-img"><img
  60. :src="'https://qiniu.bms16.com/'+(shop_type!=''?'FikPWd13ENc2SWnC3q1n5F22uUDs':'FpElQHM5NbxHDjz1LrwaHYN668LR')"
  61. alt="筛选" /></view>
  62. </view>
  63. </view>
  64. <CarRentalList :activeMarkersId='activeMarkersId' v-if="selectType === 'store'" :near_store_list="nearCabinetList" />
  65. <CabinetList v-if="selectType === 'cabinet'" :near_cabinet_list="nearCabinetList" />
  66. </view>
  67. <leaseType :showLeaseType="showLeaseType" :selectType="selectType" :modelTypeList="modelTypeList"
  68. @closeSelectType="closeSelectType" @checkCabinetType="checkCabinetType" />
  69. <CustomTabbar curt-tab="service" />
  70. </view>
  71. </template>
  72. <script>
  73. var app = getApp();
  74. var config = require("@/common/config.js");
  75. var config_gyq = require("@/common/config_gyq.js");
  76. var common = require("@/common/common.js");
  77. var http = require("@/common/http.js");
  78. var http_gyq = require("@/common/request.js");
  79. var storage = require("@/common/storage.js");
  80. import LeaseType from "./components/leaseType/leaseType";
  81. import CarRentalList from "./components/carRentalList/carRentalList";
  82. import CabinetList from "./components/cabinetList/cabinetList";
  83. import CustomTabbar from "@/component/customTabbar/index";
  84. import googleMap from "@/component/googleMap/googleMap";
  85. import {
  86. LEASE_TYPE_ARR
  87. } from '@/common/constant.js'
  88. const SHOPSELECTIMG = `https://qiniu.bms16.com/FkS7hjd6tl6ydLIi9-SQI0vGboMW`
  89. const CABINET_ICON_URL =
  90. "https://zxappfile.bms16.com/zx_client/shop_mark.png";
  91. const CABINET_ICON_URLS =
  92. "https://qiniu.bms16.com/FmYKRICv7sPvsFuFB3wo9MIkpd0-";
  93. export default {
  94. data() {
  95. return {
  96. activeMarkersId: 0,
  97. myLocation: {
  98. latitude: 0,
  99. longitude: 0,
  100. },
  101. selectType: "store",
  102. type: 1,
  103. nearStoreList: [],
  104. nearCabinetList: [],
  105. markers: {},
  106. polylines: [],
  107. mapContext: null, // map上下文
  108. isSearch: false, //是否处于搜索状态
  109. inputSearchValue: "",
  110. isFocused: false,
  111. showLeaseType: false,
  112. modelTypeList: [],
  113. shop_type: ''
  114. };
  115. },
  116. components: {
  117. googleMap,
  118. LeaseType,
  119. CarRentalList,
  120. CabinetList,
  121. CustomTabbar,
  122. },
  123. /**
  124. * 生命周期函数--监听页面加载
  125. */
  126. onLoad: function(options) {
  127. this.loadModelType();
  128. this.locationFn()
  129. },
  130. methods: {
  131. //点击图标跳转
  132. changMarkertap(e) {
  133. this.activeMarkersId= e.id
  134. let index = 0
  135. for (var i = 0; i < this.nearCabinetList.length; i++) {
  136. var item = this.nearCabinetList[i];
  137. if (item.id == e.id) {
  138. index = i
  139. break
  140. }
  141. }
  142. this.nearCabinetList.unshift(this.nearCabinetList.splice(index, 1)[0])
  143. },
  144. markertapFn(e) {
  145. let markerId = e.markerId
  146. if (markerId == 5000) return
  147. if (this.selectType == 'store') {
  148. this.markers.map(item => {
  149. if (markerId == item.id) {
  150. item.iconPath = SHOPSELECTIMG
  151. let distance = common.getFlatternDistance(this.myLocation.longitude, this.myLocation
  152. .latitude, item.longitude, item.latitude)
  153. let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
  154. let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
  155. item.label = {
  156. content,
  157. color: "#0074FF",
  158. fontSize: 10,
  159. bgColor: "#fff",
  160. borderRadius: 10,
  161. padding: 5,
  162. anchorX: -45,
  163. anchorY: -6
  164. }
  165. this.activeMarkersId = item.id
  166. } else {
  167. item.iconPath = CABINET_ICON_URL
  168. item.label = {}
  169. }
  170. })
  171. } else if (this.selectType == 'cabinet') {
  172. }
  173. },
  174. locationFn() {
  175. let _this = this
  176. uni.getLocation({
  177. success(res) {
  178. _this.myLocation = {
  179. latitude: res.latitude,
  180. longitude: res.longitude,
  181. }
  182. _this.loadCarRentalList();
  183. }
  184. })
  185. },
  186. tapSelectType(e) {
  187. const {
  188. type
  189. } = e.currentTarget.dataset;
  190. this.nearCabinetList = []
  191. console.log(type)
  192. this.setData({
  193. selectType: type,
  194. });
  195. console.log(type == 'store' ? 1 : 2)
  196. this.type = type == 'store' ? 1 : 2
  197. if (type === "store") {
  198. this.loadCarRentalList();
  199. } else {
  200. this.loadNearCabinetList();
  201. }
  202. },
  203. //附近门店列表
  204. loadCarRentalList(name = '', shop_type = '') {
  205. const pData = {
  206. limit: 50,
  207. longitude: this.myLocation.longitude,
  208. latitude: this.myLocation.latitude,
  209. name,
  210. shop_type
  211. };
  212. const me = this;
  213. var nearCabinetList = [];
  214. http.postApi(config.API_NEAR_SHOP_LIST, pData, (resp) => {
  215. if (resp.data.code == 200) {
  216. me.markers = {}
  217. let markers = {
  218. markers: []
  219. }
  220. nearCabinetList = resp.data.data.list.map(item => {
  221. return {
  222. ...item,
  223. distance: common.formatDistance(common.getFlatternDistance(this.myLocation
  224. .longitude, this
  225. .myLocation.latitude, item.longitude, item.latitude))
  226. }
  227. })
  228. markers.markers = nearCabinetList.map(item => {
  229. return {
  230. width: 50,
  231. height: 52,
  232. id: Number(item.id),
  233. longitude: item.longitude,
  234. latitude: item.latitude,
  235. iconPath: CABINET_ICON_URL,
  236. iconPathActive: SHOPSELECTIMG,
  237. content: '233'
  238. }
  239. })
  240. this.getLocationPostion(this.myLocation, markers);
  241. // console.log(nearCabinetList, "nearCabinetList");
  242. me.setData({
  243. nearCabinetList: nearCabinetList,
  244. });
  245. } else {
  246. common.simpleToast(resp.data.msg);
  247. }
  248. });
  249. },
  250. //附近机柜列表
  251. async loadNearCabinetList(name = '') {
  252. const pData = {
  253. limit: 50,
  254. longitude: this.myLocation.longitude,
  255. latitude: this.myLocation.latitude,
  256. name
  257. };
  258. const me = this;
  259. var nearCabinetList = [];
  260. let {
  261. data
  262. } = await http_gyq.postApi(config_gyq.API_FLK_CABINET_NEAR_LIST, pData)
  263. if (data.code === 200) {
  264. this.markers = {}
  265. nearCabinetList = data.data.cabinetList || [];
  266. let markers = {}
  267. markers.markers = nearCabinetList.map(item => {
  268. return {
  269. width: 56,
  270. height: 56,
  271. id: Number(item.id),
  272. longitude: item.longitude,
  273. latitude: item.latitude,
  274. iconPath: CABINET_ICON_URLS,
  275. iconPathActive: CABINET_ICON_URLS,
  276. content: '21'
  277. }
  278. })
  279. this.getLocationPostion(this.myLocation, markers);
  280. me.setData({
  281. nearCabinetList: nearCabinetList,
  282. });
  283. } else {
  284. common.simpleToast(data.msg);
  285. }
  286. },
  287. getLocationPostion(centerLocation, markers) {
  288. const locationData = {
  289. longitude: centerLocation.longitude,
  290. latitude: centerLocation.latitude,
  291. width: 22,
  292. height: 40,
  293. id: 50000,
  294. iconPath: "https://zxappfile.bms16.com/zx_client/location_n.png",
  295. model_list: [],
  296. };
  297. markers.markers.push(locationData);
  298. markers.type = this.type
  299. this.markers = markers
  300. console.log(this.markers)
  301. },
  302. moveToLocation() {
  303. // 将marker移动至中心点
  304. const mapContext = uni.createMapContext("myMap", this);
  305. this.mapContext = mapContext;
  306. this.mapContext.moveToLocation({
  307. longitude: this.myLocation.longitude,
  308. latitude: this.myLocation.latitude,
  309. success: (res) => {
  310. console.log("marker已移动至中心点");
  311. },
  312. });
  313. },
  314. handleFocus() {
  315. this.isFocused = true;
  316. },
  317. handleBlur() {
  318. this.isFocused = false;
  319. },
  320. clearSearch() {
  321. this.setData({
  322. inputSearchValue: "",
  323. });
  324. },
  325. openSearch() {
  326. this.isSearch = true;
  327. this.isFocused = true;
  328. },
  329. openSelectType() {
  330. this.setData({
  331. showLeaseType: true,
  332. });
  333. },
  334. closeSelectType() {
  335. this.setData({
  336. showLeaseType: false,
  337. });
  338. },
  339. tapSearch() {
  340. if (this.selectType === 'store') {
  341. this.loadCarRentalList(this.inputSearchValue)
  342. } else {
  343. this.loadNearCabinetList(this.inputSearchValue)
  344. }
  345. },
  346. checkCabinetType(e) {
  347. console.log(e, "e");
  348. const obj = LEASE_TYPE_ARR.find(v => v.value == e)
  349. const shop_type = (e == 100) ? '' : obj.type
  350. this.setData({
  351. showLeaseType: false,
  352. shop_type
  353. });
  354. this.loadCarRentalList('', shop_type)
  355. },
  356. loadModelType() {
  357. const me = this
  358. http.postApi(config.API_NEAR_BATTERY_TYPE_LIST, {}, (resp) => {
  359. if (resp.data.code === 200) {
  360. me.setData({
  361. modelTypeList: resp.data.data.list
  362. })
  363. } else {
  364. common.simpleToast(resp.data.msg);
  365. }
  366. });
  367. },
  368. },
  369. };
  370. </script>
  371. <style>
  372. @import "./service.css";
  373. </style>