123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <view class="page">
- <view class="page__hd">
- <view class="page__title">Alert</view>
- <view class="page__desc">警告框</view>
- </view>
- <view class="page__bd page__bd_spacing">
- <view class="sub-title">Theme</view>
- <wux-alert theme="light" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="stable" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="positive" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="calm" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="assertive" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="balanced" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="energized" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="royal" title="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert theme="dark" title="https://github.com/wux-weapp/wux-weapp" />
- <view class="sub-title">Closable</view>
- <wux-alert closable title="微信小程序自定义组件" label="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert closable title="微信小程序自定义组件" label="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert closable title="微信小程序自定义组件" label="https://github.com/wux-weapp/wux-weapp" />
- <view class="sub-title">Thumb</view>
- <wux-alert thumb="http://cdn.skyvow.cn/logo.png" label="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert thumb="http://cdn.skyvow.cn/logo.png" label="https://github.com/wux-weapp/wux-weapp" />
- <wux-white-space />
- <wux-alert thumb="http://cdn.skyvow.cn/logo.png" label="https://github.com/wux-weapp/wux-weapp" />
- <view class="sub-title">Slot</view>
- <wux-alert theme="balanced">
- <wux-icon wux-class="thumb" type="ios-checkmark-circle-outline" size="20" color="#fff" slot="header" />
- <text>微信小程序自定义组件</text>
- <wux-icon wux-class="close" type="ios-close-circle-outline" size="20" color="#fff" slot="footer" />
- </wux-alert>
- <wux-white-space />
- <wux-alert theme="energized">
- <wux-icon wux-class="thumb" type="ios-alert" size="20" color="#fff" slot="header" />
- <text>微信小程序自定义组件</text>
- </wux-alert>
- <wux-white-space />
- <wux-alert theme="assertive">
- <wux-icon wux-class="thumb" type="ios-close-circle-outline" size="20" color="#fff" slot="header" />
- <text>微信小程序自定义组件</text>
- </wux-alert>
- </view>
- </view>
|