service.vue 11 KB

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