fix: 主页sn号读取配置

This commit is contained in:
TsMask
2023-12-22 15:54:38 +08:00
parent 04754a022f
commit 0f3df3a80b
2 changed files with 9 additions and 5 deletions

View File

@@ -17,6 +17,8 @@ type AppStore = {
/**服务版本 */
version: string,
buildTime: string,
// 序列号
serialNum: string,
/**应用版权声明 */
copyright: string;
/**LOGO显示类型 */
@@ -46,6 +48,7 @@ const useAppStore = defineStore('app', {
version: `-`,
buildTime: `-`,
serialNum: `-`,
copyright: `Copyright ©2023 For ${import.meta.env.VITE_APP_NAME}`,
logoType: 'icon',
filePathIcon: '',
@@ -77,6 +80,7 @@ const useAppStore = defineStore('app', {
if (res.code === RESULT_CODE_SUCCESS && res.data) {
this.version = res.data.version;
this.buildTime = res.data.buildTime;
this.serialNum = res.data.serialNum;
this.appName = res.data.title;
this.copyright = res.data.copyright;
this.logoType = res.data.logoType;