Commit 00301488 authored by mzx's avatar mzx

feat: 修改bug(70345)

parent 6484046b
......@@ -16,6 +16,7 @@
</el-table-column>
<el-table-column
label="标准分类"
sortable
min-width="200"
prop="standardType"
align="left"
......
......@@ -16,6 +16,7 @@
</el-table-column>
<el-table-column
label="标准分类"
sortable
min-width="200"
prop="standardType"
align="left"
......@@ -75,7 +76,7 @@
prop="releaseDate"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.releaseDate) }}</span>
<span>{{ parseTime(scope.row.releaseDate, '{y}-{m}-{d} {h}') }}</span>
</template>
</el-table-column>
<el-table-column
......@@ -86,7 +87,9 @@
prop="implementationDate"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.implementationDate) }}</span>
<span>{{
parseTime(scope.row.implementationDate, '{y}-{m}-{d} {h}')
}}</span>
</template>
</el-table-column>
<el-table-column
......
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