|
@@ -26,6 +26,7 @@
|
|
|
<el-table-column label="报告名称" min-width="280" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<a v-if="title === '测试日报' || title === '准出报告'" href="javascript:void(0)" style="color:#20a0ff" @click="history ? toReportView(scope.row) : OldDaily(scope.row)">{{ scope.row.reportName }}</a>
|
|
|
+ <div v-if="title === '准出报告'" :class="scope.row.passStatus === 0 ? 'passStatus' : 'passStatus1'">{{ scope.row.passStatus === 0 ? '通过' : '不通过' }}</div>
|
|
|
<a v-if="title === '提测报告'" href="javascript:void(0)" style="color:#20a0ff" @click="history ? toReportView(scope.row) : OldDaily(scope.row)">{{ history ? scope.row.reportName : scope.row.name }}</a>
|
|
|
<div v-if="title === '提测报告' && scope.row.returnReason" style="color: red;">打回报告:{{ scope.row.returnReason }}</div>
|
|
|
</template>
|
|
@@ -646,6 +647,12 @@ export default {
|
|
|
margin-right: 20px;
|
|
|
}
|
|
|
}
|
|
|
+.passStatus {
|
|
|
+ color:rgba(126,211,33,1);
|
|
|
+}
|
|
|
+.passStatus1 {
|
|
|
+ color:red;
|
|
|
+}
|
|
|
</style>
|
|
|
<style lang="stylus">
|
|
|
.el-tabs__nav-wrap::after {
|