更新gitee链接,更新会员协议,更新开源协议

This commit is contained in:
JaylenTech
2021-12-29 22:00:12 +08:00
parent 8f1edabcb0
commit c4d9faf22b
3 changed files with 28 additions and 5 deletions

View File

@@ -62,3 +62,8 @@
<img alt="图鸟UI" src="https://tnuiimage.tnkjapp.com/gitee_introduce_file/bottom.jpg" width="380" />
</p>
# 版权信息
`TuniaoUI开源版`遵循`Apache`协议意味着您无需支付任何费用也无需授权即可将TuniaoUI开源版应用到您的产品中但是需要保留TuniaoUI的信息。

View File

@@ -57,7 +57,7 @@
<view class="tn-margin-left-sm tn-color-cyan tn-icon-link"></view>
</view>
</tn-list-cell>
<tn-list-cell :hover="true" :unlined="true" :radius="true" :fontSize="30">
<tn-list-cell :hover="true" :unlined="true" :radius="true" :fontSize="30" @click="copyGitee">
<view class="tn-flex tn-flex-col-center">
<view class="icon1__item--icon tn-flex tn-flex-row-center tn-flex-col-center tn-cool-bg-color-1 tn-color-white">
<view class="tn-icon-gitee"></view>
@@ -157,7 +157,14 @@
uni.navigateTo({
url: '/templatePage/life/plus/plus'
})
}
},
// 复制Gitee地址
copyGitee() {
uni.setClipboardData({
data: "https://gitee.com/TSpecific/tuniao-ui",
})
},
}
}
</script>

View File

@@ -35,7 +35,7 @@
</view>
<view class="plus-text">
<view class="tn-text-bold">图鸟北北微信号<text class="tn-text-bold tn-text-xxl">tnkewo</text> </view>
<view class="tn-text-bold">图鸟北北微信号<text class="tn-text-bold tn-text-xxl" @click="copyWechat">tnkewo</text> </view>
<view class="">如需入群可备注进微信群</view>
<view class="">如需合作可备注商业合作</view>
<view class="tn-margin-bottom-xl">如需会员可备注咨询会员</view>
@@ -63,7 +63,7 @@
<view class="plus-text">
<view class="tn-text-bold">使用手册 + 图片素材 + 意见反馈 + Bug提交</view>
<view class="tn-margin-bottom-xl">https://www.yuque.com/tuniao</view>
<view class="tn-margin-bottom-xl" @click="copyYuque">https://www.yuque.com/tuniao</view>
</view>
<view class="plus-text">
@@ -113,7 +113,18 @@
return {}
},
methods: {
// 复制语雀地址
copyYuque() {
uni.setClipboardData({
data: "https://www.yuque.com/tuniao",
})
},
// 复制微信号
copyWechat() {
uni.setClipboardData({
data: "tnkewo",
})
},
}
}
</script>