This commit is contained in:
2024-08-19 18:06:04 +08:00
parent 844d7b532b
commit 0d2f5b2c2c

View File

@@ -91,8 +91,9 @@
</el-table-column> </el-table-column>
<el-table-column :label="$t('citeList.is_wos')" width="80" align="center"> <el-table-column :label="$t('citeList.is_wos')" width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<p v-if="scope.row.is_wos == 1">{{ $t('citeList.yes') }}</p> <span v-if="scope.row.is_china == 0">{{ $t('citeList.is_china0') }}</span>
<p v-if="scope.row.is_wos == 0">{{ $t('citeList.no') }}</p> <p v-if="scope.row.is_wos == 1">{{ $t('citeList.no') }}</p>
<p v-if="scope.row.is_wos == 2">{{ $t('citeList.yes') }}</p>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column :label="$t('citeList.date')" width="90" align="center"> <!-- <el-table-column :label="$t('citeList.date')" width="90" align="center">
@@ -251,11 +252,12 @@ import VueUeditorWrap from 'vue-ueditor-wrap'; // ES6 Module
export default { export default {
data() { data() {
return { return {
tableWidth: !localStorage.getItem('langs') || localStorage.getItem('langs') == 'en' ? 100 :70, tableWidth: !localStorage.getItem('langs') || localStorage.getItem('langs') == 'en' ? 100 : 70,
queryForm: {}, queryForm: {},
is_wosList: [ is_wosList: [
{ title: this.$t('citeList.yes'), value: 1 }, { title: this.$t('citeList.yes'), value: 1 },
{ title: this.$t('citeList.no'), value: 0 } { title: this.$t('citeList.no'), value: 2 },
{ title: this.$t('citeList.is_china0Info'), value: 0 }
], ],
is_chinaList: [ is_chinaList: [
{ title: this.$t('citeList.yes'), value: 1 }, { title: this.$t('citeList.yes'), value: 1 },