univerify-custom-page.uvue 6.7 KB
Newer Older
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
1 2 3 4
<template>
  <view class="container">
    <view class="safe_content">
      <text class="close_icon" @click="closePage">{{closeIcon}}</text>
5
      <text class="title">这是一个普通uvue的dialogPage页面</text>
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
6 7 8 9 10 11
      <view class="number">
        <text id="number-text" class="number-text" ref="number-text">{{phone}}</text>
        <text id="slogan-text" class="slogan-text">{{slogan}}</text>
      </view>
      <button id="login-button" class="login-button" @click="loginIn">本机号码一键登录</button>
      <view class="privacy">
12
        <checkbox id="privacy-checkbox" class="privacy-checkbox" ref="privacy-checkbox" :checked="false"></checkbox>
13
        <text class="privacy-normal-text">登录即同意</text>
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
        <text id="privacy-text" class="privacy-text" @click="openLink">{{privacyName}}</text>
      </view>
      <text class="other" @click="otherLogin">其他登录方式</text>
    </view>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        univerifyManager: null as UniverifyManager | null,
        phone: '',
        slogan: '',
        privacyName: '',
        privacyUrl: '',
        closeIcon: '\uE650'
      }
    },
    onLoad(options : OnLoadOptions) {
      this.univerifyManager = uni.getUniverifyManager();
      this.phone = options['phone'] as string;
      this.slogan = options['slogan'] as string;
      this.privacyName = options['name'] as string;
      this.privacyUrl = options['link'] as string;
    },
    methods: {
      closePage() {
42 43 44 45 46 47 48 49 50 51
        uni.closeDialogPage({
          dialogPage: this.$page,
          animationType:'slide-out-bottom',
          success(res) {
            console.log('closeThisDialog success', res)
          },
          fail(err) {
            console.log('closeThisDialog fail', err)
          }
        })
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
52 53
      },
      openLink() {
54
        let url = '/pages/API/get-univerify-manager/full-webview-page?url=' + this.privacyUrl + '&title=' + this.privacyName + '&animationType=slide-out-bottom';
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
55 56
        uni.openDialogPage({
          url: url,
57
          animationType: 'slide-in-bottom',
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
58 59 60 61 62 63 64 65 66 67
          success(res) {
            console.log("打开隐私协议");
          },
          fail(err) {
            console.log(err);
          }
        })

      },
      loginIn() {
68 69 70 71 72
        const numberTextElement = this.$page.getElementById('number-text');
        const sloganTextElement = this.$page.getElementById('slogan-text');
        const loginButtonElement = this.$page.getElementById('login-button');
        const privacyCheckBoxElement = this.$page.getElementById('privacy-checkbox');
        const privacyTextElement = this.$page.getElementById('privacy-text');
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
73 74 75 76 77 78 79

        this.univerifyManager?.customLogin({
          numberTextElement: numberTextElement!,
          sloganTextElement: sloganTextElement!,
          loginButtonElement: loginButtonElement!,
          privacyCheckBoxElement: privacyCheckBoxElement!,
          privacyTextElement: privacyTextElement!,
80
          success: (res) => {
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
81 82 83
            console.log(res);
            this.takePhoneNumber(res.accessToken, res.openId);
          },
84
          fail: (error) => {
85 86 87
            if (error.errCode == 40001){
              uni.showToast({
              	title:"请同意服务条款",
88
                position: "bottom",
89 90
              	duration:2000
              })
91 92 93
            }else if(error.errCode == 40002){
              uni.showToast({
              	title:"授权页不符合规范",
94
                position: "bottom",
95 96
              	duration:2000
              })
97 98 99 100
            }else{
               const errorMsg = JSON.parseObject(error.cause?.cause?.message ?? "")?.getString("errorDesc") ?? error.errMsg;
               uni.showToast({
               	title:errorMsg,
101
                position: "bottom",
102 103
               	duration:2000
               })
104

105
            }
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
          }
        })
      },
      takePhoneNumber(token : string, openId : string) {
        //云函数取号
        uniCloud.callFunction({
          name: 'univerify',
          data: {
            access_token: token, // 客户端一键登录接口返回的access_token
            openid: openId // 客户端一键登录接口返回的openid
          }
        }).then(res => {
          // 关闭登录页
          this.closePage();
          setTimeout(() => {
            uni.showModal({
              title: '取号成功',
              content: res.result.getJSON("res")?.getString("phoneNumber"),
              showCancel: false
            });
          }, 100);
        }).catch(err => {
          console.error(JSON.stringify(err));
          // 关闭登录页
          this.closePage();
          setTimeout(() => {
            uni.showModal({
              title: '取号失败',
              content: (err as Error).message,
              showCancel: false
            });
          }, 100);
        });
      },
      otherLogin() {
        //此处可实现其他登录方式
        uni.showToast({
143 144
          title: "使用其他方式登录",
          position: "bottom"
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
        })
      }
    }
  }
</script>

<style>
  .container {
    background-color: white;
    flex: 1;
    width: 100%;
  }

  .safe_content {
    padding-top: var(--status-bar-height);
    width: 100%;
    height: 100%;
  }

  .close_icon {
    left: 90%;
    top: 15px;
    font-family: uni-icon;
    font-size: 24px;
169
    /* font-weight: bold; */
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
  }

  .title {
    align-self: center;
    top: 20px;
  }

  .number {
    width: 100%;
    top: 25%;
    position: absolute;
    height: 120px;
  }

  .number-text {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    align-self: center;
    height: 30px;
  }

  .slogan-text {
    margin-top: 10px;
    width: 100%;
    font-size: 13px;
    text-align: center;
    align-self: center;
    color: gray;
    height: 20px;
  }

  .login-button {
    width: 80%;
    top: 40%;
    position: absolute;
    align-self: center;
    background-color: orangered;
    font-size: 16px;
    color: white;
  }

  .privacy {
214
    margin-top: 10px;
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
215 216 217
    flex-direction: row;
    flex-wrap: wrap;
    top: 45%;
218 219 220
    width: 100%;
    justify-content: center;
    align-self: center;
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
221 222 223 224 225 226 227 228
    position: absolute;
  }

  .privacy-checkbox {
    transform: scale(0.65);
  }

  .privacy-text {
229
    margin-top: 4px;
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
230
    color: #007aff;
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    font-size: 14px;
  }

  .privacy-normal-text {
    margin-top: 4px;
    color: gray;
    font-size: 14px;
  }

  .other {
    bottom: 7%;
    transform: translateY(50%);
    position: absolute;
    align-self: center;
    font-size: 14px;
  }
</style>