This commit is contained in:
lb
2023-03-30 13:38:20 +08:00
parent 0268af8557
commit a5a28de3cf
4 changed files with 37 additions and 33 deletions

View File

@@ -12,7 +12,8 @@ export default function () {
{ prop: "endTime", label: "结束上料时间", filter: timeFilter },
{ prop: "material", label: "物料" },
{ prop: "qty", label: "上料数量" },
{ prop: "storeCode", label: "料仓" },
// { prop: "storeCode", label: "料仓" },
{ prop: "storeName", label: "料仓" },
{ prop: "upPos", label: "上料位点" },
// { prop: "typeDictValue", label: "过渡车", filter: val => ['否', '是'][val] },
// { prop: "enabled", label: "状态", subcomponent: switchBtn }, // subcomponent
@@ -59,13 +60,13 @@ export default function () {
const headFormFields = [
{
prop: "materialId",
label: "料",
label: "料",
// default: { value: "" },
select: [],
// 绑定数据获取函数
fn: () => this.$http.get("/pms/material/page", { params: { page: 1, limit: 999 } }),
bind: {
placeholder: "请选择料",
placeholder: "请选择料",
filterable: true,
},
},