|
|
@@ -1,6 +1,7 @@
|
|
|
<template>
|
|
|
<div class="app-content">
|
|
|
<form @submit="formSubmit">
|
|
|
+ <view style="color:red;background-color: white;font-size:32upx;font-weight:bold;text-align: center;padding:0 5upx 20upx 5upx;">零售花店和个人,请勿注册,注册了也不会审核通过,零售花店需要系统请加微信:<text style="color:#3385FF;text-decoration: underline;" @click="copyWechat('18559200768')">18559200768</text></view>
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
|
<view style="color:red;background-color: white;font-size:36upx;font-weight:bold;text-align: center;">注册需邀请码,没有邀请码无法注册</view>
|
|
|
<!-- #endif -->
|
|
|
@@ -337,6 +338,19 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
+ },
|
|
|
+ copyWechat(wechatId){
|
|
|
+ uni.setClipboardData({
|
|
|
+ data: wechatId,
|
|
|
+ success: () => {
|
|
|
+ // #ifndef MP-WEIXIN
|
|
|
+ this.$msg('复制成功');
|
|
|
+ // #endif
|
|
|
+ },
|
|
|
+ fail: () => {
|
|
|
+ this.$msg('复制失败');
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
watch: {
|