|
|
@ -307,7 +307,7 @@ export const Package = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
isMainValue: false |
|
|
|
},{ |
|
|
|
key:'itemCode', // 查询列表中字段
|
|
|
|
value:'itemCode', // 指主表某字段
|
|
|
|
value:'itemCode', // 指主表某字段
|
|
|
|
message: '请选择物料代码!', // 当前置条件为空时 弹出信息提示
|
|
|
|
isMainValue: true, // 表示查询条件是主表的字段的值
|
|
|
|
action: '==', // 查询拼接条件
|
|
|
@ -498,6 +498,23 @@ export const Package = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '标签数量', |
|
|
|
field: 'count', |
|
|
|
sort: 'custom', |
|
|
|
isTable: true, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
form: { |
|
|
|
component: 'InputNumber', |
|
|
|
componentProps: { |
|
|
|
min: 1, |
|
|
|
precision: 0, |
|
|
|
max: 100, |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '采购订单号',
|
|
|
|
// field: 'poNumber',
|
|
|
|