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 _phone = ref ( '' )
const phoneLoginButtonClick = ( e ) => {
uni . login ( {
provider : 'weixin' ,
success : ( loginRes ) => {
let d = {
code : loginRes . code ,
iv : e . detail . iv ,
encrypted _data : e . detail . encryptedData ,
}
user _phone . 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 _phone . value
} )
}
< / script >
< template >
< uni -drawer :ref ="drawerRef" mode = "right" >
< view class = "navbar_wrapper" > < / view >
< textarea :maxlength ="-1" class = "textarea_wrapper" v-model ="user_phone" />
<button size="mini" @click="copyContent()">复制</button>
</uni-drawer>
<uni-section title="用户手机号" type="line">
<view class="uni-ma-5 uni-pb-5 example_item_wrapper">
<button size="mini" open-type="getPhoneNumber" @getphonenumber="phoneLoginButtonClick"
withCredentials="true" > 获 取 手 机 号 < / button >
< / view >
< / uni -section >
< / template >
< style scoped >
. textarea _wrapper {
margin - top : 100 rpx ;
height : 400 rpx ;
}
< / style >