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 _info = ref ( '' )
const updateUserInfo = ( res ) => {
wx . getUserProfile ( {
desc : '新用户完善用户资料' ,
success : ( res ) => {
let d = res . userInfo
user _info . 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 _info . value
} )
}
< / script >
< template >
< uni -drawer :ref ="drawerRef" mode = "right" >
< view class = "navbar_wrapper" > < / view >
< textarea :maxlength ="-1" class = "textarea_wrapper" v-model ="user_info" />
<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" class="open_type_button_wrapper" @tap="updateUserInfo" withCredentials="true" > 获 取 信 息 < / button >
< / view >
< / uni -section >
< / template >
< style scoped >
. textarea _wrapper {
margin - top : 100 rpx ;
height : 400 rpx ;
}
< / style >