|
|
@@ -1,29 +0,0 @@
|
|
|
-<!--底部按钮 在表单最末尾出现的按钮。 -->
|
|
|
-<template name='button'>
|
|
|
- <view class="button-default {{class}} safe-area-bottom" style="margin-top:{{margin}}rpx">
|
|
|
- <view class="button-default-content" catchtap="{{func || undefind}}" style="background:{{background||'linear-gradient(90deg,#5568F0 0%,#823BFF 100%)'}}">
|
|
|
- <text class="">{{text || '按钮'}}</text>
|
|
|
- <button form-type="submit" class="button-default-content-button"></button>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-</template>
|
|
|
-
|
|
|
-<!--底部悬浮按钮 置于屏幕底部悬浮于页面上面的按钮。 -->
|
|
|
-<template name='button-fixed'>
|
|
|
- <view class="button-fixed safe-area-bottom {{class}}">
|
|
|
- <view class="button-fixed-content" catchtap="{{func || undefind}}" style="background:{{background||'linear-gradient(90deg,#5568F0 0%,#823BFF 100%)'}}">
|
|
|
- <text class="">{{text || '按钮'}}</text>
|
|
|
- <button form-type="submit" class="button-fixed-content-button"></button>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-</template>
|
|
|
-
|
|
|
-<!--底部悬浮按钮 置于屏幕底部悬浮于页面上面的分开的按钮 -->
|
|
|
-<template name='button-check'>
|
|
|
- <view class="button-check safe-area-bottom {{class}}">
|
|
|
- <view class="button-check-content">
|
|
|
- <view class="button-check-left" style="border:2rpx solid {{color||'#3243BD'}};color:{{color || '#3243BD'}};display:{{display||'block'}}" bindtap="{{buttonLeft || 'buttonCheck'}}">{{text || '按钮'}}</view>
|
|
|
- <view class="button-check-right" style="background:{{background||'linear-gradient(90deg,#5568F0 0%,#823BFF 100%)'}}" bindtap="{{buttonRight || 'buttonSubmit'}}">{{btn || '按钮'}}</view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-</template>
|