123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import { useDictionaryStoreHook } from "../../../store/index";
- const { dicts } = useDictionaryStoreHook();
- export const columns = [
- {
- label: "物料编码",
- prop: "materialCode",
- hide:true
- },
- {
- label: "物料名称",
- prop: "materialName",
- overHidden:true,
- hide:true
- },
- {
- label: "物料编码",
- prop: "bomMaterialCode",
- },
- {
- label: "物料名称",
- prop: "bomMaterialName",
- overHidden:true,
- },
- {
- label: "物料属性",
- prop: "bomMaterialAttribute",
- type: 'select',
- dicData:dicts.material_properties,
- props: { label: "dictLabel", value: "dictValue" },
- },
- {
- label: "物料数量",
- prop: "bomMaterialNumber",
- min:0,
- slot:true,
- cell: true,
- type: "number",
- precision: 2,
- },
- ];
|