Commit 316a765f authored by 孙浩's avatar 孙浩

提交时间

parent 25b80345
......@@ -166,13 +166,13 @@
</el-table-column>
<el-table-column label="提交人" prop="updateBy" :show-overflow-tooltip="true" width="100%">
<template slot-scope="scope">
<span v-if="scope.row.approveStatus == '0' || scope.row.approveStatus == '3'">-</span>
<span v-if="scope.row.approveStatus == '0'">-</span>
<span v-else>{{ scope.row.submitName || '-' }}</span>
</template>
</el-table-column>
<el-table-column label="提交时间" prop="updateDate" :show-overflow-tooltip="true" width="140%">
<template slot-scope="scope">
<span v-if="scope.row.approveStatus == '0' || scope.row.approveStatus == '3'">-</span>
<span v-if="scope.row.approveStatus == '0'">-</span>
<span v-else>{{ scope.row.updateDate | transformDateByFormat('YYYY-MM-DD HH:mm:ss') }}</span>
</template>
</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