|
@@ -16,6 +16,7 @@
|
|
|
<el-table-column prop="customer" label="顾客名称" />
|
|
|
<el-table-column prop="materialName" label="物料名称" />
|
|
|
<el-table-column prop="materialModel" label="物料型号" />
|
|
|
+ <el-table-column prop="checkCode" label="检验批号" />
|
|
|
<el-table-column prop="contacts" label="联系人" />
|
|
|
<el-table-column prop="currentUserName" label="审核人" overhidden="true" />
|
|
|
<el-table-column prop="state" label="审核状态">
|
|
@@ -106,8 +107,8 @@ const tableData = ref([]);
|
|
|
const searchRef = ref(null);
|
|
|
const searchForm = [
|
|
|
{
|
|
|
- label: "工单号",
|
|
|
- prop: "workOrderCode",
|
|
|
+ label: "检验批号",
|
|
|
+ prop: "checkCode",
|
|
|
type: "input",
|
|
|
},
|
|
|
{
|
|
@@ -116,8 +117,8 @@ const searchForm = [
|
|
|
type: "input",
|
|
|
},
|
|
|
{
|
|
|
- label: "关联订单",
|
|
|
- prop: "orderNo",
|
|
|
+ label: "物料型号",
|
|
|
+ prop: "materialModel",
|
|
|
type: "input",
|
|
|
},
|
|
|
];
|