updata
This commit is contained in:
parent
9d4bf4ea67
commit
558e1dc42a
@ -432,7 +432,7 @@ export default {
|
|||||||
// 跳转到阿里云活动页面
|
// 跳转到阿里云活动页面
|
||||||
goAliyun() {
|
goAliyun() {
|
||||||
reqNewHomeFestival().then(res => {
|
reqNewHomeFestival().then(res => {
|
||||||
if (res.status) {
|
if (res.status === true) {
|
||||||
window.open(res.data)
|
window.open(res.data)
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(res.msg)
|
this.$message.warning(res.msg)
|
||||||
@ -1281,7 +1281,6 @@ $dark_gray: #889aa4;
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and(max-width: 760px) {
|
@media screen and(max-width: 760px) {
|
||||||
.password-mobile {}
|
|
||||||
|
|
||||||
.login-form {
|
.login-form {
|
||||||
width: 90% !important;
|
width: 90% !important;
|
||||||
|
|||||||
@ -330,8 +330,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
// 修复阿里云跳转逻辑
|
// 修复阿里云跳转逻辑
|
||||||
async handleAliyunProductClick() {
|
async handleAliyunProductClick(useid) {
|
||||||
try {
|
|
||||||
// 第一步:同步请求
|
// 第一步:同步请求
|
||||||
const syncResponse = await reqNewHomeSync();
|
const syncResponse = await reqNewHomeSync();
|
||||||
|
|
||||||
@ -339,19 +338,16 @@ export default {
|
|||||||
this.$message.warning(syncResponse.msg || '同步失败,请稍后重试');
|
this.$message.warning(syncResponse.msg || '同步失败,请稍后重试');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 第二步:获取跳转链接
|
// 第二步:获取跳转链接
|
||||||
const festivalResponse = await reqNewHomeFestival();
|
const festivalResponse = await reqNewHomeFestival();
|
||||||
|
console.log(festivalResponse);
|
||||||
|
|
||||||
if (festivalResponse.status && festivalResponse.data) {
|
if (festivalResponse.status && festivalResponse.data) {
|
||||||
window.open(festivalResponse.data);
|
window.open(festivalResponse.data);
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(festivalResponse.msg || '获取跳转链接失败');
|
this.$message.warning(festivalResponse.msg || '获取跳转链接失败');
|
||||||
}
|
}
|
||||||
} catch (error) {
|
|
||||||
console.error('阿里云跳转失败:', error);
|
|
||||||
this.$message.error('网络错误,请稍后重试');
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// 点击产品
|
// 点击产品
|
||||||
|
|||||||
@ -81,7 +81,8 @@ module.exports = {
|
|||||||
loaderOptions: {
|
loaderOptions: {
|
||||||
sass: {
|
sass: {
|
||||||
sassOptions: {
|
sassOptions: {
|
||||||
outputStyle: 'expanded'
|
outputStyle: 'expanded',
|
||||||
|
quietDeps: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user