- 修改 app/components/oa/TaskForm.vue 中 a-input 类型冲突为 a-input-number - 合并 admin/supply/warehouse.vue 和 production/equipment.vue 中多个 :class 绑定,避免重复属性 - 统一改为数组方式绑定静态和动态 class,防止 Vue 编译器 Duplicate attribute 警告 - 清理缓存并验证构建通过,确保无重复属性错误 - 通过扫描确认 app/ 目录下 Vue 文件不再存在重复属性问题 - 添加 OaTaskForm 组件类型声明及懒加载声明 - 将 ERP 演示独立 HTML 页面整合至 /app/pages,统一布局与导航 - 升级制造业管理后台页面风格,采用玻璃态和渐变设计 - 修订规划文档相关内容,更新 DEMO 系统名称及功能模块描述 - 修改 ecosystem.config.cjs 中运行端口为 10591
19 lines
372 B
JavaScript
19 lines
372 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'websopy-10591',
|
|
cwd: __dirname,
|
|
script: '.output/server/index.mjs',
|
|
interpreter: 'node',
|
|
node_args: ['--import', './scripts/crypto-hash-polyfill.mjs'],
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
NITRO_HOST: '0.0.0.0',
|
|
NITRO_PORT: 10591,
|
|
PORT: 10591,
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|