terminal.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. <template>
  2. <ax-body blank="0" hideIndicatorArea>
  3. <image src="@/static/img/page-bg01.png" class="page-background"></image>
  4. <view class="body" :class="{visit}">
  5. <!-- 主图 -->
  6. <view class="app-flex c-center host-graph">
  7. <image src="@/static/img/charging-01.png" mode="widthFix" class="image"></image>
  8. </view>
  9. <!-- 主参数 -->
  10. <view class="parameter">
  11. <view class="param">
  12. <view class="value">{{deviceInfo.current}}</view>
  13. <view class="name">电流A</view>
  14. </view>
  15. <view class="param">
  16. <view class="value">{{getVolt()}}</view>
  17. <view class="name">电压V</view>
  18. </view>
  19. <view class="param">
  20. <view class="value">{{deviceInfo.power}}</view>
  21. <view class="name">功率KW</view>
  22. </view>
  23. </view>
  24. <view v-if="!visit" class="block">
  25. <view class="card">
  26. <view class="title">
  27. <text>我的抵扣券</text>
  28. <view class="more" v-if="isEc">
  29. <view class="switch" :class="{'personal':personal==1}"><text
  30. @click="changeAccount(1)">个人</text><text @click="changeAccount(2)">集团</text></view>
  31. </view>
  32. </view>
  33. <view class="coupon-image-card"
  34. :style="{backgroundImage:`url(${personal==1?selectedImg:defaultImg})`}">
  35. <view class="coupon-title">充电抵扣券</view>
  36. <view class="price-info">
  37. <view class="price-numer">{{accountInfo.balance}}</view>
  38. <view class="price-text">剩余可抵扣充电余量</view>
  39. </view>
  40. <view class="shop-coupon-btn" :style="{backgroundColor: personal==1?'#FF6457':'#3EB6F8'}" @click="gotoCouponBuy">立即购券</view>
  41. </view>
  42. <!-- <view class="coupon" :class="{'personal':personal==1}">
  43. <view class="name">{{personal == 1?'充电抵扣券':'集团抵扣券'}}</view>
  44. <view class="feature"><view class="line"></view></view>
  45. <view class="info">
  46. <view class="value">{{accountInfo.balance}}</view>
  47. <view class="describe">剩余可抵扣充电费用 (元)</view>
  48. </view>
  49. </view> -->
  50. </view>
  51. </view>
  52. <view class="block">
  53. <view class="card">
  54. <view class="title">
  55. <text>费用信息</text>
  56. <view @click="$app.url.goto('/pages/site-more/site-more?show=1&stationId='+stationInfo.id)"
  57. class="more"><text>价格详情</text>
  58. <icon class="ax-iconline i-arrow-right icon"></icon>
  59. </view>
  60. </view>
  61. <view class="cell">
  62. <view class="lable">{{personal == 1?'当前电价':'集团折扣价'}}</view>
  63. <view class="contet app-flex middle">
  64. <view v-if="personal == 1"><text
  65. class="money">{{nowPriceTime.price?parseFloat(nowPriceTime.price).toFixed(4):"0.0000"}}</text><text>
  66. 元/度</text></view>
  67. <view v-else>
  68. <text class="obsolete">
  69. {{nowPriceTime.price?parseFloat(nowPriceTime.price).toFixed(4):"0.0000"}} 元/度
  70. </text>
  71. <text class="money">{{getCurrEcPrice()}}</text><text> 元/度</text>
  72. </view>
  73. </view>
  74. </view>
  75. <view class="cell" v-if="discountInfo&&personal == 1">
  76. <view class="lable">优惠</view>
  77. <view class="contet app-flex middle">
  78. <view>{{discountInfo.temp3}}<text
  79. class="money">{{discountInfo.discount?parseFloat(discountInfo.discount).toFixed(4):"0.0000"}}</text><text>
  80. 元/度</text></view>
  81. </view>
  82. </view>
  83. <view class="cell">
  84. <view class="lable">当前时段</view>
  85. <view class="contet">{{getPriceLable(nowPriceTime.timeType)}} {{nowPriceTime.time}}</view>
  86. </view>
  87. <!-- <view class="cell" style="height: auto;"><view class="lable">停车参考</view><view class="contet" style="flex: 1;padding-left: 5px;" v-html="stationInfo.parkTips"></view></view> -->
  88. <view class="cell">
  89. <view class="lable">停车参考</view>
  90. <view class="contet">充电减免2小时停车费,超出时长部分计时收费</view>
  91. </view>
  92. </view>
  93. </view>
  94. <view class="block">
  95. <view class="card">
  96. <view class="title">终端信息</view>
  97. <view class="cell">
  98. <view class="lable">终端状态</view>
  99. <view class="contet">{{getDeviceStatusLable(deviceInfo.deviceStatus)}}</view>
  100. </view>
  101. <view class="cell">
  102. <view class="lable">终端编号</view>
  103. <view class="contet">{{deviceInfo.deviceNo}}</view>
  104. </view>
  105. <view class="cell">
  106. <view class="lable">充电电站</view>
  107. <view class="contet">{{deviceInfo.thirdPartyStationName}}</view>
  108. </view>
  109. <view class="cell">
  110. <view class="lable">充电终端</view>
  111. <view class="contet">{{deviceInfo.deviceName}}</view>
  112. </view>
  113. <view class="cell">
  114. <view class="lable">车位编号</view>
  115. <view class="contet">{{deviceInfo.parkNo ? deviceInfo.parkNo : "无"}}</view>
  116. </view>
  117. </view>
  118. </view>
  119. <!-- 信息 -->
  120. <view class="footer">
  121. <view class="tips">账单信息可能会有所延迟,具体以实际结算为准</view>
  122. <view>
  123. <button @click="startup()" class="startup">启动终端充电</button>
  124. <ax-ios-indicator min="10"></ax-ios-indicator>
  125. </view>
  126. </view>
  127. </view>
  128. </ax-body>
  129. </template>
  130. <script>
  131. export default {
  132. onLoad(opts) {
  133. console.log("参数信息:", opts)
  134. /**
  135. * 判断终端是否占用状态
  136. * 判断占用终端设备的是不是用户自己
  137. */
  138. this.deviceId = opts.deviceId
  139. this.deviceStatus = opts.deviceStatus
  140. },
  141. onShow() {
  142. this.queryInChange(this.deviceId, this.deviceStatus);
  143. /**
  144. * 刷新用户信息
  145. */
  146. this.userInfo = this.$app.storage.get(this.$config.keyname.userInfo);
  147. if (!this.userInfo.phone) {
  148. this.$app.url.goto('/pages/login/login')
  149. return;
  150. }
  151. this.$api.login({
  152. "checkStatus": 1
  153. }).then(() => {
  154. this.userInfo = this.$app.storage.get(this.$config.keyname.userInfo);
  155. if (this.userInfo.ecId) {
  156. //查询该集团账户是否正常使用。
  157. this.$api.base("post", "/chargeApi/queryEcInfo", {
  158. "ecId": this.userInfo.ecId
  159. }, {}).then(res => {
  160. if (res.ecInfo && res.ecInfo.ecStatus == 1) {
  161. this.isEc = true;
  162. }
  163. })
  164. }
  165. })
  166. },
  167. mounted() {
  168. },
  169. data() {
  170. return {
  171. deviceId: 0,
  172. deviceStatus: 0,
  173. visit: '',
  174. personal: 1, // 1 个人订单 2 集团订单
  175. isEc: false, //是否集团的用户
  176. nowPriceTime: {}, //当前价格时间段信息
  177. deviceInfo: {}, //充电桩的信息
  178. accountInfo: { //账户信息
  179. balance: 0, //可用抵用券余额
  180. },
  181. userInfo: {},
  182. stationInfo: {}, //站点信息
  183. orderInfo: {}, //临时订单信息
  184. checkNum: 0, //检测订单状态次数
  185. ecInfo: {}, //集团信息
  186. discountInfo: null ,//优惠信息
  187. selectedImg:'https://hyxhsh.oss-cn-chengdu.aliyuncs.com/63b7c68b71a69169d1b33f92/store/bdb/user/avatar/AwQTRxpEMqOG50293e26d86888b3e0f7324c429d2019.png/1.png',
  188. defaultImg:'https://hyxhsh.oss-cn-chengdu.aliyuncs.com/63b7c68b71a69169d1b33f92/store/bdb/user/avatar/SPh1u3KAqte830a107b2e3c5033b1d1027516d84d780.png/1.png'
  189. }
  190. },
  191. methods: {
  192. //通过用户id查询是否还有在充电中的订单
  193. queryInChange(deviceId, deviceStatus) {
  194. if (deviceStatus == 3 || deviceStatus == 4) {
  195. //占用充电状态;终端占用且不是自己,进入访问模式
  196. this.visit = true;
  197. }
  198. this.getDeviceInfo(deviceId); //获取设备、站的详情信息
  199. this.getAccountInfo(); //获取账户信息
  200. /* this.$api.base("post","/chargeApi/queryInChangeByUserId",{},{}).then(res=>{
  201. if(res.isChange == 1){
  202. this.orderInfo = res.orderInfo;
  203. //用户有充电中的订单
  204. //if(res.orderInfo.deviceId == deviceId){
  205. // 跳转
  206. this.$app.url.goto('/pages/charging/charging?orderId='+this.orderInfo.id+"&deviceId="+deviceId,false);
  207. //}
  208. }else{
  209. }
  210. }) */
  211. },
  212. //获取设备的详情信息
  213. getDeviceInfo(deviceId) {
  214. this.$api.base("post", "/chargeApi/getDevicesDetial", {
  215. "deviceId": deviceId
  216. }, {}).then(res => {
  217. this.deviceInfo = res.device;
  218. this.nowPriceTime = res.nowPriceTime;
  219. this.stationInfo = res.stationInfo;
  220. if (res.discountInfo) {
  221. this.discountInfo = res.discountInfo
  222. }
  223. if (this.deviceInfo.tipsStatus == 1) {
  224. this.$app.popup.alert(this.deviceInfo.tipsContent, "温馨提示");
  225. }
  226. })
  227. },
  228. //获取账户信息
  229. getAccountInfo() {
  230. if (this.personal == 1) {
  231. //获取个人账户信息
  232. this.$api.base("post", "/chargeApi/getUserAccount", {}, {}).then(res => {
  233. this.accountInfo.balance = res.userAccount.balance;
  234. })
  235. } else {
  236. //获取集团账户信息
  237. this.$api.base("post", "/chargeApi/getEcUserAccount", {}, {
  238. error: false
  239. }).then(res => {
  240. this.ecInfo = res.ecInfo;
  241. this.accountInfo.balance = res.ecUserAccount.balance;
  242. }).catch(err => {
  243. this.accountInfo.balance = 0;
  244. this.$app.popup.alert(err.msg, "温馨提示");
  245. })
  246. }
  247. },
  248. //切换账户
  249. changeAccount(type) {
  250. if (this.personal == type) {
  251. return;
  252. }
  253. this.personal = type;
  254. this.getAccountInfo();
  255. },
  256. //当前集团折扣价
  257. getCurrEcPrice() {
  258. if (!this.nowPriceTime) {
  259. return 0;
  260. }
  261. var currEcP = this.nowPriceTime.price;
  262. if (this.ecInfo && this.ecInfo.ecDiscount) {
  263. var realServicePrice = this.nowPriceTime.servicePrice
  264. if (this.stationInfo.contractServicePrice) {
  265. realServicePrice = this.stationInfo.contractServicePrice
  266. }
  267. currEcP = (this.nowPriceTime.electrovalence + realServicePrice + this.nowPriceTime.addServicePrice *
  268. this.ecInfo.ecDiscount / 100);
  269. }
  270. console.log("dddd", currEcP)
  271. if (currEcP) {
  272. currEcP = currEcP.toFixed(2);
  273. }
  274. return Number(currEcP).toFixed(4);
  275. },
  276. //转换出电压值
  277. getVolt() {
  278. if (!this.deviceInfo.power) {
  279. return 0;
  280. }
  281. var v = this.deviceInfo.power / this.deviceInfo.current * 1000;
  282. return v;
  283. },
  284. //映射 峰 平 谷
  285. getPriceLable(type) {
  286. //时间类型 1 谷 2 平 3 峰
  287. var str = "";
  288. switch (type) {
  289. case 1:
  290. str = "谷";
  291. break;
  292. case 2:
  293. str = "平";
  294. break;
  295. case 3:
  296. str = "峰";
  297. break;
  298. }
  299. return str;
  300. },
  301. //映射订单状态名称()
  302. getDeviceStatusLable(status) {
  303. //设备状态 0:离网1:空闲2:占用(未充电)3:占用(充电中)4:占用(预约锁定)255:故障
  304. var str = "";
  305. switch (status) {
  306. case 0:
  307. str = "离网";
  308. break;
  309. case 1:
  310. str = "空闲";
  311. break;
  312. case 2:
  313. str = "占用";
  314. break;
  315. case 3:
  316. str = "占用";
  317. break;
  318. case 4:
  319. str = "占用";
  320. break;
  321. case 255:
  322. str = "故障";
  323. break;
  324. }
  325. return str;
  326. },
  327. startup() {
  328. if (this.visit) {
  329. this.$app.popup.alert("该充电枪被占用或存在异常,请重新尝试或更换其他充电枪。", "温馨提示");
  330. return;
  331. }
  332. //判断账户余额是否大于两元
  333. if ((this.accountInfo.balance - 3) <= 0) {
  334. return this.$app.popup.confirm("无法启动充电,抵扣余量需大于3元,请先购买充电券!", "温馨提示!", {
  335. confirmText: "立即购券"
  336. }).then(confirm => {
  337. if (confirm) {
  338. this.$app.url.goto('/pages/coupon-buy/coupon-buy', true);
  339. }
  340. });
  341. }
  342. //统一下单并启动接口
  343. this.startChangeAndOrder();
  344. },
  345. // 主动发起购券操作
  346. gotoCouponBuy(){
  347. this.$app.url.goto('/pages/coupon-buy/coupon-buy', true);
  348. },
  349. //统一下单并启动接口
  350. startChangeAndOrder() {
  351. var obj = {
  352. userId: this.userInfo.id,
  353. deviceId: this.deviceInfo.id,
  354. orderType: this.personal == 2 ? 2 : 1, //订单类型 1 个人订单 2 集团订单
  355. }
  356. this.$api.base("post", "/chargeApi/startChangeAndOrder", obj, {}).then(res => {
  357. //下单成功,并进行了订单预充值
  358. this.orderInfo = res.orderInfo;
  359. if (res.flg && res.flg == 1) {
  360. //用户有充电中的订单
  361. this.$app.popup.confirm("您有一个进行中充电订单,不可再次启动。", null, {
  362. showCancel: false,
  363. confirmText: "查看订单"
  364. }).then(cres => {
  365. this.$app.url.goto('/pages/charging/charging?orderId=' + this.orderInfo.id +
  366. "&deviceId=" + this.deviceInfo.id, false);
  367. });
  368. } else {
  369. //正常启动充电订单
  370. this.$app.url.goto('/pages/charging/charging?orderId=' + this.orderInfo.id + "&deviceId=" +
  371. this.deviceInfo.id, false);
  372. }
  373. //this.$app.popup.loading(true,{title:"启动中...."})
  374. //延迟5s查询一下订单,看看是否真的启动成功
  375. //setTimeout(()=>this.checkedStartStatus(),5000);
  376. })
  377. },
  378. /* // 通过充电桩编号(sn)检测该设备是否插枪,是否可以进行后续的下单,启动操作
  379. checkDeviceReady(){
  380. this.$api.base("post","/chargeApi/checkDeviceReady",{"sn":this.deviceInfo.deviceNo},{}).then(res=>{
  381. if(res.code == 0){
  382. //充电桩已经插枪准备好了,可以进行下单充值操作
  383. this.chargeAndOrder();
  384. }
  385. })
  386. },
  387. // 进行下单,并进行接口充值,准备启动充电
  388. chargeAndOrder(){
  389. var obj = {
  390. userId : this.userInfo.id,
  391. deviceId : this.deviceInfo.id,
  392. orderType : this.personal == 2 ? 2 : 1,//订单类型 1 个人订单 2 集团订单
  393. }
  394. this.$api.base("post","/chargeApi/chargeAndOrder",obj,{}).then(res=>{
  395. if(res.code == 0){
  396. //下单成功,并进行了订单预充值
  397. this.orderInfo = res.orderInfo;
  398. //通知已经充值成功,可以进行设备充电的启动
  399. this.changePayAndStart();
  400. }
  401. })
  402. },
  403. // 支付成功启动充电通知
  404. changePayAndStart(){
  405. this.$api.base("post","/chargeApi/changePayAndStart",{"id":this.orderInfo.id},{}).then(res=>{
  406. if(res.code == 0){
  407. this.$app.popup.loading(ture,{title:"启动中...."})
  408. //延迟5s查询一下订单,看看是否真的启动成功
  409. setTimeout(()=>this.checkedStartStatus(),5000);
  410. }
  411. })
  412. }, */
  413. // 延迟5s查询一下订单,看看是否真的启动成功
  414. checkedStartStatus() {
  415. this.$api.base("post", "/chargeApi/checkedStartStatus", {
  416. "id": this.orderInfo.id
  417. }, {}).then(res => {
  418. if (res.code == 0) {
  419. var respObj = res.obj;
  420. if (respObj.code == 200) {
  421. if (respObj.status == 1) {
  422. uni.hideLoading();
  423. //状态为1说明正常启动
  424. this.$app.url.goto('/pages/charging/charging?orderId=' + this.orderInfo.id +
  425. "&deviceId=" + this.deviceInfo.id, false);
  426. } else {
  427. //其他状态,说明充电桩,未启动。或其他问题,需要再次进行进行验证
  428. if (this.checkNum < 20) {
  429. this.checkNum = this.checkNum + 1;
  430. //延迟2s查询一下订单,看看是否真的启动成功
  431. setTimeout(() => this.checkedStartStatus(), 2000);
  432. }
  433. }
  434. } else {
  435. uni.hideLoading();
  436. this.$app.popup.alert(respObj.msg, "温馨提示");
  437. }
  438. } else {
  439. uni.hideLoading();
  440. }
  441. })
  442. },
  443. }
  444. }
  445. </script>
  446. <style scoped>
  447. @import url("terminal.css");
  448. </style>