We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfc1857 commit 1dd033dCopy full SHA for 1dd033d
pages/API/clipboard/clipboard.vue
@@ -57,16 +57,22 @@
57
uni.setClipboardData({
58
data: data,
59
success: () => {
60
+ // 成功处理
61
+ // #ifdef MP-ALIPAY || MP-BAIDU || MP-TOUTIAO
62
uni.showModal({
63
content: '设置剪贴板成功',
64
showCancel: false
65
})
66
+ // #endif
67
},
68
fail: () => {
69
+ // 失败处理
70
71
72
content: '储存数据失败!',
73
74
75
76
}
77
});
78
pages/component/radio/radio.vue
@@ -4,7 +4,7 @@
4
<view class="uni-padding-wrap">
5
<view class="uni-title">默认样式</view>
6
<view>
7
- <label class="radio">
+ <label class="radio" style="margin-right: 30upx;">
8
<radio value="r1" checked="true" />选中
9
</label>
10
<label class="radio">
0 commit comments