细节修改

This commit is contained in:
kron
2025-09-28 14:48:19 +08:00
parent caa70b16f4
commit 889e87d3e9

View File

@@ -92,6 +92,18 @@ const toDeviceIntroPage = () => {
const backToHome = () => { const backToHome = () => {
uni.navigateBack(); uni.navigateBack();
}; };
const copyEmail = () => {
uni.setClipboardData({
data: "shelingxingqiu@163.com",
success: () => {
uni.showToast({
title: "邮箱已复制",
icon: "success",
});
},
});
};
</script> </script>
<template> <template>
@@ -123,7 +135,10 @@ const backToHome = () => {
mode="widthFix" mode="widthFix"
/> />
<text>已被绑定的弓箭无法再次绑定</text> <text>已被绑定的弓箭无法再次绑定</text>
<view>联系在线客服</view> <view>
<text>如有任何疑问请随时联系</text>
<button hover-class="none" @click="copyEmail">shelingxingqiu@163.com</button>
</view>
</view> </view>
</ScreenHint> </ScreenHint>
<ScreenHint <ScreenHint
@@ -253,9 +268,18 @@ const backToHome = () => {
margin-bottom: 10px; margin-bottom: 10px;
font-size: 32rpx; font-size: 32rpx;
} }
.scan-tips > view {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.scan-tips > view:last-child { .scan-tips > view:last-child {
color: #39a8ff;
margin-top: 5px; margin-top: 5px;
font-size: 26rpx;
}
.scan-tips > view:last-child > button {
font-size: 30rpx;
color: #39a8ff;
} }
.scan-tips > image { .scan-tips > image {
width: 100%; width: 100%;