14 lines
1.0 KiB
Plaintext
14 lines
1.0 KiB
Plaintext
<view bind:tap="handlePopup" class="btn-popup">
|
|
<oak-icon type="fas" name="chevron-up" />
|
|
</view>
|
|
<wux-popup visible="{{visible}}" bind:close="onClose" position="bottom" closable="true">
|
|
<view class="block block--bottom">
|
|
<view class="btn-box">
|
|
<wux-button bind:click="printRunningTree" wux-class="btn-item" type="royal" size="small" shape="circle">R</wux-button>
|
|
<wux-button bind:click="printDebugStore" wux-class="btn-item" type="royal" size="small" shape="circle">S</wux-button>
|
|
<wux-button bind:click="printCachedStore" wux-class="btn-item" type="royal" size="small" shape="circle">C</wux-button>
|
|
<wux-button bind:click="showDialog" wux-class="btn-item" type="assertive" size="small" shape="circle">Reset</wux-button>
|
|
</view>
|
|
</view>
|
|
</wux-popup>
|
|
<wux-dialog visible="{{dialogVisible}}" title="重置数据" content="重置后,原来的数据不可恢复" cancel-btn="取消" confirm-btn="确定" bind:cancel="closeDialog" bind:confirm="handleReset" /> |