新增收银页面

This commit is contained in:
gyq
2024-02-22 09:41:27 +08:00
parent 113bc4d730
commit 7558889840
13 changed files with 905 additions and 77 deletions

View File

@@ -3,10 +3,12 @@ import { app, BrowserWindow, ipcMain } from "electron";
app.whenReady().then(() => {
const win = new BrowserWindow({
title: "Main window",
width: 1200,
height: 800,
fullscreenable: true,
fullscreen: true,
fullscreen: false,
simpleFullscreen: true,
frame: false,
frame: true,
webPreferences: {
// 集成网页和 Node.js也就是在渲染进程中可以调用 Node.js 方法
nodeIntegration: true,