diff --git a/uniapp/pages/dev/example/UserGzh/UserGzh.vue b/uniapp/pages/dev/example/UserGzh/UserGzh.vue index 8690149..74a9362 100644 --- a/uniapp/pages/dev/example/UserGzh/UserGzh.vue +++ b/uniapp/pages/dev/example/UserGzh/UserGzh.vue @@ -13,42 +13,14 @@ } from '@/api' const wxGetUserInfo = (res) => { let appid = GzhConfig.id - let state = encodeURIComponent(GzhConfig.auth) - let redirect_uri = encodeURIComponent(GzhConfig.jump); - const url = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + appid + '&redirect_uri=' + - redirect_uri + '&response_type=code&scope=snsapi_base&state=' + state + '#wechat_redirect'; - window.location = url; - } - - const drawer_ref = ref(null) - const drawerRef = (e) => { - drawer_ref.value = e - } - - const copyContent = () => { - uni.setClipboardData({ - data: user_code.value - }) - } - const WeChatLoginTest = async () => { - let appid = uni.$lu.config.gzh_id - let state = encodeURIComponent(uni.$lu.config.login) - let redirect_uri = encodeURIComponent(OpenGzhAuthUrl); + let state = encodeURIComponent(GzhConfig.jump) + let redirect_uri = encodeURIComponent(GzhConfig.auth); const url = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + appid + '&redirect_uri=' + redirect_uri + '&response_type=code&scope=snsapi_base&state=' + state + '#wechat_redirect'; window.location = url; }