查询
Showing
1 changed file
with
17 additions
and
3 deletions
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-11 10:02:44 | 4 | * @LastEditTime: 2023-05-11 10:02:44 |
| 5 | */ | 5 | */ |
| ... | @@ -68,9 +68,23 @@ class data extends filter { | ... | @@ -68,9 +68,23 @@ class data extends filter { |
| 68 | minWidth: 150, | 68 | minWidth: 150, |
| 69 | }, | 69 | }, |
| 70 | { | 70 | { |
| 71 | prop: "createdate", | 71 | prop: "slsj", |
| 72 | label: "创建时间", | 72 | label: "受理时间", |
| 73 | width: 140, | 73 | width: 140, |
| 74 | render: (h, scope) => { | ||
| 75 | if (scope.row.slsj != null && scope.row.slsj != '') { | ||
| 76 | return ( | ||
| 77 | <div> | ||
| 78 | {scope.row.slsj.substring(0, 19)} | ||
| 79 | </div> | ||
| 80 | ) | ||
| 81 | } | ||
| 82 | return ( | ||
| 83 | <div> | ||
| 84 | / | ||
| 85 | </div> | ||
| 86 | ) | ||
| 87 | } | ||
| 74 | }, | 88 | }, |
| 75 | { | 89 | { |
| 76 | prop: "recflowid", | 90 | prop: "recflowid", | ... | ... |
-
Please register or sign in to post a comment