Commit b67513ca authored by mzx's avatar mzx

feat: 修改bug(信息库与信息管理一致)

parent a837b407
......@@ -76,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
......@@ -87,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>
......
......@@ -75,7 +75,13 @@
<span>{{ scope.$index + 1 }}</span>
</template>
</el-table-column>
<el-table-column prop="chapter" label="标准章节" align="center">
<el-table-column
prop="chapter"
label="标准章节"
sortable
width="140"
align="center"
>
</el-table-column>
<el-table-column prop="text" label="标准要求" align="center">
</el-table-column>
......@@ -86,7 +92,12 @@
align="center"
>
</el-table-column>
<el-table-column label="操作" align="left" class-name="fixed-width">
<el-table-column
label="操作"
align="left"
width="240"
class-name="fixed-width"
>
<template slot-scope="scope">
<div class="button-bar">
<page-button
......@@ -148,7 +159,7 @@ export default {
value: 'car'
},
{
label: '文档审查',
label: '车型试验',
value: 'test'
}
],
......
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