service.vue 13 KB

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