123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import { useDictionaryStore } from "@/store";
- const { dicts } = useDictionaryStore();
- export const columns = [
- {
- label: "物料编号",
- prop: "materialCode",
- hide: true,
- display: false,
- },
- {
- label: "物料名称",
- prop: "materialName",
- rules: [
- {
- required: true,
- message: "请选择物料名称",
- trigger: "blur",
- },
- ],
- click: ({ value, column }) => {
- if (column.boxType) {
- dialog.visible = true;
- }
- },
- },
- {
- label: "产线",
- prop: "productionLineName",
- hide: true,
- display: false,
- },
- {
- label: "产能",
- prop: "capacity",
- rules: [
- {
- required: true,
- message: "请填写产能",
- trigger: "blur",
- },
- ],
- },
- {
- label: "最小齐套数",
- prop: "minCapacity",
- rules: [
- {
- required: true,
- message: "请填写产能",
- trigger: "blur",
- },
- ],
- },
- ];
|