|
@@ -49,7 +49,7 @@
|
|
|
</div>
|
|
|
</TabPane>
|
|
|
<TabPane :label="$t('jyzx.application.discuss')" name="name2">
|
|
|
- <EmptyData textContent="暂无数据" v-if="!otherList.length"></EmptyData>
|
|
|
+ <EmptyData :textContent="$t('jyzx.common.noData')" v-if="!otherList.length"></EmptyData>
|
|
|
<div v-else class="app-table">
|
|
|
<Table :columns="comCol" :data="otherList">
|
|
|
<template slot-scope="{ row }" slot="myAppraise">
|
|
@@ -73,7 +73,7 @@
|
|
|
<span>{{ $store.state.userInfo.name }} 【 {{ curData.name }} 】</span>
|
|
|
</div>
|
|
|
<Table :columns="appraiseColumns" :data="appraiseArr" border>
|
|
|
- <template slot-scope="{ row, index }" slot="result">
|
|
|
+ <template slot-scope="{ row }" slot="result">
|
|
|
<span v-show="row.result === '优秀'" style="color: #007700;">{{ $t('jyzx.application.fine') }}</span>
|
|
|
<span v-show="row.result === '合格'" style="color: orangered;">{{ $t('jyzx.application.qualified') }}</span>
|
|
|
<span v-show="row.result === '不合格'" style="color: red;">{{ $t('jyzx.application.unqualified') }}</span>
|