mileage.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <template>
  2. <!-- pages/mileage/mileage.wxml -->
  3. <view class="container">
  4. <image src="/static/resource/images/BG.png" class="top-background"></image>
  5. <view class="top-box flex-row flex-around">
  6. <view style="visibility: hidden" class="stat-box">
  7. <view class="stat-value">
  8. {{ tools.toFixed(total_mil, 0) }}
  9. <text class="stat-tip">KM</text>
  10. </view>
  11. <view class="stat-name">累计里程</view>
  12. </view>
  13. <view style="visibility: hidden" class="stat-box">
  14. <view class="stat-value">
  15. {{ runing_day }}
  16. <text class="stat-tip">天</text>
  17. </view>
  18. <view class="stat-name">陪伴时间</view>
  19. </view>
  20. </view>
  21. <view class="name-box flex-row flex-start">
  22. <view class="name-i"></view>
  23. <view class="name-text">{{ name }}</view>
  24. </view>
  25. <view class="mil-chart">
  26. <!-- <ec-canvas id="mychart-dom-mil-bar" canvas-id="mychart-mil-bar" class="mil-chart" :ec="ecMilBar"></ec-canvas> -->
  27. </view>
  28. <view class="info-box">
  29. <view class="info-line flex-row flex-around">
  30. <view class="info-item">
  31. <view class="flex-row">
  32. <image src="/static/resource/images/t1.png" class="info-img"></image>
  33. <view class="info-value">
  34. {{ day_mil }}
  35. </view>
  36. <view class="info-tip">KM</view>
  37. </view>
  38. <view class="info-name">行驶里程</view>
  39. </view>
  40. <view class="info-item">
  41. <view class="flex-row">
  42. <image src="/static/resource/images/t2.png" class="info-img"></image>
  43. <view class="info-value">
  44. {{ tools.formatSeconds(runing_time)[0] }}
  45. </view>
  46. <view class="info-tip">{{ tools.formatSeconds(runing_time)[2] }}</view>
  47. <view v-if="tools.formatSeconds(runing_time).length > 3" class="info-value">
  48. {{ tools.formatSeconds(runing_time)[3] }}
  49. </view>
  50. <view v-if="tools.formatSeconds(runing_time).length > 3" class="info-tip">{{ tools.formatSeconds(runing_time)[5] }}</view>
  51. </view>
  52. <view class="info-name">行驶时间</view>
  53. </view>
  54. </view>
  55. <view class="info-line flex-row flex-around">
  56. <view class="info-item">
  57. <view class="flex-row">
  58. <image src="/static/resource/images/t3.png" class="info-img"></image>
  59. <view class="info-value">
  60. {{ runing_time == 0 ? 0 : tools.toFixed((day_mil * 3600) / runing_time, 2) }}
  61. </view>
  62. <view class="info-tip">KM/H</view>
  63. </view>
  64. <view class="info-name">平均速度</view>
  65. </view>
  66. <view class="info-item">
  67. <view class="flex-row">
  68. <image src="/static/resource/images/t4.png" class="info-img"></image>
  69. <view class="info-value">
  70. {{ max_speed }}
  71. </view>
  72. <view class="info-tip">KM/H</view>
  73. </view>
  74. <view class="info-name">最高速度</view>
  75. </view>
  76. </view>
  77. </view>
  78. <view style="height: 100rpx"></view>
  79. <view class="bottom-box flex-row flex-around">
  80. <view class="bottom-item" @tap="selectType" :data-type="0">
  81. <view class="bottom-name">天</view>
  82. <view :class="'bottom-tip ' + (type == 0 ? 'bottom-select' : '')"></view>
  83. </view>
  84. <view class="bottom-item" @tap="selectType" :data-type="1">
  85. <view class="bottom-name">周</view>
  86. <view :class="'bottom-tip ' + (type == 1 ? 'bottom-select' : '')"></view>
  87. </view>
  88. <view class="bottom-item" @tap="selectType" :data-type="2">
  89. <view class="bottom-name">月</view>
  90. <view :class="'bottom-tip ' + (type == 2 ? 'bottom-select' : '')"></view>
  91. </view>
  92. </view>
  93. <!--view class="text-item flex-row flex-between">
  94. <view class="item-titie">IMEI</view>
  95. <view class="item-value">{{ macid }}</view>
  96. </view>
  97. <view class="text-item flex-row flex-between">
  98. <view class="item-titie">{{ name }}</view>
  99. <view class="item-value">{{ name ? value+'km':'' }}</view>
  100. </view-->
  101. </view>
  102. </template>
  103. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  104. <script>
  105. // import ecCanvas from './ec-canvas';
  106. // pages/mileage/mileage.js
  107. var config = require('../../common/config.js');
  108. var http = require('../../common/http.js');
  109. var common = require('../../common/common.js');
  110. var storage = require('../../common/storage.js');
  111. // import * as echarts from 'ec-canvas/echarts';
  112. export default {
  113. components: {
  114. // ecCanvas
  115. },
  116. data() {
  117. return {
  118. macid: '',
  119. type: 0,
  120. milList: [],
  121. name: '',
  122. day_mil: 0,
  123. runing_time: 0,
  124. max_speed: 0,
  125. runing_day: 0,
  126. total_mil: 0,
  127. ecMilBar: {
  128. lazyLoad: true
  129. }
  130. };
  131. },
  132. /**
  133. * 生命周期函数--监听页面加载
  134. */
  135. onLoad: function (options) {
  136. if (!options.macid) {
  137. uni.navigateBack({
  138. delta: 1
  139. });
  140. }
  141. this.setData({
  142. macid: options.macid
  143. });
  144. },
  145. /**
  146. * 生命周期函数--监听页面初次渲染完成
  147. */
  148. onReady: function () {},
  149. /**
  150. * 生命周期函数--监听页面显示
  151. */
  152. onShow: function () {
  153. this.loadMileage();
  154. },
  155. /**
  156. * 生命周期函数--监听页面隐藏
  157. */
  158. onHide: function () {},
  159. /**
  160. * 生命周期函数--监听页面卸载
  161. */
  162. onUnload: function () {},
  163. /**
  164. * 页面相关事件处理函数--监听用户下拉动作
  165. */
  166. onPullDownRefresh: function () {},
  167. /**
  168. * 页面上拉触底事件的处理函数
  169. */
  170. onReachBottom: function () {},
  171. /**
  172. * 用户点击右上角分享
  173. */
  174. onShareAppMessage: function () {},
  175. methods: {
  176. loadMileage() {
  177. common.loading();
  178. http.postApi(
  179. config.API_BATTERY_MILLIST,
  180. {
  181. macid: this.macid,
  182. type: this.type,
  183. page: 1,
  184. size: 8
  185. },
  186. (resp) => {
  187. if (resp.data.code === 200) {
  188. uni.hideLoading();
  189. this.setData({
  190. milList: resp.data.data.list,
  191. runing_day: resp.data.data.runing_day,
  192. total_mil: resp.data.data.total_mil,
  193. name: resp.data.data.list.length > 0 ? this.timeName(resp.data.data.list[0].time) : '',
  194. day_mil: resp.data.data.list.length > 0 ? parseFloat(resp.data.data.list[0].day_mil) : 0,
  195. runing_time: resp.data.data.list.length > 0 ? parseInt(resp.data.data.list[0].runing_time) : 0,
  196. max_speed: resp.data.data.list.length > 0 ? parseFloat(resp.data.data.list[0].max_speed) : 0
  197. });
  198. this.initMilBar();
  199. } else {
  200. common.simpleToast(resp.data.msg);
  201. }
  202. }
  203. );
  204. },
  205. initMilBar() {
  206. // this.milBarComponent = this.zpSelectComponent('#mychart-dom-mil-bar');
  207. // this.milBarComponent.init((canvas, width, height) => {
  208. // const chart = echarts.init(canvas, null, {
  209. // width: width,
  210. // height: height
  211. // });
  212. // this.milBarChart = chart;
  213. // this.milBarChart.on('click', (params) => {
  214. // this.setData({
  215. // name: this.timeName(this.milList[this.milList.length - params.dataIndex - 1].time),
  216. // day_mil: parseFloat(this.milList[this.milList.length - params.dataIndex - 1].day_mil),
  217. // runing_time: parseInt(this.milList[this.milList.length - params.dataIndex - 1].runing_time),
  218. // max_speed: parseFloat(this.milList[this.milList.length - params.dataIndex - 1].max_speed)
  219. // });
  220. // });
  221. // this.setMilBarOptions();
  222. // return chart;
  223. // });
  224. },
  225. monthName(m) {
  226. var months = ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'];
  227. return months[parseInt(m) - 1];
  228. },
  229. timeName(time) {
  230. switch (this.type) {
  231. case 0:
  232. return common.DateFormat(new Date(time * 1000), 'MM-dd');
  233. case 1:
  234. return common.DateFormat(new Date(time * 1000), 'MM-dd') + '~' + common.DateFormat(new Date((parseInt(time) + 604800) * 1000), 'MM-dd');
  235. case 2:
  236. return this.monthName(common.DateFormat(new Date(time * 1000), 'M'));
  237. }
  238. },
  239. timeLabel(time) {
  240. switch (this.type) {
  241. case 0:
  242. return common.DateFormat(new Date(time * 1000), 'dd');
  243. case 1:
  244. return common.DateFormat(new Date(time * 1000), 'dd') + '~' + common.DateFormat(new Date((parseInt(time) + 604800) * 1000), 'dd');
  245. case 2:
  246. return this.monthName(common.DateFormat(new Date(time * 1000), 'M'));
  247. }
  248. },
  249. setMilBarOptions() {
  250. this.milBarChart.setOption({
  251. color: ['#07C58A'],
  252. grid: {
  253. top: '5%',
  254. left: '12%',
  255. right: '5%',
  256. bottom: '2%',
  257. containLabel: true
  258. },
  259. xAxis: {
  260. type: 'category',
  261. axisLine: {
  262. show: false
  263. },
  264. axisTick: {
  265. show: false
  266. },
  267. axisLabel: {
  268. fontStyle: 'italic',
  269. fontWeight: 500,
  270. fontFamily: 'DIN',
  271. fontSize: 10
  272. },
  273. data: this.milList.map((p) => this.timeLabel(p.time)).reverse()
  274. },
  275. yAxis: {
  276. type: 'value',
  277. splitNumber: 3,
  278. axisLine: {
  279. show: false
  280. },
  281. axisTick: {
  282. show: false
  283. },
  284. axisLabel: {
  285. //formatter: '{value}KM'
  286. formatter: function (value, index) {
  287. if (index % 2 == 0) {
  288. if (value == 0) {
  289. return '0';
  290. } else {
  291. return value.toString() + 'KM';
  292. }
  293. }
  294. return '';
  295. },
  296. fontStyle: 'italic',
  297. fontWeight: 500,
  298. fontFamily: 'DIN',
  299. fontSize: 10
  300. },
  301. splitLine: {
  302. lineStyle: {
  303. type: 'dashed'
  304. }
  305. }
  306. },
  307. series: [
  308. {
  309. data: this.milList.map((p) => parseFloat(p.day_mil)).reverse(),
  310. type: 'bar',
  311. itemStyle: {
  312. color: '#07C58A',
  313. barBorderRadius: [10, 10, 0, 0]
  314. },
  315. barWidth: '50%',
  316. barMaxWidth: '20'
  317. }
  318. ]
  319. /*xAxis: {
  320. type: 'value',
  321. axisLine: { show: false },
  322. axisLabel: { show: false },
  323. axisTick: { show: false },
  324. splitLine: { show: false }
  325. },
  326. grid: {
  327. top: 0,
  328. left: '5%',
  329. right: '2%',
  330. bottom: '2%',
  331. containLabel: true
  332. },
  333. yAxis: {
  334. type: 'category',
  335. axisLine: { show: false },
  336. axisLabel: { show: false },
  337. axisTick: { show: false },
  338. splitLine: { show: false },
  339. data: this.data.milList.map(p => common.DateFormat(new Date(p.time * 1000), 'yyyy-MM-dd'))
  340. },
  341. series: [{
  342. name: '',
  343. smooth: true,
  344. type: 'bar',
  345. label: {
  346. normal: {
  347. show: true,
  348. fontSize: 10,
  349. position: 'insideLeft',
  350. formatter: (obj) => {
  351. var name = obj.name
  352. if (name.length > 6) name = name.slice(0, 5) + '..'
  353. var value = obj.value
  354. if (value >= 10000) value = (value / 10000).toFixed(1) + '万'
  355. return name + ':' + value
  356. } //'{b}: {c}'
  357. }
  358. },
  359. itemStyle: {
  360. color: '#409EFF'
  361. },
  362. data: this.data.milList.map(p => parseFloat(p.day_mil)),
  363. animationDuration: 2800,
  364. animationEasing: 'cubicInOut'
  365. }]*/
  366. });
  367. },
  368. selectType(e) {
  369. if (e.currentTarget.dataset.type != this.type) {
  370. this.setData({
  371. type: e.currentTarget.dataset.type
  372. });
  373. this.loadMileage();
  374. }
  375. }
  376. }
  377. };
  378. </script>
  379. <style>
  380. @import './mileage.css';
  381. </style>