mirror of
https://github.com/1Panel-dev/1Panel
synced 2024-11-21 23:29:44 +00:00
fix: 修改 License 状态判断 (#4309)
This commit is contained in:
parent
aa93a6d373
commit
8d88ed812c
@ -75,7 +75,8 @@ const loadDataFromDB = async () => {
|
||||
|
||||
const loadProductProFromDB = async () => {
|
||||
const res = await getLicense();
|
||||
globalStore.isProductPro = res.data.status === 'Enable';
|
||||
globalStore.isProductPro =
|
||||
res.data.status === 'Enable' || res.data.status === 'Lost01' || res.data.status === 'Lost02';
|
||||
};
|
||||
|
||||
const updateDarkMode = async (event: MediaQueryListEvent) => {
|
||||
|
@ -163,10 +163,12 @@ const search = async () => {
|
||||
.then((res) => {
|
||||
loading.value = false;
|
||||
license.status = res.data.status;
|
||||
globalStore.isProductPro = res.data.status === 'Enable';
|
||||
if (res.data.status !== 'Enable') {
|
||||
globalStore.isProductPro =
|
||||
res.data.status === 'Enable' || res.data.status === 'Lost01' || res.data.status === 'Lost02';
|
||||
if (!globalStore.isProductPro || res.data.status === 'Lost03') {
|
||||
return;
|
||||
}
|
||||
console.log('csdcasd');
|
||||
license.licenseName = res.data.licenseName;
|
||||
license.assigneeName = res.data.assigneeName;
|
||||
license.trial = res.data.trial;
|
||||
@ -184,7 +186,7 @@ const search = async () => {
|
||||
};
|
||||
|
||||
const hasLicense = () => {
|
||||
return license.status === 'Enable';
|
||||
return globalStore.isProductPro;
|
||||
};
|
||||
|
||||
const showSync = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user