service.vue 13 KB

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