You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< script setup >
/**
* name:
* user: sa0ChunLuyu
* date: 2022-04-20 09:02:17
*/
import {
ref
} from 'vue'
const user _code = ref ( '' )
const wxGetUserInfo = ( res ) => {
if ( ! res . detail . iv ) {
uni . $lu . toast ( "您取消了授权,登录失败" ) ;
return false ;
}
uni . login ( {
provider : 'weixin' ,
success : ( loginRes ) => {
let d = loginRes
user _code . value = JSON . stringify ( d , null , 4 )
drawer _ref . value . open ( )
} ,
} ) ;
}
const drawer _ref = ref ( null )
const drawerRef = ( e ) => {
drawer _ref . value = e
}
const copyContent = ( ) => {
uni . setClipboardData ( {
data : user _code . value
} )
}
< / script >
< template >
< uni -drawer :ref ="drawerRef" mode = "right" >
< view class = "navbar_wrapper" > < / view >
< textarea :maxlength ="-1" class = "textarea_wrapper" v-model ="user_code" />
<button size="mini" @click="copyContent()">复制</button>
</uni-drawer>
<uni-section title="用户Code" type="line">
<view class="uni-ma-5 uni-pb-5 example_item_wrapper">
<button size="mini" open-type="getUserInfo" @getuserinfo="wxGetUserInfo"
withCredentials="true" > 获 取 Code < / button >
< / view >
< / uni -section >
< / template >
< style scoped >
. textarea _wrapper {
margin - top : 100 rpx ;
height : 400 rpx ;
}
< / style >