|
@@ -146,35 +146,49 @@
|
146
|
146
|
},
|
147
|
147
|
}, {
|
148
|
148
|
click: () => {
|
149
|
|
- uni.showLoading({
|
150
|
|
- mask: true,
|
151
|
|
- title: '加载中'
|
152
|
|
- })
|
153
|
|
- reqLogout2()
|
154
|
|
- .then((data) => {
|
155
|
|
- uni.hideLoading();
|
156
|
|
- if (data.status == 200) {
|
157
|
|
- this.$refs.seiminModel.close();
|
158
|
|
- this.$refs.seiminModel.show({
|
159
|
|
- skin: "toast",
|
160
|
|
- icon: "success",
|
161
|
|
- content: "退出成功",
|
162
|
|
- btns: [{
|
163
|
|
- click: () => {
|
164
|
|
- uni.reLaunch({
|
165
|
|
- url: '/pages/login/login'
|
166
|
|
- })
|
167
|
|
- }
|
168
|
|
- }]
|
169
|
|
- });
|
170
|
|
- } else {
|
171
|
|
- this.$refs.seiminModel.show({
|
172
|
|
- skin: "toast",
|
173
|
|
- icon: "error",
|
174
|
|
- content: data.error || "退出失败",
|
175
|
|
- });
|
|
149
|
+ // 在同济后端的退出接口调不通,先用假退出,后期后端调整后自行修改
|
|
150
|
+ this.$refs.seiminModel.close();
|
|
151
|
+ this.$refs.seiminModel.show({
|
|
152
|
+ skin: "toast",
|
|
153
|
+ icon: "success",
|
|
154
|
+ content: "退出成功",
|
|
155
|
+ btns: [{
|
|
156
|
+ click: () => {
|
|
157
|
+ uni.reLaunch({
|
|
158
|
+ url: '/pages/login/login'
|
|
159
|
+ })
|
176
|
160
|
}
|
177
|
|
- });
|
|
161
|
+ }]
|
|
162
|
+ });
|
|
163
|
+ // uni.showLoading({
|
|
164
|
+ // mask: true,
|
|
165
|
+ // title: '加载中'
|
|
166
|
+ // })
|
|
167
|
+ // reqLogout2()
|
|
168
|
+ // .then((data) => {
|
|
169
|
+ // uni.hideLoading();
|
|
170
|
+ // if (data.status == 200) {
|
|
171
|
+ // this.$refs.seiminModel.close();
|
|
172
|
+ // this.$refs.seiminModel.show({
|
|
173
|
+ // skin: "toast",
|
|
174
|
+ // icon: "success",
|
|
175
|
+ // content: "退出成功",
|
|
176
|
+ // btns: [{
|
|
177
|
+ // click: () => {
|
|
178
|
+ // uni.reLaunch({
|
|
179
|
+ // url: '/pages/login/login'
|
|
180
|
+ // })
|
|
181
|
+ // }
|
|
182
|
+ // }]
|
|
183
|
+ // });
|
|
184
|
+ // } else {
|
|
185
|
+ // this.$refs.seiminModel.show({
|
|
186
|
+ // skin: "toast",
|
|
187
|
+ // icon: "error",
|
|
188
|
+ // content: data.error || "退出失败",
|
|
189
|
+ // });
|
|
190
|
+ // }
|
|
191
|
+ // });
|
178
|
192
|
},
|
179
|
193
|
}, ],
|
180
|
194
|
})
|