<text style="color: #0075F7;">{{completeUrl}}</text> <u-button type="primary" @click="copyUrl(completeUrl)">復制URL</u-button>
copyUrl(url) { uni.showModal({ content: url, confirmText: '復制內容', success: () => { uni.setClipboardData({ data: url, success: function() { uni.hideToast({ title: '復制成功', duration: 2000, icon: 'none' }); }, fail: function(err) { uni.showToast({ title: '復制失敗', duration: 2000, icon: 'none' }); } }); } }); },