fix: 修改 License 状态判断 (#4309)

pull/4315/head
ssongliu 8 months ago committed by GitHub
parent aa93a6d373
commit 8d88ed812c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -75,7 +75,8 @@ const loadDataFromDB = async () => {
const loadProductProFromDB = async () => { const loadProductProFromDB = async () => {
const res = await getLicense(); 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) => { const updateDarkMode = async (event: MediaQueryListEvent) => {

@ -163,10 +163,12 @@ const search = async () => {
.then((res) => { .then((res) => {
loading.value = false; loading.value = false;
license.status = res.data.status; license.status = res.data.status;
globalStore.isProductPro = res.data.status === 'Enable'; globalStore.isProductPro =
if (res.data.status !== 'Enable') { res.data.status === 'Enable' || res.data.status === 'Lost01' || res.data.status === 'Lost02';
if (!globalStore.isProductPro || res.data.status === 'Lost03') {
return; return;
} }
console.log('csdcasd');
license.licenseName = res.data.licenseName; license.licenseName = res.data.licenseName;
license.assigneeName = res.data.assigneeName; license.assigneeName = res.data.assigneeName;
license.trial = res.data.trial; license.trial = res.data.trial;
@ -184,7 +186,7 @@ const search = async () => {
}; };
const hasLicense = () => { const hasLicense = () => {
return license.status === 'Enable'; return globalStore.isProductPro;
}; };
const showSync = () => { const showSync = () => {

Loading…
Cancel
Save