Commit 681b00b4 authored by 姬鋆屾's avatar 姬鋆屾

fix:调整自助存取件报表的展示字段及导出字段

parent ccfaf7df
...@@ -53,7 +53,6 @@ const tHeader = [ ...@@ -53,7 +53,6 @@ const tHeader = [
"取件柜编号", "取件柜编号",
"箱号", "箱号",
"存件时间", "存件时间",
"存放时长",
"状态", "状态",
"取件时间", "取件时间",
]; // 导出的表头名信息 ]; // 导出的表头名信息
...@@ -66,7 +65,6 @@ const filterVal = [ ...@@ -66,7 +65,6 @@ const filterVal = [
"number", "number",
"boxNo", "boxNo",
"create_time", "create_time",
"timehour",
"status", "status",
"update_time", "update_time",
]; // 导出的表头字段名,需要导出表格字段名 ]; // 导出的表头字段名,需要导出表格字段名
...@@ -157,12 +155,12 @@ export default { ...@@ -157,12 +155,12 @@ export default {
dataIndex: "create_time", dataIndex: "create_time",
customRender: (text, record) => (text ? text : "--"), customRender: (text, record) => (text ? text : "--"),
}, },
{ // {
title: "存放时长", // title: "存放时长",
width: 150, // width: 150,
dataIndex: "timehour", // dataIndex: "timehour",
customRender: (text, record) => (text ? text : "--"), // customRender: (text, record) => (text ? text : "--"),
}, // },
{ {
title: "状态", title: "状态",
......
...@@ -52,7 +52,6 @@ const tHeader = [ ...@@ -52,7 +52,6 @@ const tHeader = [
"取件柜编号", "取件柜编号",
"箱号", "箱号",
"存件时间", "存件时间",
"存放时长",
"状态", "状态",
"取件时间", "取件时间",
]; // 导出的表头名信息 ]; // 导出的表头名信息
...@@ -65,7 +64,6 @@ const filterVal = [ ...@@ -65,7 +64,6 @@ const filterVal = [
"number", "number",
"boxNo", "boxNo",
"create_time", "create_time",
"timehour",
"status", "status",
"update_time", "update_time",
]; // 导出的表头字段名,需要导出表格字段名 ]; // 导出的表头字段名,需要导出表格字段名
...@@ -156,13 +154,7 @@ export default { ...@@ -156,13 +154,7 @@ export default {
dataIndex: "create_time", dataIndex: "create_time",
customRender: (text, record) => (text ? text : "--"), customRender: (text, record) => (text ? text : "--"),
}, },
{
title: "存放时长",
width: 150,
dataIndex: "timehour",
customRender: (text, record) => (text ? text : "--"),
},
{ {
title: "状态", title: "状态",
dataIndex: "status", dataIndex: "status",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment