service.vue 11 KB

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