qsh 3 weeks ago
parent 187c156e88
commit cad9fbb0e0
  1. 2
      src/api/login/index.ts
  2. 9
      src/views/Login/MPLogin.vue

@ -74,7 +74,7 @@ export const getAppInfo = (instanceId: number) => {
export const bindWx = (data: any) => {
return request.post({
url: '/admin-api/system/user/bing/wx',
url: '/admin-api/system/user/bind/wx',
data
})
}

@ -9,9 +9,9 @@
<el-input v-model="form.password" placeholder="请输入密码" show-password type="password" />
</el-form-item>
</el-form>
<el-button type="primary" :disabled="formLoading" class="w-full" @click="onSubmit"
>授权登陆</el-button
>
<el-button type="primary" :disabled="formLoading" class="w-full" @click="onSubmit">
授权登陆
</el-button>
</div>
</template>
@ -44,6 +44,7 @@ const params = ref({
// state:'code', // a-zA-Z0-9128
})
const formLoading = ref(false)
async function onSubmit() {
// code
if (!form.value.code) {
@ -59,9 +60,9 @@ async function onSubmit() {
try {
await bindWx(form.value)
message.success('绑定成功')
window.close()
} catch (error) {
console.log(error)
message.success('绑定失败')
} finally {
formLoading.value = false
}

Loading…
Cancel
Save