23 lines
433 B
TypeScript
23 lines
433 B
TypeScript
export const RELATED_INFO_COLUMNS = [
|
|
{
|
|
label: "型号",
|
|
prop: "spu",
|
|
disabled: false,
|
|
formType: "selectRemote",
|
|
options: []
|
|
},
|
|
{
|
|
label: "排序",
|
|
prop: "sort",
|
|
disabled: false,
|
|
formType: "inputNumber"
|
|
},
|
|
{
|
|
label: "操作",
|
|
prop: "operation",
|
|
disabled: false,
|
|
isHeaderIcon: false,
|
|
width: 160
|
|
}
|
|
];
|