service.vue 11 KB

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