1
This commit is contained in:
@@ -19,8 +19,9 @@
|
||||
"@vitejs/plugin-vue": "^4.4.1",
|
||||
"chalk": "^4.1.2",
|
||||
"chokidar": "^3.5.3",
|
||||
"electron": "^28.3.3",
|
||||
"electron": "^38.2.2",
|
||||
"electron-builder": "^25.1.6",
|
||||
"electron-rebuild": "^3.2.9",
|
||||
"express": "^5.1.0",
|
||||
"fs-extra": "^11.3.2",
|
||||
"typescript": "^5.2.2",
|
||||
|
||||
@@ -219,7 +219,6 @@ async function exportToExcel() {
|
||||
exportLoading.value = false
|
||||
}
|
||||
|
||||
// 获取卖家/配送方信息 - 数据处理辅助函数
|
||||
function getSellerShipperText(product: any) {
|
||||
let text = product.seller || '无货'
|
||||
if (product.shipper && product.shipper !== product.seller) {
|
||||
|
||||
@@ -1,14 +1,12 @@
|
||||
const Path = require('path');
|
||||
const vuePlugin = require('@vitejs/plugin-vue')
|
||||
|
||||
const { defineConfig } = require('vite');
|
||||
|
||||
/**
|
||||
* https://vitejs.dev/config
|
||||
*/
|
||||
const config = defineConfig({
|
||||
root: Path.join(__dirname, 'src', 'renderer'),
|
||||
publicDir: Path.join(__dirname, 'src', 'renderer', 'public'), // 使用renderer下的public目录
|
||||
publicDir: Path.join(__dirname, 'src', 'renderer', 'public'),
|
||||
server: {
|
||||
port: 8083,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user