Commit 073198c7 authored by 邓春圆's avatar 邓春圆

新增汇率列表添加有效期,和状态

parent 935dc7c6
...@@ -71,6 +71,12 @@ ...@@ -71,6 +71,12 @@
{{getOperator(row.updater)}} {{getOperator(row.updater)}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="有效期" v-slot="{row}" >
{{parseTime(row.expireDate)}}
</el-table-column>
<el-table-column label="状态" v-slot="{row}" >
{{new Date(row.expireDate).getTime() >= new Date().getTime() ? '正常' : '已过期'}}
</el-table-column>
<el-table-column :label="$t('备注')" prop="note"></el-table-column> <el-table-column :label="$t('备注')" prop="note"></el-table-column>
<el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width"> <el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope"> <template slot-scope="scope">
......
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