1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| import type { IForm } from "@/common-ui/msi-form";
| const formInfo: IForm = {
| formItem: [
| {
| field: "Code",
| type: "input",
| label: "库位编号",
| placeholder: "请输入库位编号"
| },
| {
| field: "MaterialCode",
| type: "input",
| label: "物料编号",
| placeholder: "请输入物料编号"
| },
| {
| field: "Status",
| type: "select",
| label: "库位状态",
| placeholder: "请选择库位状态",
| options: []
| },
| {
| field: "ShelfCode",
| type: "select",
| label: "所属货架",
| placeholder: "请选择所属货架",
| options: []
| }
| ],
| labelWidth: "120px",
| showMoreBtn: false,
| itemStyle: {
| padding: "10px 40px"
| }
| };
| export default formInfo;
|
|