is_wos
This commit is contained in:
@@ -91,8 +91,9 @@
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('citeList.is_wos')" width="80" align="center">
|
||||
<template slot-scope="scope">
|
||||
<p v-if="scope.row.is_wos == 1">{{ $t('citeList.yes') }}</p>
|
||||
<p v-if="scope.row.is_wos == 0">{{ $t('citeList.no') }}</p>
|
||||
<span v-if="scope.row.is_china == 0">{{ $t('citeList.is_china0') }}</span>
|
||||
<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>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column :label="$t('citeList.date')" width="90" align="center">
|
||||
@@ -196,7 +197,7 @@
|
||||
v-model="refenceForm.journal_name"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item :label="`${$t('citeList.author')}:`" prop="author">
|
||||
<el-form-item :label="`${$t('citeList.author')}:`" prop="author">
|
||||
<p v-if="this.doi_num == 1 && doiForm.author && doiForm.author != ''">{{ refenceForm.author }}</p>
|
||||
<data v-else>
|
||||
<el-input
|
||||
@@ -251,11 +252,12 @@ import VueUeditorWrap from 'vue-ueditor-wrap'; // ES6 Module
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
tableWidth: !localStorage.getItem('langs') || localStorage.getItem('langs') == 'en' ? 100 :70,
|
||||
tableWidth: !localStorage.getItem('langs') || localStorage.getItem('langs') == 'en' ? 100 : 70,
|
||||
queryForm: {},
|
||||
is_wosList: [
|
||||
{ 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: [
|
||||
{ title: this.$t('citeList.yes'), value: 1 },
|
||||
|
||||
Reference in New Issue
Block a user