延长云解压消息时长
This commit is contained in:
parent
f81f7ff3d2
commit
aa518076ea
File diff suppressed because one or more lines are too long
2
dist/index.html
vendored
2
dist/index.html
vendored
@ -1 +1 @@
|
|||||||
<!doctype html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><title>NEU小站</title><script defer="defer" src="/js/chunk-vendors.58aa9133.js"></script><script defer="defer" src="/js/app.7074f705.js"></script><link href="/css/chunk-vendors.c52e575a.css" rel="stylesheet"><link href="/css/app.01759f36.css" rel="stylesheet"></head><body><noscript><strong>抱歉,NEU小站无法在没有 JavaScript 的情况下正常工作。请启用 JavaScript 以继续。</strong></noscript><div id="app"></div></body></html>
|
<!doctype html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><title>NEU小站</title><script defer="defer" src="/js/chunk-vendors.58aa9133.js"></script><script defer="defer" src="/js/app.11b2b152.js"></script><link href="/css/chunk-vendors.c52e575a.css" rel="stylesheet"><link href="/css/app.01759f36.css" rel="stylesheet"></head><body><noscript><strong>抱歉,NEU小站无法在没有 JavaScript 的情况下正常工作。请启用 JavaScript 以继续。</strong></noscript><div id="app"></div></body></html>
|
||||||
2
dist/js/323.d1a83a48.js
vendored
Normal file
2
dist/js/323.d1a83a48.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
dist/js/741.f2b99488.js
vendored
2
dist/js/741.f2b99488.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -477,10 +477,18 @@ export default {
|
|||||||
this.updateZipStructure();
|
this.updateZipStructure();
|
||||||
// 显示剩余试用次数提示
|
// 显示剩余试用次数提示
|
||||||
if (data.remaining !== undefined && data.remaining !== -1) {
|
if (data.remaining !== undefined && data.remaining !== -1) {
|
||||||
barMessage.info(`您正在试用云解压功能,今日剩余${data.remaining}次试用机会,赞助后可无限体验`);
|
barMessage({
|
||||||
|
message: `您正在试用云解压功能,今日剩余${data.remaining}次试用机会,赞助后可无限体验`,
|
||||||
|
duration: 5000,
|
||||||
|
type: 'info'
|
||||||
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
barMessage.error(data.error || '解压失败');
|
barMessage({
|
||||||
|
message: data.error || '解压失败',
|
||||||
|
duration: 5000,
|
||||||
|
type: 'error'
|
||||||
|
});
|
||||||
this.closeZipPreview();
|
this.closeZipPreview();
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user