32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
<view class="page-container">
|
|
<view class="wrapper">
|
|
<text class="wrapper-title">预览打印效果</text>
|
|
|
|
<!-- 预览打印效果 -->
|
|
<view id="canvasWrapper" class="canvas-wrapper">
|
|
<canvas
|
|
type="2d"
|
|
id="canvasContent"
|
|
class="canvas-content"
|
|
style="width:{{boxWidth}}px;height:{{boxHeight}}px" />
|
|
</view>
|
|
|
|
<!-- 类型选择器和随机生成按钮 -->
|
|
<math-type-selector
|
|
current-type-name="{{currentModeName}}"
|
|
type-actions="{{typeActions}}"
|
|
bind:select="onSelectType"
|
|
bind:random="onRandom" />
|
|
</view>
|
|
<ad-custom unit-id="adunit-89cff2de998f1146"></ad-custom>
|
|
<view class="empty"></view>
|
|
</view>
|
|
<math-bottom-buttons
|
|
disabled="{{!hasContent}}"
|
|
bind:share="onShareAppMessage"
|
|
bind:export="exportToPrint" />
|
|
<share-guide-popup
|
|
show="{{showShareDialog}}"
|
|
bind:onClose="onCloseShareDialog"
|
|
bind:onShareSuccess="onShareSuccess" />
|