system-clients 3.2.89 → 3.2.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/components/Main.vue
CHANGED
@@ -601,7 +601,10 @@ let createWaterMark = function (userName) {
|
|
601
601
|
usertelephone: this.$login.f.f_user_telephone
|
602
602
|
}
|
603
603
|
// todo v4
|
604
|
-
|
604
|
+
try {
|
605
|
+
await this.$resetget('api/af-system/user/logout', {resolveMsg: '退出成功', rejectMsg: null})
|
606
|
+
}catch(e){
|
607
|
+
}
|
605
608
|
window.location.reload()
|
606
609
|
}
|
607
610
|
})
|
@@ -295,7 +295,7 @@ export default {
|
|
295
295
|
username: this.$login.f.name,
|
296
296
|
usertelephone: this.$login.f.f_user_telephone
|
297
297
|
}
|
298
|
-
await this.$resetpost('
|
298
|
+
await this.$resetpost('api/af-system/user/logout', data, {resolveMsg: '退出成功', rejectMsg: null})
|
299
299
|
window.location.reload()
|
300
300
|
}
|
301
301
|
})
|