This commit is contained in:
parent
2df680eb54
commit
6fe6651067
|
@ -140,41 +140,27 @@ const login = () => {
|
|||
.then((res) => {
|
||||
// let auth__code = env == "pc" ? res.auth_code : res.code;
|
||||
// console.log( 555,res, auth__code);
|
||||
http
|
||||
.post(`/api/sign_in/one_click_login?authCode=${res.auth_code}`)
|
||||
.then((response) => {
|
||||
if (response.code == 200) {
|
||||
tools.data.set("token", response.data.token);
|
||||
tools.data.set("type", 1);
|
||||
// console.log(1111, response);
|
||||
// this.loading = false;
|
||||
// // 登录成功
|
||||
// if (!response.data.is_bind) {
|
||||
// this.isShowBind = true;
|
||||
// this.tenantUserId = response.data.tenant_user_id;
|
||||
// } else {
|
||||
// var user = {
|
||||
// token: response.data.token,
|
||||
// name: response.data.name,
|
||||
// id: response.data.id,
|
||||
// };
|
||||
// tools.data.set("user", user);
|
||||
// this.$message.success("登录成功");
|
||||
// this.$router.replace("/home");
|
||||
// }
|
||||
|
||||
} else {
|
||||
// 跳转未绑定页面
|
||||
router.push({
|
||||
path: `error/noPermission`,
|
||||
});
|
||||
}
|
||||
});
|
||||
if (res.auth_code) {
|
||||
http
|
||||
.post(`/api/sign_in/one_click_login?authCode=${res.auth_code}`)
|
||||
.then((response) => {
|
||||
if (response.code == 200) {
|
||||
tools.data.set("token", response.data.token);
|
||||
tools.data.set("type", 1);
|
||||
// console.log(1111, response);
|
||||
} else {
|
||||
// 跳转未绑定页面
|
||||
router.push({
|
||||
path: `error/noPermission`,
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err);
|
||||
var token = getCookie("lytoken");
|
||||
// var token = '6b0e380b4a8f46baae4923f83faf670d';
|
||||
// var token = getCookie("lytoken");
|
||||
var token = '6b0e380b4a8f46baae4923f83faf670d';
|
||||
// console.log('token', token)
|
||||
if (!token) {
|
||||
window.location.href =
|
||||
|
|
|
@ -292,16 +292,16 @@ const data = reactive({
|
|||
width: "50",
|
||||
},
|
||||
{
|
||||
label: "补助类型",
|
||||
label: "服务类型",
|
||||
property: "bzlx",
|
||||
width: "100",
|
||||
},
|
||||
{
|
||||
label: "补助对象或条件",
|
||||
label: "服务对象或条件",
|
||||
property: "bzdx",
|
||||
},
|
||||
{
|
||||
label: "补助标准或内容",
|
||||
label: "服务标准或内容",
|
||||
property: "bzbz",
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue