service.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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)' @click="changMarkertap" v-if="myLocation.latitude"
  17. :mapData='markers' :myLocation='myLocation'></googleMap>
  18. <!-- #endif -->
  19. <!-- 地图控件 -->
  20. <cover-view :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 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: "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. console.log(type)
  183. this.setData({
  184. selectType: type,
  185. });
  186. console.log(type == 'store' ? 1 : 2)
  187. this.type = type == 'store' ? 1 : 2
  188. if (type === "store") {
  189. this.loadCarRentalList();
  190. } else {
  191. this.loadNearCabinetList();
  192. }
  193. },
  194. //附近门店列表
  195. loadCarRentalList(name = '', shop_type = '') {
  196. const pData = {
  197. limit: 50,
  198. longitude: this.myLocation.longitude,
  199. latitude: this.myLocation.latitude,
  200. name,
  201. shop_type
  202. };
  203. const me = this;
  204. var nearCabinetList = [];
  205. http.postApi(config.API_NEAR_SHOP_LIST, pData, (resp) => {
  206. if (resp.data.code == 200) {
  207. me.markers = {}
  208. let markers = {
  209. markers: []
  210. }
  211. nearCabinetList = resp.data.data.list || [];
  212. // if (nearCabinetList.length != 0) {
  213. // nearCabinetList.forEach((store, index) => {
  214. // store.width = 50;
  215. // store.height = 52;
  216. // store.available_cnt = 2;
  217. // store.id = 100000 + (store.id - 0);
  218. // store.type = "SHOP";
  219. // store.iconPath = CABINET_ICON_URL;
  220. // });
  221. // }
  222. console.log(markers.markers)
  223. markers.markers = nearCabinetList.map(item => {
  224. return {
  225. width: 50,
  226. height: 52,
  227. id: Number(item.id),
  228. longitude: item.longitude,
  229. latitude: item.latitude,
  230. iconPath: CABINET_ICON_URL,
  231. iconPathActive: SHOPSELECTIMG,
  232. content: '233'
  233. }
  234. })
  235. this.getLocationPostion(this.myLocation, markers);
  236. // console.log(nearCabinetList, "nearCabinetList");
  237. me.setData({
  238. nearCabinetList: nearCabinetList,
  239. });
  240. } else {
  241. common.simpleToast(resp.data.msg);
  242. }
  243. });
  244. },
  245. //附近机柜列表
  246. async loadNearCabinetList(name = '') {
  247. const pData = {
  248. limit: 50,
  249. longitude: this.myLocation.longitude,
  250. latitude: this.myLocation.latitude,
  251. name
  252. };
  253. const me = this;
  254. var nearCabinetList = [];
  255. let {
  256. data
  257. } = await http_gyq.postApi(config_gyq.API_FLK_CABINET_NEAR_LIST, pData)
  258. if (data.code === 200) {
  259. this.markers = {}
  260. nearCabinetList = data.data.cabinetList || [];
  261. let markers = {}
  262. markers.markers = nearCabinetList.map(item => {
  263. return {
  264. width: 56,
  265. height: 56,
  266. id: Number(item.id),
  267. longitude: item.longitude,
  268. latitude: item.latitude,
  269. iconPath: CABINET_ICON_URLS,
  270. iconPathActive: CABINET_ICON_URLS,
  271. content: '21'
  272. }
  273. })
  274. this.getLocationPostion(this.myLocation, markers);
  275. me.setData({
  276. nearCabinetList: nearCabinetList,
  277. });
  278. } else {
  279. common.simpleToast(data.msg);
  280. }
  281. },
  282. getLocationPostion(centerLocation, markers) {
  283. const locationData = {
  284. longitude: centerLocation.longitude,
  285. latitude: centerLocation.latitude,
  286. width: 22,
  287. height: 40,
  288. id: 50000,
  289. iconPath: "https://zxappfile.bms16.com/zx_client/location_n.png",
  290. model_list: [],
  291. };
  292. markers.markers.push(locationData);
  293. markers.type = this.type
  294. this.markers = markers
  295. console.log(this.markers)
  296. },
  297. moveToLocation() {
  298. // 将marker移动至中心点
  299. const mapContext = uni.createMapContext("myMap", this);
  300. this.mapContext = mapContext;
  301. this.mapContext.moveToLocation({
  302. longitude: this.myLocation.longitude,
  303. latitude: this.myLocation.latitude,
  304. success: (res) => {
  305. console.log("marker已移动至中心点");
  306. },
  307. });
  308. },
  309. handleFocus() {
  310. this.isFocused = true;
  311. },
  312. handleBlur() {
  313. this.isFocused = false;
  314. },
  315. clearSearch() {
  316. this.setData({
  317. inputSearchValue: "",
  318. });
  319. },
  320. openSearch() {
  321. this.isSearch = true;
  322. this.isFocused = true;
  323. },
  324. openSelectType() {
  325. this.setData({
  326. showLeaseType: true,
  327. });
  328. },
  329. closeSelectType() {
  330. this.setData({
  331. showLeaseType: false,
  332. });
  333. },
  334. tapSearch() {
  335. if (this.selectType === 'store') {
  336. this.loadCarRentalList(this.inputSearchValue)
  337. } else {
  338. this.loadNearCabinetList(this.inputSearchValue)
  339. }
  340. },
  341. checkCabinetType(e) {
  342. console.log(e, "e");
  343. const obj = LEASE_TYPE_ARR.find(v => v.value == e)
  344. const shop_type = (e == 100) ? '' : obj.type
  345. this.setData({
  346. showLeaseType: false,
  347. shop_type
  348. });
  349. this.loadCarRentalList('', shop_type)
  350. },
  351. loadModelType() {
  352. const me = this
  353. http.postApi(config.API_NEAR_BATTERY_TYPE_LIST, {}, (resp) => {
  354. if (resp.data.code === 200) {
  355. me.setData({
  356. modelTypeList: resp.data.data.list
  357. })
  358. } else {
  359. common.simpleToast(resp.data.msg);
  360. }
  361. });
  362. },
  363. },
  364. };
  365. </script>
  366. <style>
  367. @import "./service.css";
  368. </style>