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

tui

parent 399ad471
......@@ -129,12 +129,32 @@ export default {
{
label: "开始时间",
prop: "startTime",
width: 150,
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},
......@@ -170,12 +190,13 @@ export default {
{
label: "创建时间",
prop: "createTime",
width: 150,
formatter: this.formatterDate,
},
{
label: "操作",
width: 240,
width: 200,
formatter: (row) => {
return (
<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