You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
5 months ago
|
<view>
|
||
|
<view class="container">
|
||
|
<canvas canvas-id="ecgCanvas" style="width: 90%; height: 200px; border: 1px solid black;"></canvas>
|
||
|
</view>
|
||
|
<button bind:tap="startECG">继续</button>
|
||
|
<button bind:tap="stopECG">停止</button>
|
||
|
<button bind:tap="drawFullECG">绘制完整的心电图</button>
|
||
|
<button bind:tap="saveCanvasAsImage">保存心电图</button>
|
||
|
总结点:{{totalReceivedNodes}}
|
||
|
消费节点:{{totalConsumedNodes}}
|
||
|
<scroll-view scroll-x="true" style="width: 90%; height: 200px;display: flex;flex-wrap: nowrap;">
|
||
|
<!-- <canvas canvas-id="wanzheng" style="width: 50000px; height: 200px; border: 1px solid black"></canvas> -->
|
||
|
<view style="width:{{canvasList.length * 1000}}px;height:auto;display:flex;flex-wrap: nowrap;">
|
||
|
<block wx:for="{{canvasList}}" wx:key="index">
|
||
|
<canvas
|
||
|
canvas-id="{{item.canvasId}}"
|
||
|
style="width: 800px; height: 200px;margin:0px;padding:0px"
|
||
|
data-index="{{index}}"
|
||
|
></canvas>
|
||
|
</block>
|
||
|
</view>
|
||
|
</scroll-view>
|
||
|
<canvas canvas-id="targetCanvas" style="width:{{xuanranCss.width}}px;height:{{xuanranCss.height}}px"></canvas>
|
||
|
</view>
|