Commit 86acf127 authored by “yiyousong”'s avatar “yiyousong”

fix:修改取号报表

parent beb76636
...@@ -118,7 +118,7 @@ export default { ...@@ -118,7 +118,7 @@ export default {
key: "index", key: "index",
align: "center", align: "center",
customRender: (text, record, index) => customRender: (text, record, index) =>
(current - 1) * size + index + 1, (this.current - 1) * this.size + index + 1,
}, },
{ {
title: "邮递员", title: "邮递员",
...@@ -138,7 +138,7 @@ export default { ...@@ -138,7 +138,7 @@ export default {
{ {
title: "取件柜名称", title: "取件柜名称",
align: "center", align: "center",
dataIndex: "qjg_name", customRender: (text, record, index) => text.qjg_name || "--",
}, },
{ {
title: "箱号", title: "箱号",
......
...@@ -116,7 +116,8 @@ export default { ...@@ -116,7 +116,8 @@ export default {
width: "60px", width: "60px",
key: "index", key: "index",
align: "center", align: "center",
customRender: (text, record, index) => (current - 1) * size + index + 1, customRender: (text, record, index) =>
(this.current - 1) * this.size + index + 1,
}, },
{ {
title: "操作人身份", title: "操作人身份",
...@@ -150,7 +151,7 @@ export default { ...@@ -150,7 +151,7 @@ export default {
{ {
title: "取件柜名称", title: "取件柜名称",
align: "center", align: "center",
dataIndex: "qjg_name", customRender: (text, record, index) => text.qjg_name || "--",
}, },
{ {
title: "操作时间", title: "操作时间",
......
...@@ -142,7 +142,7 @@ export default { ...@@ -142,7 +142,7 @@ export default {
{ {
title: "取件柜名称", title: "取件柜名称",
align: "center", align: "center",
dataIndex: "qjg_name", customRender: (text, record, index) => text.qjg_name || "--",
}, },
{ {
title: "箱号", title: "箱号",
......
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