|
@@ -77,7 +77,7 @@
|
|
|
|
|
|
<el-table-column label="平均分" align="center" v-if="btnCheck.zc">
|
|
<el-table-column label="平均分" align="center" v-if="btnCheck.zc">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <template v-if="scope.row.is_zc">
|
|
|
|
|
|
+ <template>
|
|
<el-popover placement="bottom" width="150" trigger="hover">
|
|
<el-popover placement="bottom" width="150" trigger="hover">
|
|
<div class="pt5 font-size-14 text-light flex-row">
|
|
<div class="pt5 font-size-14 text-light flex-row">
|
|
<span>专家平均打分</span>
|
|
<span>专家平均打分</span>
|
|
@@ -85,7 +85,7 @@
|
|
</div>
|
|
</div>
|
|
<ul v-if="scope.row.pingfen_info.record_all && scope.row.pingfen_info.record_all.length > 0"
|
|
<ul v-if="scope.row.pingfen_info.record_all && scope.row.pingfen_info.record_all.length > 0"
|
|
class="pop-list">
|
|
class="pop-list">
|
|
- <li v-for="(item,index) in scope.row.pingfen_info.record_all" :key="index">
|
|
|
|
|
|
+ <li v-for="(item, index) in scope.row.pingfen_info.record_all" :key="index">
|
|
<span class="font-size-13 text-light">{{ item.hbj_pfr }}</span>
|
|
<span class="font-size-13 text-light">{{ item.hbj_pfr }}</span>
|
|
<span class="font-size-13 text-light">{{ item.hpj_fs }}分</span>
|
|
<span class="font-size-13 text-light">{{ item.hpj_fs }}分</span>
|
|
</li>
|
|
</li>
|
|
@@ -97,15 +97,16 @@
|
|
</el-popover>
|
|
</el-popover>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
- <template v-else>
|
|
|
|
|
|
+ <!-- <template v-else>
|
|
--
|
|
--
|
|
- </template>
|
|
|
|
|
|
+ </template> -->
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="120">
|
|
<el-table-column label="操作" width="120">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-button type="text" v-if="btnCheck.pf" @click="toReview(scope.row.hb_id ,'pf')">评分</el-button>
|
|
|
|
- <el-button type="text" v-if="btnCheck.zc" :disabled="!scope.row.is_zc" @click="toReview(scope.row.hb_id , 'zc')">仲裁</el-button>
|
|
|
|
|
|
+ <el-button type="text" v-if="btnCheck.pf" @click="toReview(scope.row.hb_id, 'pf')">评分</el-button>
|
|
|
|
+ <el-button type="text" v-if="btnCheck.zc" :disabled="!scope.row.is_zc"
|
|
|
|
+ @click="toReview(scope.row.hb_id, 'zc')">仲裁</el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</template>
|
|
</template>
|
|
@@ -116,7 +117,7 @@
|
|
<el-table-column label="作者单位" width="200" prop="hb_hzdw"></el-table-column>
|
|
<el-table-column label="作者单位" width="200" prop="hb_hzdw"></el-table-column>
|
|
<el-table-column label="论文类别" width="200">
|
|
<el-table-column label="论文类别" width="200">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span v-for="(item, index) in scope.row.cate_info" :key="index">
|
|
|
|
|
|
+ <span v-for="(item, index) in scope.row.cate_info" :key="index">
|
|
{{ item.hh_name }}
|
|
{{ item.hh_name }}
|
|
<i v-if="index < scope.row.cate_info.length - 1">,</i>
|
|
<i v-if="index < scope.row.cate_info.length - 1">,</i>
|
|
</span>
|
|
</span>
|
|
@@ -142,7 +143,7 @@
|
|
</div>
|
|
</div>
|
|
<ul v-if="scope.row.pingfen_info.record_all && scope.row.pingfen_info.record_all.length > 0"
|
|
<ul v-if="scope.row.pingfen_info.record_all && scope.row.pingfen_info.record_all.length > 0"
|
|
class="pop-list">
|
|
class="pop-list">
|
|
- <li v-for="(item,index) in scope.row.pingfen_info.record_all" :key="index">
|
|
|
|
|
|
+ <li v-for="(item, index) in scope.row.pingfen_info.record_all" :key="index">
|
|
<span class="font-size-13 text-light">{{ item.hbj_pfr }}</span>
|
|
<span class="font-size-13 text-light">{{ item.hbj_pfr }}</span>
|
|
<span class="font-size-13 text-light">{{ item.hpj_fs }}分</span>
|
|
<span class="font-size-13 text-light">{{ item.hpj_fs }}分</span>
|
|
</li>
|
|
</li>
|
|
@@ -246,8 +247,8 @@ export default defineComponent({
|
|
handleQuery()
|
|
handleQuery()
|
|
})
|
|
})
|
|
}
|
|
}
|
|
- function toReview(id,difMark) {
|
|
|
|
- _this.$router.push({ name: 'zjpf', params: { id, difMark} })
|
|
|
|
|
|
+ function toReview(id, difMark) {
|
|
|
|
+ _this.$router.push({ name: 'zjpf', params: { id, difMark } })
|
|
}
|
|
}
|
|
function handleCommand(command) {
|
|
function handleCommand(command) {
|
|
let z_data = {};
|
|
let z_data = {};
|