受理时间
Showing
1 changed file
with
16 additions
and
2 deletions
... | @@ -44,9 +44,23 @@ class data extends filter { | ... | @@ -44,9 +44,23 @@ class data extends filter { |
44 | minWidth: 150, | 44 | minWidth: 150, |
45 | }, | 45 | }, |
46 | { | 46 | { |
47 | prop: "createdate", | 47 | prop: "slsj", |
48 | label: "创建时间", | 48 | label: "受理时间", |
49 | width: 140, | 49 | width: 140, |
50 | render: (h, scope) => { | ||
51 | if (scope.row.slsj != null && scope.row.slsj != '') { | ||
52 | return ( | ||
53 | <div> | ||
54 | {scope.row.slsj.substring(0, 19)} | ||
55 | </div> | ||
56 | ) | ||
57 | } | ||
58 | return ( | ||
59 | <div> | ||
60 | / | ||
61 | </div> | ||
62 | ) | ||
63 | } | ||
50 | }, | 64 | }, |
51 | { | 65 | { |
52 | prop: "recflowid", | 66 | prop: "recflowid", | ... | ... |
-
Please register or sign in to post a comment