You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
ljlong_2630 0c83fc9eee bug修复 1 month ago
build/vite 新框架代码上传 1 year ago
public 新框架代码上传 1 year ago
src bug修复 1 month ago
types 新框架代码上传 1 year ago
.editorconfig 新框架代码上传 1 year ago
.env 备品备件更换登录页图标去掉站内通知 9 months ago
.env.development 生产配置更新 3 months ago
.env.production 生产配置更新 3 months ago
.env.test 配置 7 months ago
.eslintignore 新框架代码上传 1 year ago
.eslintrc-auto-import.json 新框架代码上传 1 year ago
.eslintrc.js 新框架代码上传 1 year ago
.gitignore 增加忽略文件 11 months ago
.prettierignore 新框架代码上传 1 year ago
.stylelintignore 新框架代码上传 1 year ago
Dockerfile 还原 11 months ago
Dockerfile_prod 增加prod 10 months ago
LICENSE 新框架代码上传 1 year ago
README.md first commit 1 year ago
index.html 备品备件更换登录页图标去掉站内通知 9 months ago
nginx.conf 修改端口 9 months ago
nginx_prod.conf 配置 7 months ago
package.json 新框架代码上传 1 year ago
postcss.config.js 新框架代码上传 1 year ago
prettier.config.js 新框架代码上传 1 year ago
stylelint.config.js 新框架代码上传 1 year ago
tsconfig.json 新框架代码上传 1 year ago
uno.config.ts 新框架代码上传 1 year ago
vite.config.ts 新框架代码上传 1 year ago

README.md

xxxx.data.ts 文件配置说明 form表单查询弹窗配置 form: { labelMessage: '信息提示说明!!!', componentProps: { isSearchList: true, // 开启查询弹窗 searchListPlaceholder: '请选择物品代码', // 输入框占位文本 searchField: 'itemCode', // 查询弹窗赋值字段 searchTitle: '生产线物品关系信息', // 查询弹窗标题 searchAllSchemas: Productionlineitem.allSchemas, // 查询弹窗所需类 searchPage: ProductionlineitemApi.getProductionlineitemPage, // 查询弹窗所需分页方法 searchCondition: [{ key:'productionLineCode', // 查询列表中字段 value:'prodLine', // 指主表某字段 isMainValue: true // 表示查询条件是主表的字段的值 }, { key:'available', // 查询列表中字段 value:'TRUE', // 指查询具体值 isMainValue: false // 表示查询条件不是主表的字段的值 } ] } } tableForm明细列表查询弹窗配置 tableForm:{ isInpuFocusShow: true, // 开启查询弹窗 【与form表单中唯一不同属性】 searchListPlaceholder: '请选择从仓库代码', // 输入框占位文本 searchField: 'code', // 查询弹窗赋值字段 searchTitle: '仓库基础信息', // 查询弹窗标题 searchAllSchemas: Warehouse.allSchemas, // 查询弹窗所需类 searchPage: WarehouseApi.getWarehousePage, // 查询弹窗所需分页方法 searchCondition: [{ key: 'available', // 查询列表中字段 value: 'TRUE', // 指查询具体值 isMainValue: false // 表示查询条件不是主表的字段的值 }, { key: 'available', // 查询列表中字段 value: 'TRUE', // 指查询具体值 action: '==', // 查询拼接条件 isSearch: true, // 使用自定义拼接条件 isMainValue: false // 拼接条件必须要 false 同时不能与 isMainValue: true 同用 }] },