Commit 061a9133ca5420d3f16609d1e9e19167011d2b6d

Authored by sqy
1 parent 16484f0c

fix:修复图表数据多了之后挤在一起的问题,修改成可以滚动

... ... @@ -29,10 +29,11 @@
29 29 canvas2d
30 30 canvasId="daskujdhasljkdcnzjkdfhuoqwlqwjhkdsamjczxnmdasd123321"
31 31 :chartData="chartData"
32   - :opts="{ xAxis: { disabled: true }, legend: { show: false } }"
  32 + :ontouch="true"
  33 + :opts="{ xAxis: { disabled: true, itemCount: 6, scrollShow: true }, legend: { show: false }, enableScroll: true }"
33 34 />
34 35 </view>
35   - <mescroll-empty v-if="!historyData.length"/>
  36 + <mescroll-empty v-if="!historyData.length" />
36 37 </view>
37 38 <view class="historyData-bottom" v-show="historyData.length">
38 39 <view class="table">
... ... @@ -306,7 +307,8 @@ export default {
306 307 this.timeData.getTimeGap = '';
307 308 this.timeData.getType = '';
308 309 this.startTs = formatToDate(date[0], 'x');
309   - this.endTs = formatToDate(date[date.length - 1], 'x');
  310 + // 最后时间的最后一秒
  311 + this.endTs = formatToDate(`${date[date.length - 1]} 23:59:59`, 'x');
310 312 },
311 313 calendarClose() {
312 314 this.showCalendar = false;
... ...