build & 1.1.5 release

This commit is contained in:
sswiki
2023-10-15 08:36:55 +08:00
parent 5a25be99cb
commit 84742639db
67 changed files with 25417 additions and 15845 deletions

View File

@@ -58,7 +58,7 @@
</el-row>
<MobileQrScanDialog v-model:visible="mobileScanDialogVisible"/>
<PageAuthDialog v-model:visible="pageAuthDialogVisible"/>
<about-dialog ref="aboutDialogRef"></about-dialog>
<AboutDialog v-model:visible="aboutDialogVisible"/>
<form method="post" ref="downloadFormRef" :action="downloadFormParam.url" target="_blank">
<input type="hidden" :name="key" :value="val" v-for="(val, key) in downloadFormParam.param"/>
</form>
@@ -196,9 +196,9 @@ const userSignOut = () => {
location.reload();
});
}
let aboutDialogRef = ref();
let aboutDialogVisible = ref(false);
const showAbout = () => {
aboutDialogRef.value.show();
aboutDialogVisible.value = true;
}
const showConsole = () => {
window.open(import.meta.env.VITE_APP_BASE_API, '_blank')