mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 08:19:15 +08:00
style: 修改许可证即将过期样式 (#6616)
This commit is contained in:
parent
2ac9a888a8
commit
4c275ba52f
@ -174,6 +174,7 @@ export namespace Setting {
|
|||||||
}
|
}
|
||||||
export interface LicenseStatus {
|
export interface LicenseStatus {
|
||||||
productPro: string;
|
productPro: string;
|
||||||
|
trial: boolean;
|
||||||
status: string;
|
status: string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ export interface GlobalState {
|
|||||||
defaultNetwork: string;
|
defaultNetwork: string;
|
||||||
|
|
||||||
isProductPro: boolean;
|
isProductPro: boolean;
|
||||||
|
isTrial: boolean;
|
||||||
productProExpires: number;
|
productProExpires: number;
|
||||||
|
|
||||||
errStatus: string;
|
errStatus: string;
|
||||||
|
@ -38,6 +38,7 @@ const GlobalStore = defineStore({
|
|||||||
defaultNetwork: 'all',
|
defaultNetwork: 'all',
|
||||||
|
|
||||||
isProductPro: false,
|
isProductPro: false,
|
||||||
|
isTrial: false,
|
||||||
productProExpires: 0,
|
productProExpires: 0,
|
||||||
|
|
||||||
errStatus: '',
|
errStatus: '',
|
||||||
|
@ -61,6 +61,7 @@ export async function loadProductProFromDB() {
|
|||||||
res.data.status === 'Enable' || res.data.status === 'Lost01' || res.data.status === 'Lost02';
|
res.data.status === 'Enable' || res.data.status === 'Lost01' || res.data.status === 'Lost02';
|
||||||
if (globalStore.isProductPro) {
|
if (globalStore.isProductPro) {
|
||||||
globalStore.productProExpires = Number(res.data.productPro);
|
globalStore.productProExpires = Number(res.data.productPro);
|
||||||
|
globalStore.isTrial = res.data.trial;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
switchTheme();
|
switchTheme();
|
||||||
@ -81,6 +82,7 @@ export async function getXpackSettingForTheme() {
|
|||||||
res.data.status === 'Enable' || res.data.status === 'Lost01' || res.data.status === 'Lost02';
|
res.data.status === 'Enable' || res.data.status === 'Lost01' || res.data.status === 'Lost02';
|
||||||
if (globalStore.isProductPro) {
|
if (globalStore.isProductPro) {
|
||||||
globalStore.productProExpires = Number(res.data.productPro);
|
globalStore.productProExpires = Number(res.data.productPro);
|
||||||
|
globalStore.isTrial = res.data.trial;
|
||||||
}
|
}
|
||||||
if (!globalStore.isProductPro) {
|
if (!globalStore.isProductPro) {
|
||||||
globalStore.isProductPro = false;
|
globalStore.isProductPro = false;
|
||||||
|
@ -201,6 +201,7 @@ const search = async () => {
|
|||||||
hasLicense.value = true;
|
hasLicense.value = true;
|
||||||
if (globalStore.isProductPro) {
|
if (globalStore.isProductPro) {
|
||||||
globalStore.productProExpires = Number(res.data.productPro);
|
globalStore.productProExpires = Number(res.data.productPro);
|
||||||
|
globalStore.isTrial = res.data.trial;
|
||||||
}
|
}
|
||||||
license.licenseName = res.data.licenseName;
|
license.licenseName = res.data.licenseName;
|
||||||
license.message = res.data.message;
|
license.message = res.data.message;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user