4f25b76c by 焦小希

案件查处页面增加时间过滤器。

1 parent a1cbf66c
...@@ -166,7 +166,7 @@ ...@@ -166,7 +166,7 @@
166 > 166 >
167 <template slot-scope="scope"> 167 <template slot-scope="scope">
168 <span>{{ 168 <span>{{
169 scope.row.djsj | dataFormat 169 scope.row.CREATETIME | dataFormat
170 }}</span> 170 }}</span>
171 </template> 171 </template>
172 </el-table-column> 172 </el-table-column>
...@@ -176,6 +176,11 @@ ...@@ -176,6 +176,11 @@
176 align="center" 176 align="center"
177 width="200" 177 width="200"
178 > 178 >
179 <template slot-scope="scope">
180 <span>{{
181 scope.row.RECEIVETIME | dataFormat
182 }}</span>
183 </template>
179 </el-table-column> 184 </el-table-column>
180 </el-table> 185 </el-table>
181 <el-table 186 <el-table
......