Commit f8259faa authored by 姬鋆屾's avatar 姬鋆屾

tui

parent 399ad471
...@@ -129,12 +129,32 @@ export default { ...@@ -129,12 +129,32 @@ export default {
{ {
label: "开始时间", label: "开始时间",
prop: "startTime", prop: "startTime",
width: 150,
formatter: this.formatterDate, formatter: this.formatterDate,
}, },
{ label: "结束时间", prop: "endTime", formatter: this.formatterDate }, {
label: "结束时间",
prop: "endTime",
width: 150,
formatter: this.formatterDate,
},
{ label: "时长", prop: "duration", formatter: this.formatteSec }, {
label: "钉钉原始时间(换算时长)",
width: 165,
formatter: (row) => {
return (
(row.sourceDingTime ? row.sourceDingTime : "--") +
(row.duration
? "" +
(row.duration / 60 / 60 / 24).toFixed(2) +
"" +
""
: "(--)")
);
},
},
// {label: "审批负责人Id", prop: "approverId", formatter: this.formatter}, // {label: "审批负责人Id", prop: "approverId", formatter: this.formatter},
...@@ -170,12 +190,13 @@ export default { ...@@ -170,12 +190,13 @@ export default {
{ {
label: "创建时间", label: "创建时间",
prop: "createTime", prop: "createTime",
width: 150,
formatter: this.formatterDate, formatter: this.formatterDate,
}, },
{ {
label: "操作", label: "操作",
width: 240, width: 200,
formatter: (row) => { formatter: (row) => {
return ( return (
<div> <div>
......
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