index.js 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353
  1. //index.js
  2. //获取应用实例
  3. let app = getApp();
  4. let wechat = require("../../utils/wechat");
  5. let amap = require("../../utils/amap");
  6. let Util = require("../../utils/util");
  7. let log = require('../../utils/log.js');
  8. let wxpro = require('../../utils/wx-promise-pro.js');
  9. let mapregionchange_makertap = false;
  10. wxpro.promisifyAll()
  11. // wxpro.promisify(wx.getSystemInfo)().then(console.log)
  12. for (var variable in wx) {
  13. if (wx.hasOwnProperty(variable)) {
  14. wx.pro[variable] = wxpro.promisify(wx[variable])
  15. }
  16. }
  17. Page({
  18. data: {
  19. scanFlag:false,
  20. markers: [],
  21. latitude: 39.9088120620532,
  22. longitude: 116.39747668717192,
  23. user_lat: 39.9088120620532,
  24. user_lon: 116.39747668717192,
  25. textData: null,
  26. city: null,
  27. markerId: null,
  28. keywords: "搜索充电桩",
  29. userInfo: {},
  30. isLogin: false,
  31. myChargeStationsIds: '',
  32. distanceinfo: [
  33. // {
  34. // value: 1000,
  35. // text: '1km'
  36. // }, {
  37. // value: 2000,
  38. // text: '2km'
  39. // }, {
  40. // value: 5000,
  41. // text: '5km'
  42. // },
  43. {
  44. value: 10000,
  45. text: '10km'
  46. },
  47. // {
  48. // value: 20000,
  49. // text: '20km'
  50. // },
  51. {
  52. value: 50000,
  53. text: '50km'
  54. }, {
  55. value: 100000,
  56. text: '100km'
  57. }],
  58. distanceinfoindex: 0,
  59. polygon: [{
  60. points: [{
  61. latitude: 31,
  62. longitude: 131
  63. }, {
  64. latitude: 31,
  65. longitude: 131.1
  66. }, {
  67. latitude: 31.1,
  68. longitude: 131.1
  69. }, , {
  70. latitude: 31.1,
  71. longitude: 131
  72. }]
  73. }],
  74. showModal: false,
  75. notice: null,
  76. carParkingRate: false,
  77. showPrivacy:false,
  78. occupyFeeOrderList:[]
  79. },
  80. howtouse(){
  81. wx.navigateTo({
  82. url:'/pages/howtouse/howtouse'
  83. });
  84. },
  85. wxScan(q) {
  86. //console.log(decodeURIComponent(e.q));
  87. let charePileId = decodeURIComponent(q).replace("https://cdgl.pjnes.com/", "");
  88. log.info('[首页]', '[微信扫一扫]', { 'q': q });
  89. if(!charePileId){
  90. charePileId = "0"
  91. }
  92. if (charePileId) {
  93. let userInfo = wx.getStorageSync('userInfo');
  94. let isLogin = wx.getStorageSync('isLogin');
  95. if (isLogin && userInfo.flag) {
  96. return;
  97. }
  98. if (!isLogin) {
  99. log.info('[首页]', '[未登陆跳转登录界面]');
  100. let url = `/pages/login/phone_login/phone_login`;
  101. wx.navigateTo({
  102. url
  103. });
  104. return;
  105. } else {
  106. log.info('[首页]', '[获取用户是否有未完成订单]', '[请求]', { userId: userInfo.userId });
  107. wx.request({
  108. url: getApp().globalData.postHeadAgreement + '/restapi/pileLog/wechatchargstatus',
  109. data: {
  110. userId: userInfo.userId
  111. },
  112. method: 'POST',
  113. success(res) {
  114. let {
  115. data
  116. } = res;
  117. log.info('[首页]', '[获取用户是否有未完成订单]', '[响应]', data);
  118. if (data && data.code == 200) {
  119. log.info('[首页]', '[有未完成订单跳充电界面]');
  120. //onShow会跳转
  121. } else {
  122. //console.log('无订单');
  123. log.info('[首页]', '[用户无未完成订单]');
  124. log.info('[首页]', '[获取微信扫一扫充电桩]', '[请求]', charePileId);
  125. wx.request({
  126. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/chargPile',
  127. // data: charePileId,
  128. data:{
  129. chargPileId:charePileId,
  130. userId: userInfo.userId
  131. },
  132. method: 'POST',
  133. success(res) {
  134. //console.log(res.data);
  135. log.info('[首页]', '[获取微信扫一扫充电桩]', '[响应]', res.data);
  136. if (!res.data || res.data.code == 500) {
  137. //没有该充电桩信息
  138. wx.showModal({
  139. showCancel: false,
  140. content: res && res.data && res.data.msg ? res.data.msg :'无效的终端编号',
  141. confirmColor:'#00AADD',
  142. });
  143. } else {
  144. res.data = res.data.result
  145. //充电状态0:离线、1:故障、2:空闲中、3:充电中、4:欠压故障、5:过压故障、6:过电流故障、8:预约、9:在线升级、10:操作中、11:已插枪等
  146. if (!res.data.chargstatus || res.data.chargstatus == 0 || res.data.chargstatus == 1 || res.data.chargstatus == 4 || res.data.chargstatus == 5 || res.data.chargstatus == 6 || res.data.chargstatus == 9) {
  147. //充电桩故障
  148. wx.showModal({
  149. showCancel: false,
  150. content: '终端故障,维修中',
  151. confirmColor:'#00AADD',
  152. });
  153. } else if (res.data.chargstatus == 3 || res.data.chargstatus == 8 || res.data.chargstatus == 10) {
  154. wx.showModal({
  155. showCancel: false,
  156. content: '正在充电中',
  157. confirmColor:'#00AADD',
  158. });
  159. } else if (res.data.chargstatus == 2 || res.data.chargstatus == 11) {
  160. wx.setStorage({
  161. key: "scan_chargpile",
  162. data: res.data
  163. });
  164. log.info('[首页]', '[微信扫一扫充电桩空闲跳转去充电界面]');
  165. let url = `/pages/scan_result/scan_result`;
  166. wx.navigateTo({
  167. url
  168. });
  169. }
  170. }
  171. },
  172. fail(e) {
  173. getApp().showNetworkError();
  174. }
  175. });
  176. }
  177. },
  178. fail(e) {
  179. getApp().showNetworkError();
  180. }
  181. });
  182. }
  183. }
  184. },
  185. resetchargStations(data){
  186. let that = this
  187. // 刷新 stationTag)
  188. for(let i=0;i<data.length;i++){
  189. let seeInfoChargPile = data[i];
  190. that.resetStationTag(seeInfoChargPile);
  191. let resultTable = seeInfoChargPile.resultList
  192. that.resetResultList(resultTable);
  193. that.resetResultData(resultTable,seeInfoChargPile)
  194. }
  195. },
  196. resetResultData(resultList,data){
  197. if(!resultList){
  198. return;
  199. }
  200. for(let i=0;i<resultList.length;i++){
  201. if(resultList[i].currentTime){
  202. data.chargprice = resultList[i].elecPrice
  203. data.serviceprice = resultList[i].servicePrice
  204. }
  205. }
  206. },
  207. resetStationTag(seeInfoChargPile){
  208. let that = this
  209. if(!seeInfoChargPile){
  210. return;
  211. }
  212. if(!seeInfoChargPile?.stationTag){
  213. return;
  214. }
  215. seeInfoChargPile.stationTagList = seeInfoChargPile.stationTag.split("|");
  216. },
  217. resetResultList(resultList){
  218. let that = this
  219. if(!resultList){
  220. return;
  221. }
  222. resultList.forEach(item=>{
  223. item["sumPrice"] = that.resetResultListSumPrice(item);
  224. if(!item.elecPrice && item.elecPrice!=0){
  225. item["elecPrice"] = '暂无费用'
  226. }
  227. if(!item.servicePrice && item.servicePrice!=0){
  228. item["servicePrice"] = '暂无费用'
  229. }
  230. })
  231. },
  232. resetResultListSumPrice(item){
  233. if(!item.elecPrice && item.elecPrice!=0){
  234. return '暂无费用'
  235. }
  236. if(!item.servicePrice && item.servicePrice!=0){
  237. return '暂无费用'
  238. }
  239. return parseFloat((item.elecPrice + item.servicePrice).toFixed(6))
  240. },
  241. onLoad(e) {
  242. // 隐私开始
  243. wx.getPrivacySetting({
  244. success: res => {
  245. console.log(res) // 返回结果为: res = { needAuthorization: true/false, privacyContractName: '《xxx隐私保护指引》' }
  246. if (res.needAuthorization) {
  247. // 需要弹出隐私协议
  248. this.setData({
  249. showPrivacy: true
  250. })
  251. } else {
  252. // 用户已经同意过隐私协议,所以不需要再弹出隐私协议,也能调用已声明过的隐私接口
  253. // wx.getUserProfile()
  254. // wx.chooseMedia()
  255. // wx.getClipboardData()
  256. // wx.startRecord()
  257. }
  258. },
  259. fail: () => {},
  260. complete: () => {}
  261. })
  262. // 隐私结束
  263. this.data.scanFlag = false;
  264. wx.hideLoading();
  265. if (e.q) {
  266. //console.log(decodeURIComponent(e.q));
  267. //let charePileId = decodeURIComponent(e.q).replace("https://cdgl.pjnes.com/", "");
  268. //console.log(charePileId);
  269. //if (charePileId){
  270. //}
  271. let userInfo = wx.getStorageSync('userInfo');
  272. let isLogin = wx.getStorageSync('isLogin');
  273. // userInfo.flag=true;
  274. this.setData({
  275. userInfo,
  276. isLogin
  277. });
  278. this.click_scan_control(e.q,false);
  279. // this.wxScan(e.q);
  280. }
  281. log.info('[首页]', '[加载完成]');
  282. amap.getRegeo(function () {
  283. var fail = function (obj) {
  284. wx.showModal({
  285. title: '请求失败',
  286. content: obj.errMsg,
  287. confirmColor:'#00AADD',
  288. });
  289. }
  290. })
  291. .then(d => {
  292. //console.log(d);
  293. let {
  294. latitude,
  295. longitude,
  296. latitude: user_lat,
  297. longitude: user_lon
  298. } = d[0];
  299. //console.log(d[0].regeocodeData.addressComponent);
  300. var {
  301. city
  302. } = d[0].regeocodeData.addressComponent;
  303. if (d[0].regeocodeData.addressComponent.city.length == 0) {
  304. var {
  305. province: city
  306. } = d[0].regeocodeData.addressComponent;
  307. }
  308. let that = this;
  309. let userInfo = wx.getStorageSync('userInfo');
  310. let isLogin = wx.getStorageSync('isLogin');
  311. // userInfo.flag=true;
  312. this.setData({
  313. city,
  314. latitude,
  315. longitude,
  316. user_lat,
  317. user_lon,
  318. userInfo,
  319. isLogin
  320. });
  321. //开始请求充电站信息
  322. var chargStationType;
  323. if (!userInfo.flag) {
  324. //用户是普通用户
  325. chargStationType = '2';
  326. }
  327. wx.request({
  328. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/chargStations',
  329. data: {
  330. lon: longitude,
  331. lat: latitude,
  332. distance: that.data.distanceinfo[that.data.distanceinfoindex].value,
  333. chargStationType
  334. },
  335. method: 'POST',
  336. success(res) {
  337. //userInfo.flag = true;
  338. that.resetchargStations(res.data)
  339. if (isLogin && userInfo.flag) {
  340. wx.request({
  341. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/userChargStations',
  342. data: {
  343. userId: userInfo.userId,
  344. lat: latitude,
  345. lon: longitude
  346. },
  347. method: 'POST',
  348. success(res1) {
  349. var myChargeStationsIds = '';
  350. res1.data.forEach((item, index) => {
  351. myChargeStationsIds += item.id + ",";
  352. });
  353. //console.log(myChargeStationsIds);
  354. let {
  355. data
  356. } = res;
  357. let markers = [];
  358. data.forEach((item, index) => {
  359. //item.callout = {
  360. // content: item.name, //文本 String 1.2.0
  361. // display: 'BYCLICK', //'BYCLICK': 点击显示; 'ALWAYS': 常显 String 1.2.0
  362. // textAlign: 'center' //文本对齐方式。有效值: left, right, center String 1.6.0
  363. // };
  364. var iconPath = "/images/marker.png";
  365. if (myChargeStationsIds.indexOf(item.id + ',') != -1) {
  366. iconPath = "/images/marker1.png";
  367. }
  368. if (item.breaknum && item.breaknum != 0) {
  369. iconPath = "/images/marker_b.png";
  370. }
  371. /**
  372. * 运营状态 初始,待运营,运营中,暂停营业,关闭,未运营
  373. * */
  374. //private Long operationState;
  375. var marker = {
  376. name: item.chargStationName,
  377. address: item.address,
  378. width: "46rpx",
  379. height: "67rpx",
  380. chargfeatures: item.chargfeatures ,
  381. iconPath: iconPath,
  382. id: item.id,
  383. callout: {},
  384. latitude: item.lat,
  385. longitude: item.lon,
  386. //distance: item.distance / 1000,
  387. distance: Util.distance(that.data.user_lat, that.data.user_lon, item.lat, item.lon),
  388. chargPileNum: item.fastCharg + item.slowCharg,
  389. fastCharg: item.fastCharg,
  390. slowCharg: item.slowCharg,
  391. freenum: item.freenum,
  392. fastfreenum: item.fastfreenum,
  393. slowfreenum: item.slowfreenum,
  394. breaknum: item.breaknum,
  395. /** 电费 */
  396. chargprice: item.chargprice,
  397. /** 服务费 */
  398. serviceprice: item.serviceprice,
  399. /** 停车费 */
  400. stopprice: item.stopprice,
  401. operationState: item.operationState,
  402. chargStationId: item.id,
  403. stationTag: item.stationTag,
  404. stationTagList: item.stationTagList,
  405. offlineServicecall: item.offlineServicecall,
  406. };
  407. markers[index] = marker;
  408. });
  409. that.setData({
  410. markers,
  411. myChargeStationsIds
  412. });
  413. },
  414. fail(e) {
  415. getApp().showNetworkError();
  416. }
  417. });
  418. } else {
  419. let {
  420. data
  421. } = res;
  422. let markers = [];
  423. if(data){
  424. data.forEach((item, index) => {
  425. //item.callout = {
  426. // content: item.name, //文本 String 1.2.0
  427. // display: 'BYCLICK', //'BYCLICK': 点击显示; 'ALWAYS': 常显 String 1.2.0
  428. // textAlign: 'center' //文本对齐方式。有效值: left, right, center String 1.6.0
  429. // };
  430. var iconPath = "/images/marker.png";
  431. //撤销普通用户显示异常站
  432. //if (item.breaknum && item.breaknum != 0) {
  433. // iconPath = "/images/marker_b.png";
  434. //}
  435. //撤销结束
  436. var marker = {
  437. name: item.chargStationName,
  438. address: item.address,
  439. width: "46rpx",
  440. height: "67rpx",
  441. chargfeatures: item.chargfeatures ,
  442. iconPath: iconPath,
  443. id: item.id,
  444. callout: {},
  445. latitude: item.lat,
  446. longitude: item.lon,
  447. //distance: item.distance / 1000,
  448. distance: Util.distance(that.data.user_lat, that.data.user_lon, item.lat, item.lon),
  449. chargPileNum: item.fastCharg + item.slowCharg,
  450. fastCharg: item.fastCharg,
  451. slowCharg: item.slowCharg,
  452. freenum: item.freenum,
  453. fastfreenum: item.fastfreenum,
  454. slowfreenum: item.slowfreenum,
  455. breaknum: item.breaknum,
  456. /** 电费 */
  457. chargprice: item.chargprice,
  458. /** 服务费 */
  459. serviceprice: item.serviceprice,
  460. /** 停车费 */
  461. stopprice: item.stopprice,
  462. operationState: item.operationState,
  463. sharpChargPrice : item.sharpChargPrice,
  464. sharpServicePrice : item.sharpServicePrice,
  465. peakChargPrice : item.peakChargPrice,
  466. peakServicePrice : item.peakServicePrice,
  467. flatChargPrice : item.flatChargPrice,
  468. flatServicePrice : item.flatServicePrice,
  469. valleyChargPrice : item.valleyChargPrice,
  470. valleyServicePrice : item.valleyServicePrice,
  471. resultList: item.resultList,
  472. chargStationId: item.id,
  473. stationTag: item.stationTag,
  474. stationTagList: item.stationTagList,
  475. offlineServicecall: item.offlineServicecall,
  476. };
  477. markers[index] = marker;
  478. });
  479. }
  480. that.setData({
  481. markers
  482. });
  483. }
  484. },
  485. fail(e) {
  486. getApp().showNetworkError();
  487. }
  488. });
  489. })
  490. .catch(e => {
  491. console.log(e);
  492. });
  493. let that = this;
  494. let userInfo = wx.getStorageSync('userInfo');
  495. let isLogin = wx.getStorageSync('isLogin');
  496. //console.log(userInfo);
  497. if (isLogin) {
  498. wx.request({
  499. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/lastNotice',
  500. data: { loginName: userInfo.loginName },
  501. method: 'POST',
  502. success(res) {
  503. //console.log(res);
  504. //res.data = { noticeTitle: '派捷充电例行维护通知', noticeContent:'nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好nihao你好'};
  505. if (res.data) {
  506. that.setData({
  507. showModal: true,
  508. notice: res.data
  509. });
  510. } else {
  511. that.setData({
  512. showModal: false,
  513. notice: null
  514. });
  515. }
  516. },
  517. fail(e) {
  518. //console.log(e);
  519. that.setData({
  520. showModal: false,
  521. notice: null
  522. });
  523. getApp().showNetworkError();
  524. }
  525. });
  526. }
  527. // 占位费查询
  528. // that.loadOccupyOrder()
  529. },
  530. loadOccupyOrder(){
  531. let that = this;
  532. wx.request({
  533. url: getApp().globalData.postHeadAgreement +'/restapi/wechat/queryOccupyFeeOrder',
  534. data: {
  535. userId: wx.getStorageSync('userInfo').userId,
  536. searchIndex: 2,
  537. pagenum: this.data.pagenum++,
  538. pagesize: 10,
  539. },
  540. method: 'POST',
  541. success(res) {
  542. console.log("占位费",res);
  543. if (res.data.result.rows) {
  544. let {
  545. rows: occupyFeeOrderList
  546. } = res.data.result;
  547. // that.startTimeOrder(charginglogs);
  548. // that.formatCharginglogs(occupyFeeOrderList);
  549. // wx.hideLoading()
  550. that.setData({
  551. occupyFeeOrderList: that.data.occupyFeeOrderList.concat(occupyFeeOrderList),
  552. // total: res.data.result.total,
  553. // dataLoading: false
  554. });
  555. }
  556. }
  557. });
  558. },
  559. //跳转个人中心
  560. bindUserAvatarUrl() {
  561. let url = `/pages/ucenter/index/index`;
  562. wx.navigateTo({
  563. url
  564. });
  565. },
  566. //搜索
  567. bindInput() {
  568. var {
  569. user_lat: latitude,
  570. user_lon: longitude,
  571. city
  572. } = this.data;
  573. //console.log(this.data.city);
  574. let url = `/pages/inputtip/inputtip?city=${city}&lonlat=${longitude},${latitude}`;
  575. wx.navigateTo({
  576. url
  577. });
  578. },
  579. //单击地图mark
  580. makertap(e) {
  581. mapregionchange_makertap = true;
  582. //console.log(e);
  583. let {
  584. markerId
  585. } = e.detail;
  586. // console.log({
  587. // e
  588. // });
  589. let {
  590. markers
  591. } = this.data;
  592. //撤销普通用户显示异常站
  593. let userInfo = wx.getStorageSync('userInfo');
  594. let isLogin = wx.getStorageSync('isLogin');
  595. let showBadMark = false;
  596. if (isLogin && userInfo.flag) {
  597. showBadMark = true;
  598. }
  599. //撤销结束
  600. markers.forEach((item, index) => {
  601. item.iconPath = "/images/marker.png";
  602. if (this.data.myChargeStationsIds.indexOf(item.id + ',') != -1) {
  603. item.iconPath = "/images/marker1.png";
  604. }
  605. //撤销普通用户显示异常站
  606. if (showBadMark) {
  607. //撤销结束
  608. if (item.breaknum && item.breaknum != 0) {
  609. item.iconPath = "/images/marker_b.png";
  610. }
  611. //撤销普通用户显示异常站
  612. }
  613. //撤销结束
  614. if (item.id == markerId) {
  615. item.iconPath = "/images/marker_checked.png";
  616. this.showMarkerInfo(item);
  617. }
  618. });
  619. this.setData({
  620. markers,
  621. markerId
  622. });
  623. },
  624. //将mark呈现在地图中心点,并弹出详细信息框
  625. showMarkerInfo(data) {
  626. let that = this
  627. let {
  628. latitude,
  629. longitude
  630. } = data;
  631. this.setData({
  632. textData: data,
  633. latitude: latitude,
  634. longitude: longitude
  635. })
  636. console.info(data)
  637. // 查询是否需要显示
  638. that.execParking(that,data.id)
  639. },
  640. execParking(that,stationId){
  641. wx.request({
  642. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/carParkingRate?stationId=' + stationId,
  643. // data: {
  644. // loginName: userInfo.loginName
  645. // },
  646. method: 'POST',
  647. success: function (res) {
  648. // 是否减免停车费
  649. // carParkingRate: false,
  650. // parkTime: 0,
  651. console.info(res)
  652. let reduceTime = res.data?.reduceTime;
  653. if(!reduceTime){
  654. that.setData({
  655. carParkingRate:false
  656. })
  657. return;
  658. }
  659. that.setData({
  660. carParkingRate:true
  661. })
  662. try{
  663. that.setData({
  664. parkTime: parseFloat((reduceTime/ 3600).toFixed(2))
  665. })
  666. }catch(e){
  667. that.setData({
  668. carParkingRate:false
  669. })
  670. }
  671. },
  672. fail(e) {
  673. console.log("用户数据同步失败");
  674. log.info('[扫码]', '[同步用户数据]', '[fail]', e);
  675. }
  676. });
  677. },
  678. //改变选中mark的颜色
  679. changeMarkerColor(markerId) {
  680. let {
  681. markers
  682. } = this.data;
  683. //撤销普通用户显示异常站
  684. let userInfo = wx.getStorageSync('userInfo');
  685. let isLogin = wx.getStorageSync('isLogin');
  686. let showBadMark = false;
  687. if (isLogin && userInfo.flag) {
  688. showBadMark = true;
  689. }
  690. //撤销结束
  691. markers.forEach((item, index) => {
  692. item.iconPath = "/images/marker.png";
  693. if (this.data.myChargeStationsIds.indexOf(item.id + ',') != -1) {
  694. item.iconPath = "/images/marker1.png";
  695. }
  696. //撤销普通用户显示异常站
  697. if (showBadMark) {
  698. //撤销结束
  699. if (item.breaknum && item.breaknum != 0) {
  700. item.iconPath = "/images/marker_b.png";
  701. }
  702. //撤销普通用户显示异常站
  703. }
  704. //撤销结束
  705. if (item.id == markerId) {
  706. item.iconPath = "/images/marker_checked.png";
  707. }
  708. })
  709. this.setData({
  710. markers,
  711. markerId
  712. });
  713. },
  714. seeInfo(e){
  715. console.log("11111");
  716. // 起点
  717. let {
  718. user_lat: latitude,
  719. user_lon: longitude,
  720. markers,
  721. markerId,
  722. city,
  723. textData
  724. } = this.data;
  725. let {
  726. name,
  727. address,
  728. chargprice,
  729. serviceprice,
  730. brandName
  731. } = textData;
  732. console.log("222222");
  733. console.log(markers);
  734. if (!markers.length) return;
  735. console.log("3333333");
  736. // 终点
  737. markers.forEach((item, index) => {
  738. if (markerId && markerId == item.id) {
  739. let {
  740. name: latitude2,
  741. longitude: longitude2
  742. } = item;
  743. wx.setStorage({
  744. key: "index_seeInfo_chargpile",
  745. data: item
  746. });
  747. let url = `/pages/charginfo/charginfo?name=${name}&address=${address}&chargprice=${chargprice}&serviceprice=${serviceprice}&chargid=${markerId}&brandName=${brandName}`;
  748. wx.navigateTo({
  749. url
  750. });
  751. }
  752. });
  753. },
  754. //导航
  755. getRoute(e) {
  756. //console.log(e);
  757. // 起点
  758. let {
  759. user_lat: latitude,
  760. user_lon: longitude,
  761. markers,
  762. markerId,
  763. city,
  764. textData
  765. } = this.data;
  766. let {
  767. name,
  768. address
  769. } = textData;
  770. if (!markers.length) return;
  771. // 终点
  772. markers.forEach((item, index) => {
  773. if (markerId && markerId == item.id) {
  774. let {
  775. latitude: latitude2,
  776. longitude: longitude2
  777. } = item;
  778. let url = `/pages/routes/routes?longitude=${longitude}&latitude=${latitude}&longitude2=${longitude2}&latitude2=${latitude2}&city=${city}&name=${name}&desc=${address}`;
  779. //console.log(url);
  780. wx.navigateTo({
  781. url
  782. });
  783. }
  784. });
  785. return;
  786. },
  787. //回到当前位置
  788. click_location_control(e) {
  789. //console.log("回到用户当前定位点");
  790. // let {
  791. // controlId
  792. // } = e;
  793. let mpCtx = wx.createMapContext("map");
  794. mpCtx.moveToLocation();
  795. },
  796. //打开扫一扫
  797. click_scan_control_outer(){
  798. this.click_scan_control("",true)
  799. },
  800. click_scan_control(scanResult,inner) {
  801. if(this.data.scanFlag){
  802. return;
  803. }
  804. this.data.scanFlag = true;
  805. wx.showLoading({
  806. title: '努力加载中...',
  807. })
  808. console.log("打开扫一扫");
  809. log.info('[首页]', '[打开扫一扫]');
  810. let that = this;
  811. if (!this.data.isLogin) {
  812. log.info('[首页]', '[未登陆跳转登录界面]');
  813. let url = `/pages/login/phone_login/phone_login`;
  814. that.data.scanFlag = false;
  815. wx.hideLoading();
  816. wx.navigateTo({
  817. url
  818. });
  819. return;
  820. } else {
  821. if (this.data.userInfo.flag) {// 运维人员不作操作,直接返回首页
  822. wx.hideLoading();
  823. return false;
  824. }
  825. if(!this.phoneCheck()){
  826. return;
  827. }
  828. log.info('[首页]', '[获取用户是否有未支付订单]', '[请求]', { userId: this.data.userInfo.userId });
  829. wx.request({
  830. url: getApp().globalData.postHeadAgreement + '/restapi/pileLog/wechatsettlement',
  831. data: {
  832. userId: this.data.userInfo.userId
  833. },
  834. method: 'POST',
  835. success(res) {
  836. let {
  837. data
  838. } = res;
  839. let {
  840. result: order
  841. } = data;
  842. log.info('[首页]', '[获取用户是否有未支付订单]', '[响应]', data);
  843. if (data && order && data.code == 200) {
  844. that.data.scanFlag = false;
  845. wx.hideLoading();
  846. log.info('[首页]', '[用户有未支付订单跳转订单支付界面]');
  847. wx.showModal({
  848. showCancel: false,
  849. content: '你有未支付的订单,请先支付',
  850. confirmColor:'#00AADD',
  851. success: function (res) {
  852. //console.log(res);
  853. if (!res.cancel) {
  854. //点击确定
  855. let url = `/pages/order/order?orderid=${order.orderid}&userId=${order.userId}&chargPileId=${order.chargPileId}`;
  856. wx.navigateTo({
  857. url
  858. });
  859. }
  860. }
  861. });
  862. //console.log(that.data.result);
  863. } else {
  864. //console.log('无订单');
  865. log.info('[首页]', '[用户无未支付订单]');
  866. //console.log("打开扫一扫");
  867. if(inner){
  868. wx.pro.scanCode().then(d=>{
  869. that.afterScanCode(d,that,inner)
  870. }).catch(e=>{
  871. that.data.scanFlag = false;
  872. wx.hideLoading();
  873. });
  874. }else{
  875. that.afterScanCode(scanResult,that,inner)
  876. }
  877. }
  878. },
  879. fail(e) {
  880. that.data.scanFlag = false;
  881. wx.hideLoading();
  882. getApp().showNetworkError();
  883. }
  884. });
  885. }
  886. },
  887. afterScanCode(d,that,inner){
  888. let scanResult = ""
  889. if(inner){
  890. //console.log("完成扫一扫");
  891. //console.log(d);
  892. //兼容标准格式hlht://202001022222220101.330414214二维码
  893. scanResult = d.result;
  894. if((!scanResult) || scanResult == ""){
  895. scanResult="*"
  896. }
  897. }else{
  898. scanResult = decodeURIComponent(d)
  899. //console.log(charePileId);
  900. log.info('[首页]', '[微信扫一扫]', { 'd': d });
  901. if(!scanResult){
  902. scanResult = "0"
  903. }
  904. }
  905. // 是否电池包
  906. let batteryFlag = false;
  907. if (scanResult.startsWith("tkd")){
  908. scanResult = scanResult.substring(3);
  909. batteryFlag = true
  910. }
  911. if (scanResult.startsWith("hlht://") || scanResult.startsWith("HLHT://")){
  912. scanResult = scanResult.substring(7, scanResult.indexOf("."));
  913. }
  914. scanResult = scanResult.replace("https://cdgl.pjnes.com/", "");
  915. scanResult = scanResult.replace("https://cdglyy.pjnes.com/", "");
  916. console.log('扫描到的内容: [' + scanResult + '] , 是否内部按钮:' + inner)
  917. log.info('[首页]', '[用户完成扫一扫]', scanResult);
  918. log.info('[首页]', '[获取扫一扫充电桩]', '[请求]', scanResult);
  919. wx.request({
  920. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/' + (batteryFlag? 'chargBattery' : 'chargPile'),
  921. // data: scanResult,
  922. data: {
  923. chargPileId:scanResult,
  924. userId: that.data.userInfo.userId
  925. },
  926. method: 'POST',
  927. success(res) {
  928. console.log( res.data);
  929. log.info('[首页]', '[获取扫一扫充电桩]', '[响应]', res.data);
  930. if (!res.data || res.data.code == 500) {
  931. that.data.scanFlag = false;
  932. wx.hideLoading();
  933. //没有该充电桩信息
  934. wx.showModal({
  935. showCancel: false,
  936. content: res && res.data && res.data.msg ? res.data.msg :'无效的终端编号',
  937. confirmColor:'#00AADD',
  938. });
  939. } else {
  940. res.data = res.data.result
  941. // 拨乱反正, 将电池包的逻辑强行合并
  942. if(batteryFlag){
  943. // 0空闲
  944. let status = res.data.parkStatus
  945. if(status == 1){
  946. wx.showModal({
  947. showCancel: false,
  948. content: '当前停靠点占用',
  949. confirmColor:'#00AADD',
  950. });
  951. }else if(status == 0){
  952. wx.hideLoading();
  953. that.data.scanFlag = false;
  954. // 判断电池包
  955. if(res?.data?.chargPileList?.length==0 || !res?.data?.chargPileList){
  956. wx.showModal({
  957. showCancel: false,
  958. content: '暂无可用电池包',
  959. confirmColor:'#00AADD',
  960. });
  961. return;
  962. }
  963. wx.setStorage({
  964. key: "elpackage",
  965. data: res.data
  966. });
  967. let url = `/pages/scan_result/elpackage`;
  968. wx.navigateTo({
  969. url
  970. });
  971. }else{
  972. wx.showModal({
  973. showCancel: false,
  974. content: '未知错误,电池包返回状态码异常:' + res.data.parkStatus,
  975. confirmColor:'#00AADD',
  976. });
  977. }
  978. that.data.scanFlag = false;
  979. wx.hideLoading();
  980. return;
  981. }
  982. //SZP
  983. // park_status
  984. //充电状态0:离线、1:故障、2:空闲中、3:充电中、4:欠压故障、5:过压故障、6:过电流故障、8:预约、9:在线升级、10:操作中、11:已插枪等
  985. if (!res.data.chargstatus || res.data.chargstatus == 0 || res.data.chargstatus == 1 || res.data.chargstatus == 4 || res.data.chargstatus == 5 || res.data.chargstatus == 6 || res.data.chargstatus == 9) {
  986. //充电桩故障
  987. wx.showModal({
  988. showCancel: false,
  989. content: '终端故障,维修中',
  990. confirmColor:'#00AADD',
  991. });
  992. } else if (res.data.chargstatus == 3 || res.data.chargstatus == 8 || res.data.chargstatus == 10) {
  993. wx.showModal({
  994. showCancel: false,
  995. content: '正在充电中',
  996. confirmColor:'#00AADD',
  997. });
  998. } else if (res.data.chargstatus == 2 || res.data.chargstatus == 11) {
  999. wx.setStorage({
  1000. key: "scan_chargpile",
  1001. data: res.data
  1002. });
  1003. log.info('[首页]', '[扫一扫充电桩空闲跳转去充电界面]');
  1004. let url = `/pages/scan_result/scan_result`;
  1005. that.data.scanFlag = false;
  1006. wx.hideLoading();
  1007. wx.navigateTo({
  1008. url
  1009. });
  1010. }
  1011. that.data.scanFlag = false;
  1012. wx.hideLoading();
  1013. }
  1014. },
  1015. fail(e) {
  1016. getApp().showNetworkError();
  1017. }
  1018. });
  1019. },
  1020. //地图位移
  1021. mapchange(e) {
  1022. if (e.type == 'end') {
  1023. if (!mapregionchange_makertap) {
  1024. //console.log("移动地图");
  1025. let that = this;
  1026. let wMap = wx.createMapContext('map');
  1027. wMap.getCenterLocation({
  1028. type: 'gcj02',
  1029. success: function (res) {
  1030. let {
  1031. latitude,
  1032. longitude
  1033. } = res;
  1034. let userInfo = wx.getStorageSync('userInfo');
  1035. let isLogin = wx.getStorageSync('isLogin');
  1036. var chargStationType;
  1037. if (!userInfo.flag) {
  1038. //用户是普通用户
  1039. chargStationType = '2';
  1040. }
  1041. wx.request({
  1042. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/chargStations',
  1043. data: {
  1044. lon: longitude,
  1045. lat: latitude,
  1046. distance: that.data.distanceinfo[that.data.distanceinfoindex].value,
  1047. chargStationType
  1048. },
  1049. method: 'POST',
  1050. success(res) {
  1051. that.resetchargStations(res.data)
  1052. let {
  1053. data
  1054. } = res;
  1055. let markers = [];
  1056. var flag = false;
  1057. if(data){
  1058. data.forEach((item, index) => {
  1059. var iconPath;
  1060. if (that.data.markerId && that.data.markerId == item.id) {
  1061. iconPath = "/images/marker_checked.png";
  1062. flag = true;
  1063. } else {
  1064. iconPath = "/images/marker.png";
  1065. if (that.data.myChargeStationsIds.indexOf(item.id + ',') != -1) {
  1066. iconPath = "/images/marker1.png";
  1067. }
  1068. //撤销普通用户显示异常站
  1069. if (isLogin && userInfo.flag) {
  1070. //撤销结束
  1071. if (item.breaknum && item.breaknum != 0) {
  1072. iconPath = "/images/marker_b.png";
  1073. }
  1074. //撤销普通用户显示异常站
  1075. }
  1076. //撤销结束
  1077. }
  1078. //console.log(Util.distance(that.data.user_lat, that.data.user_lon, item.lat, item.lon));
  1079. var marker = {
  1080. brandName:item.brandName,
  1081. name: item.chargStationName,
  1082. address: item.address,
  1083. width: "46rpx",
  1084. height: "67rpx",
  1085. chargfeatures: item.chargfeatures ,
  1086. iconPath: iconPath,
  1087. id: item.id,
  1088. callout: {},
  1089. latitude: item.lat,
  1090. longitude: item.lon,
  1091. //distance: item.distance / 1000,
  1092. distance: Util.distance(that.data.user_lat, that.data.user_lon, item.lat, item.lon),
  1093. chargPileNum: item.fastCharg + item.slowCharg,
  1094. fastCharg: item.fastCharg,
  1095. slowCharg: item.slowCharg,
  1096. freenum: item.freenum,
  1097. fastfreenum: item.fastfreenum,
  1098. slowfreenum: item.slowfreenum,
  1099. breaknum: item.breaknum,
  1100. /** 电费 */
  1101. chargprice: item.chargprice,
  1102. /** 服务费 */
  1103. serviceprice: item.serviceprice,
  1104. /** 停车费 */
  1105. stopprice: item.stopprice,
  1106. operationState: item.operationState,
  1107. sharpChargPrice : item.sharpChargPrice,
  1108. sharpServicePrice : item.sharpServicePrice,
  1109. peakChargPrice : item.peakChargPrice,
  1110. peakServicePrice : item.peakServicePrice,
  1111. flatChargPrice : item.flatChargPrice,
  1112. flatServicePrice : item.flatServicePrice,
  1113. valleyChargPrice : item.valleyChargPrice,
  1114. valleyServicePrice : item.valleyServicePrice,
  1115. resultList: item.resultList,
  1116. chargStationId: item.id,
  1117. stationTag: item.stationTag,
  1118. stationTagList: item.stationTagList,
  1119. offlineServicecall: item.offlineServicecall,
  1120. };
  1121. markers[index] = marker;
  1122. });
  1123. }
  1124. if (!flag) {
  1125. that.setData({
  1126. textData: null,
  1127. markerId: null,
  1128. });
  1129. }
  1130. that.setData({
  1131. markers: markers
  1132. });
  1133. },
  1134. fail(e) {
  1135. getApp().showNetworkError();
  1136. }
  1137. });
  1138. }
  1139. });
  1140. } else {
  1141. //点击marker的情况下
  1142. //console.log("点击marker");
  1143. mapregionchange_makertap = false;
  1144. }
  1145. }
  1146. },
  1147. phoneCheck(){
  1148. if (this.data.userInfo.bindingPhone==0) {
  1149. wx.hideLoading();
  1150. wx.showModal({
  1151. title: '提示',
  1152. content: '当前账户未绑定手机号,请您进行手机号绑定操作',
  1153. showCancel:false,
  1154. confirmText: '去绑定',
  1155. confirmColor:'#00AADD',
  1156. success: function (res1) {
  1157. let url = `/pages/bindPhone/bindPhone`;
  1158. wx.navigateTo({
  1159. url
  1160. });
  1161. }
  1162. })
  1163. return false;
  1164. }else{
  1165. return true;
  1166. }
  1167. },
  1168. /**
  1169. * 生命周期函数--监听页面显示
  1170. */
  1171. onShow: function () {
  1172. this.data.scanFlag = false;
  1173. let userInfo = wx.getStorageSync('userInfo');
  1174. let isLogin = wx.getStorageSync('isLogin');
  1175. // 页面显示
  1176. if (userInfo && isLogin) {
  1177. //console.log(userInfo);
  1178. //userInfo.flag = true;
  1179. this.setData({
  1180. userInfo: userInfo,
  1181. isLogin: isLogin
  1182. });
  1183. if ((!userInfo.userId && userInfo.userId != 0)){
  1184. log.info('[首页]', '[已登陆未有用户ID跳转登录界面]');
  1185. let url = `/pages/login/phone_login/phone_login`;
  1186. wx.navigateTo({
  1187. url
  1188. });
  1189. return;
  1190. }
  1191. // 查询订单
  1192. log.info('[首页]', '[获取用户是否有未完成订单]', '[请求]', { userId: userInfo.userId });
  1193. wx.request({
  1194. url: getApp().globalData.postHeadAgreement + '/restapi/pileLog/wechatchargstatus',
  1195. data: {
  1196. userId: userInfo.userId
  1197. },
  1198. method: 'POST',
  1199. success(res) {
  1200. let {
  1201. data
  1202. } = res;
  1203. log.info('[首页]', '[获取用户是否有未完成订单]', '[响应]', data);
  1204. if (data && data.code == 200) {
  1205. log.info('[首页]', '[有未完成订单跳充电界面]');
  1206. //获取用户正在充电的订单,并跳转到该页面
  1207. let url = `/pages/charging/charging?orderid=${data.result.orderid}&userId=${userInfo.userId}&chargPileId=${data.result.chargPileId}`;
  1208. //let url = `/pages/charging/charging?userId=${userInfo.userId}`;
  1209. wx.navigateTo({
  1210. url
  1211. });
  1212. } else {
  1213. //console.log(res);
  1214. }
  1215. },
  1216. fail(e) {
  1217. getApp().showNetworkError();
  1218. }
  1219. });
  1220. // 查询呼叫电车
  1221. console.log("查询呼叫电车")
  1222. wx.request({
  1223. url: getApp().globalData.postHeadAgreement + '/restapi/wechat/ivCarRequirement' +
  1224. '?userId='+userInfo.userId,
  1225. data: {
  1226. },
  1227. method: 'POST',
  1228. success(res) {
  1229. console.log(res?.data?.result?.requirementStep)
  1230. // 0-7 进等待 8进终端详情
  1231. if(res?.data?.result?.requirementStep>=0 && res?.data?.result?.requirementStep<=7){
  1232. // 等待
  1233. let url = `/pages/batteryPack/batteryPackWait`;
  1234. wx.reLaunch({
  1235. url
  1236. });
  1237. }else if(res?.data?.result?.requirementStep==8){
  1238. // 8进终端详情
  1239. let url = `/pages/batteryPack/batteryPackWait`;
  1240. wx.reLaunch({
  1241. url
  1242. });
  1243. }
  1244. },
  1245. fail(e) {
  1246. getApp().showNetworkError();
  1247. }
  1248. });
  1249. } else {
  1250. //未登录信息
  1251. this.setData({
  1252. userInfo: {}
  1253. });
  1254. }
  1255. },
  1256. bindDistanceinfoChange: function (e) {
  1257. let distance = this.data.distanceinfo[e.detail.value].value;
  1258. this.setData({
  1259. distanceinfoindex: e.detail.value
  1260. });
  1261. },
  1262. Sure: function () {
  1263. this.setData({
  1264. showModal: false
  1265. });
  1266. },
  1267. handleAgreePrivacyAuthorization() {
  1268. console.info('3333333333333');
  1269. this.setData({
  1270. showPrivacy: false
  1271. })
  1272. // 用户同意隐私协议事件回调
  1273. // 用户点击了同意,之后所有已声明过的隐私接口和组件都可以调用了
  1274. // wx.getUserProfile()
  1275. // wx.chooseMedia()
  1276. // wx.getClipboardData()
  1277. // wx.startRecord()
  1278. },
  1279. handleOpenPrivacyContract() {
  1280. // 打开隐私协议页面
  1281. wx.openPrivacyContract({
  1282. success: () => {}, // 打开成功
  1283. fail: () => {}, // 打开失败
  1284. complete: () => {}
  1285. })
  1286. }
  1287. })