From 47f0c0b6986b8dd423e81c77f341c829550e326d Mon Sep 17 00:00:00 2001
From: chenyincheng <501753378@qq.com>
Date: 星期一, 30 一月 2023 21:17:19 +0800
Subject: [PATCH] 更新api上传结果
---
electron/main/index.ts | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/electron/main/index.ts b/electron/main/index.ts
index b1f4295..b6fcd92 100644
--- a/electron/main/index.ts
+++ b/electron/main/index.ts
@@ -39,11 +39,6 @@
const store = new Store();
console.log(store.path)
-// 读
-// console.log(store.get('clientCode'))
-// console.log(store.get('deviceList'))
-// 写
-// store.set("testr","test001")
// Disable GPU Acceleration for Windows 7
if (release().startsWith('6.1')) app.disableHardwareAcceleration()
@@ -66,8 +61,8 @@
async function createWindow() {
win = new BrowserWindow({
title: 'Main window',
- fullscreen: false,
- // autoHideMenuBar:true,
+ fullscreen: true,// 开启默认全屏
+ // autoHideMenuBar:true, //关闭菜单栏
webPreferences: {
preload: splash,
nodeIntegration: true,
--
Gitblit v1.8.0