12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="main pt0">
- <button class="btn" @click="exit()">退出登陆</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {
- exit() {
- uni.showModal({
- title: '提示',
- content: '确定退出登陆?',
- success: (res) => {
- if (res.confirm) {
- this.http.request({
- url: this.getUser().doctor ? '/logout' : '/app/user/exit',
- success: (res) => {
- uni.removeStorageSync('user');
- uni.navigateBack();
- }
- });
- }
- }
- });
- }
- }
- };
- </script>
- <style lang="scss"></style>
|