New Huajishe Check ChaoXing

This commit is contained in:
e2hang
2025-10-01 10:01:52 +08:00
parent 240b884eac
commit 80be8ae3cf
1094 changed files with 61709 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<import src="../../common/template/button.wxml" />
<wxs src="../../common/utils.wxs" module="_" />
<template name="draggable">
<t-draggable
id="draggable"
style="right: 16px; bottom: 32px; {{_._style([style, customStyle, moveStyle])}}"
direction="{{draggable === true ? 'all' : draggable}}"
bind:start="onStart"
bind:move="onMove"
bind:end="onEnd"
>
<template is="button" data="{{...buttonData}}" />
</t-draggable>
</template>

View File

@@ -0,0 +1,11 @@
<import src="../../common/template/button.wxml" />
<wxs src="../../common/utils.wxs" module="_" />
<template name="view">
<view
class="{{classPrefix}} class {{prefix}}-class"
style="right: 16px; bottom: 32px; {{_._style([style, customStyle])}}"
>
<template is="button" data="{{...buttonData}}" />
</view>
</template>