|
|
@ -33,9 +33,9 @@ const options4 = [ |
|
|
|
{ value: "In", label: "入库" }, |
|
|
|
{ value: "Out", label: "出库" }, |
|
|
|
]; |
|
|
|
const billType = { title: "发货类型", type: "number", input: "select", options: options1 }; |
|
|
|
const codeType = { title: "生产码类型", type: "string", input: "select", options: options2 }; |
|
|
|
const subBillType = { title: "发货子类型", type: "number", input: "select", options: options3 }; |
|
|
|
const changedType = { title: "变动类型", type: "string", input: "select", options: options4 }; |
|
|
|
const billType = { title: "发货类型", type: "number", input: "select", options: options1, clearable: true }; |
|
|
|
const codeType = { title: "生产码类型", type: "string", input: "select", options: options2, clearable: true }; |
|
|
|
const subBillType = { title: "发货子类型", type: "number", input: "select", options: options3, clearable: true }; |
|
|
|
const changedType = { title: "变动类型", type: "string", input: "select", options: options4, clearable: true }; |
|
|
|
|
|
|
|
export { billType, codeType, subBillType, changedType }; |
|
|
|