|
@ -77,10 +77,13 @@ new Vue({ |
|
|
clientDelete: null, |
|
|
clientDelete: null, |
|
|
clientCreate: null, |
|
|
clientCreate: null, |
|
|
clientCreateName: '', |
|
|
clientCreateName: '', |
|
|
|
|
|
clientExpiredDate: '', |
|
|
clientEditName: null, |
|
|
clientEditName: null, |
|
|
clientEditNameId: null, |
|
|
clientEditNameId: null, |
|
|
clientEditAddress: null, |
|
|
clientEditAddress: null, |
|
|
clientEditAddressId: null, |
|
|
clientEditAddressId: null, |
|
|
|
|
|
clientEditExpireDate: null, |
|
|
|
|
|
clientEditExpireDateId: null, |
|
|
qrcode: null, |
|
|
qrcode: null, |
|
|
|
|
|
|
|
|
currentRelease: null, |
|
|
currentRelease: null, |
|
@ -92,6 +95,7 @@ new Vue({ |
|
|
uiShowLinks: false, |
|
|
uiShowLinks: false, |
|
|
enableSortClient: false, |
|
|
enableSortClient: false, |
|
|
sortClient: true, // Sort clients by name, true = asc, false = desc
|
|
|
sortClient: true, // Sort clients by name, true = asc, false = desc
|
|
|
|
|
|
enableExpireTime: false, |
|
|
|
|
|
|
|
|
uiShowCharts: localStorage.getItem('uiShowCharts') === '1', |
|
|
uiShowCharts: localStorage.getItem('uiShowCharts') === '1', |
|
|
uiTheme: localStorage.theme || 'auto', |
|
|
uiTheme: localStorage.theme || 'auto', |
|
@ -296,9 +300,10 @@ new Vue({ |
|
|
}, |
|
|
}, |
|
|
createClient() { |
|
|
createClient() { |
|
|
const name = this.clientCreateName; |
|
|
const name = this.clientCreateName; |
|
|
|
|
|
const expiredDate = this.clientExpiredDate; |
|
|
if (!name) return; |
|
|
if (!name) return; |
|
|
|
|
|
|
|
|
this.api.createClient({ name }) |
|
|
this.api.createClient({ name, expiredDate }) |
|
|
.catch((err) => alert(err.message || err.toString())) |
|
|
.catch((err) => alert(err.message || err.toString())) |
|
|
.finally(() => this.refresh().catch(console.error)); |
|
|
.finally(() => this.refresh().catch(console.error)); |
|
|
}, |
|
|
}, |
|
@ -327,6 +332,11 @@ new Vue({ |
|
|
.catch((err) => alert(err.message || err.toString())) |
|
|
.catch((err) => alert(err.message || err.toString())) |
|
|
.finally(() => this.refresh().catch(console.error)); |
|
|
.finally(() => this.refresh().catch(console.error)); |
|
|
}, |
|
|
}, |
|
|
|
|
|
updateClientExpireDate(client, expireDate) { |
|
|
|
|
|
this.api.updateClientExpireDate({ clientId: client.id, expireDate }) |
|
|
|
|
|
.catch((err) => alert(err.message || err.toString())) |
|
|
|
|
|
.finally(() => this.refresh().catch(console.error)); |
|
|
|
|
|
}, |
|
|
restoreConfig(e) { |
|
|
restoreConfig(e) { |
|
|
e.preventDefault(); |
|
|
e.preventDefault(); |
|
|
const file = e.currentTarget.files.item(0); |
|
|
const file = e.currentTarget.files.item(0); |
|
@ -370,6 +380,15 @@ new Vue({ |
|
|
timeago: (value) => { |
|
|
timeago: (value) => { |
|
|
return timeago.format(value, i18n.locale); |
|
|
return timeago.format(value, i18n.locale); |
|
|
}, |
|
|
}, |
|
|
|
|
|
expiredDateFormat: (value) => { |
|
|
|
|
|
if (value === null) return i18n.t('Permanent'); |
|
|
|
|
|
const dateTime = new Date(value); |
|
|
|
|
|
const options = { year: 'numeric', month: 'long', day: 'numeric' }; |
|
|
|
|
|
return dateTime.toLocaleDateString(i18n.locale, options); |
|
|
|
|
|
}, |
|
|
|
|
|
expiredDateEditFormat: (value) => { |
|
|
|
|
|
if (value === null) return 'yyyy-MM-dd'; |
|
|
|
|
|
}, |
|
|
}, |
|
|
}, |
|
|
mounted() { |
|
|
mounted() { |
|
|
this.prefersDarkScheme.addListener(this.handlePrefersChange); |
|
|
this.prefersDarkScheme.addListener(this.handlePrefersChange); |
|
@ -433,6 +452,14 @@ new Vue({ |
|
|
this.enableSortClient = false; |
|
|
this.enableSortClient = false; |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.api.getWGEnableExpireTime() |
|
|
|
|
|
.then((res) => { |
|
|
|
|
|
this.enableExpireTime = res; |
|
|
|
|
|
}) |
|
|
|
|
|
.catch(() => { |
|
|
|
|
|
this.enableExpireTime = false; |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
Promise.resolve().then(async () => { |
|
|
Promise.resolve().then(async () => { |
|
|
const lang = await this.api.getLang(); |
|
|
const lang = await this.api.getLang(); |
|
|
if (lang !== localStorage.getItem('lang') && i18n.availableLocales.includes(lang)) { |
|
|
if (lang !== localStorage.getItem('lang') && i18n.availableLocales.includes(lang)) { |
|
|