|
|
@ -20,7 +20,9 @@ const stateOptions = [ |
|
|
|
{ value: 8, label: "已提交QAD" }, |
|
|
|
]; |
|
|
|
const state = { title: "状态", type: "number", input: "select", options: stateOptions }; |
|
|
|
const state2 = Object.assign(Object.assign({}, state), { options: stateOptions.filter((a) => parseInt(a.value) > 0) }); |
|
|
|
const state2 = Object.assign(Object.assign({}, state), { |
|
|
|
options: stateOptions.filter((a) => parseInt(a.value) > 0).filter((a) => parseInt(a.value) !== 6 && parseInt(a.value) !== 7), |
|
|
|
}); |
|
|
|
const state3 = Object.assign(Object.assign({}, state), { options: stateOptions.filter((a) => parseInt(a.value) > 3) }); |
|
|
|
|
|
|
|
const businessType = { |
|
|
|