fix 0720
This commit is contained in:
@@ -9,8 +9,13 @@ export default function () {
|
||||
// { prop: "kilnCode", label: "窑炉" },
|
||||
{ width: 120, prop: "orderCode", label: "主订单号" },
|
||||
{ width: 60, prop: "orderCate", label: "子号" },
|
||||
{ width: 210, prop: "code", label: "检测包装订单号" },
|
||||
{ width: 60, prop: "percent1", label: "进度", filter: (val) => (val !== null && val !== undefined ? val + " %" : "-") },
|
||||
{ /** width: 210, **/ prop: "code", label: "检测包装订单号" },
|
||||
{
|
||||
width: 90,
|
||||
prop: "percent1",
|
||||
label: "进度",
|
||||
filter: (val) => (val !== null && val !== undefined ? val + " %" : "-"),
|
||||
},
|
||||
// {
|
||||
// prop: "statusDictValue",
|
||||
// label: "订单状态",
|
||||
@@ -23,7 +28,7 @@ export default function () {
|
||||
{ width: 120, prop: "qty1Complete", label: "完成量" },
|
||||
{ width: 120, prop: "goodqty1", label: "检测合格量" },
|
||||
{ width: 120, prop: "badqty1", label: "检测不合格量" },
|
||||
{ width: 160, prop: "createTime", label: "添加时间", filter: timeFilter },
|
||||
{ /** width: 160, */ prop: "createTime", label: "添加时间", filter: timeFilter },
|
||||
// { width: 120, prop: "qty2", label: "包装要求数量" },
|
||||
// { width: 120, prop: "qty2Complete", label: "包装完成数量" },
|
||||
// { prop: "percent2", label: "包装进度", filter: (val) => (val !== null && val !== undefined ? val + " %" : "-") },
|
||||
@@ -60,6 +65,16 @@ export default function () {
|
||||
placeholder: "请输入主订单子号查询",
|
||||
},
|
||||
},
|
||||
{
|
||||
prop: "viewType",
|
||||
label: "状态",
|
||||
select: [
|
||||
{ value: 0, label: "未结束" },
|
||||
{ value: 1, label: "结束" },
|
||||
{ value: 2, label: "全部" },
|
||||
],
|
||||
default: { value: 0 },
|
||||
},
|
||||
// {
|
||||
// prop: "bom",
|
||||
// label: "配方号",
|
||||
|
||||
Reference in New Issue
Block a user