Merge branch 'master' of https://git.nuttyreading.com/wangjinlei/tougao_web into Editorial-Board

This commit is contained in:
2025-12-25 09:20:34 +08:00

View File

@@ -95,11 +95,16 @@
<el-table-column label="State" align="center" width="130"> <el-table-column label="State" align="center" width="130">
<template slot-scope="scope"> <template slot-scope="scope">
<span style="font-size: 16px;"v-html="revstate(scope.row)"></span> <span style="font-size: 16px;"v-html="revstate(scope.row)"></span>
<!-- 0初始1小改后接收2拒稿3通过4过期5邀请 -->
<font <font
style="color: #aaa; display: block; line-height: 18px; font-size: 13px; " style="color: #aaa; display: block; line-height: 18px; font-size: 13px; "
v-html="formatDate(scope.row.ctime)"
> >
<span v-html="formatDate(scope.row.ctime)" v-if="[5].includes(scope.row.state)"></span>
<span v-html="formatDate(scope.row.agree_review_time>0?scope.row.agree_review_time:scope.row.ctime)" v-if="[0].includes(scope.row.state)"></span>
<span v-html="formatDate(scope.row.refuse_review_time>0?scope.row.refuse_review_time:scope.row.ctime)" v-if="[4].includes(scope.row.state)"></span>
<span v-html="formatDate(scope.row.review_time>0?scope.row.review_time:scope.row.ctime)" v-if="[1,2,3].includes(scope.row.state)"></span>
</font> </font>
</template> </template>
</el-table-column> </el-table-column>