tijiao
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div style="min-width: 1280px;" class="articleListEditorA">
|
<div style="min-width: 1280px" class="articleListEditorA">
|
||||||
<div class="handle-box">
|
<div class="handle-box">
|
||||||
<el-badge
|
<el-badge
|
||||||
:value="item.num"
|
:value="item.num"
|
||||||
@@ -8,7 +8,8 @@
|
|||||||
:hidden="item.num == 0 || item.state == 3 || item.state == 5"
|
:hidden="item.num == 0 || item.state == 3 || item.state == 5"
|
||||||
style="margin-right: 25px"
|
style="margin-right: 25px"
|
||||||
>
|
>
|
||||||
<el-button style="padding:7px 10px"
|
<el-button
|
||||||
|
style="padding: 7px 10px"
|
||||||
@click="
|
@click="
|
||||||
query.state = item.state;
|
query.state = item.state;
|
||||||
getdate();
|
getdate();
|
||||||
@@ -38,7 +39,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
|
|
||||||
<p style="height: 5px"></p>
|
<p style="height: 5px"></p>
|
||||||
<el-select size="mini" v-model="query.special_num" @change="getdate" placeholder="Please select guest" style="width: 245px">
|
<el-select size="mini" v-model="query.special_num" @change="getdate" placeholder="Please select guest" style="width: 245px">
|
||||||
<el-option :key="0" label="Not select special issue" :value="0"></el-option>
|
<el-option :key="0" label="Not select special issue" :value="0"></el-option>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in itemGuest"
|
v-for="item in itemGuest"
|
||||||
@@ -47,9 +48,9 @@
|
|||||||
:value="item.journal_special_id"
|
:value="item.journal_special_id"
|
||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
<el-input v-model="query.name" placeholder="Title" style="width: 250px" size="mini" clearable></el-input>
|
<el-input v-model="query.name" placeholder="Title" style="width: 250px" size="mini" clearable></el-input>
|
||||||
<el-input v-model="query.sn" placeholder="SN" style="width: 250px; margin-right: 10px" size="mini" clearable></el-input>
|
<el-input v-model="query.sn" placeholder="SN" style="width: 250px; margin-right: 10px" size="mini" clearable></el-input>
|
||||||
<el-button type="primary" icon="el-icon-search" @click="handleSearch" style="margin: 0 0 10px 0" size="mini">Search </el-button>
|
<el-button type="primary" icon="el-icon-search" @click="handleSearch" style="margin: 0 0 10px 0" size="mini">Search </el-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="!PreAcpVisible">
|
<div v-if="!PreAcpVisible">
|
||||||
@@ -459,8 +460,8 @@
|
|||||||
<font
|
<font
|
||||||
v-if="finalCount(item) > 0 && finalCount(item) != 'NaN'"
|
v-if="finalCount(item) > 0 && finalCount(item) != 'NaN'"
|
||||||
style="font-size: 14px; font-weight: normal; color: #333"
|
style="font-size: 14px; font-weight: normal; color: #333"
|
||||||
>Comprehensive Score : </font
|
>Comprehensive Score :
|
||||||
>
|
</font>
|
||||||
<span v-if="finalCount(item) > 0 && finalCount(item) != 'NaN'">{{ finalCount(item) }}</span>
|
<span v-if="finalCount(item) > 0 && finalCount(item) != 'NaN'">{{ finalCount(item) }}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -608,22 +609,22 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column> -->
|
</el-table-column> -->
|
||||||
<el-table-column prop="accept_sn" label="SN" width="240px">
|
<el-table-column prop="accept_sn" label="SN" width="240px">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<p>
|
<p>
|
||||||
{{ scope.row.accept_sn }}
|
{{ scope.row.accept_sn }}
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="success"
|
type="success"
|
||||||
plain
|
plain
|
||||||
icon="el-icon-tickets"
|
icon="el-icon-tickets"
|
||||||
@click="showdetaileditor(scope.row)"
|
@click="showdetaileditor(scope.row)"
|
||||||
style="margin-left: 10px; padding: 4px; float: right"
|
style="margin-left: 10px; padding: 4px; float: right"
|
||||||
>Detail</el-button
|
>Detail</el-button
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p v-if="scope.row.doi" style="color: #006699"><span>Doi: </span>{{ scope.row.doi }}</p>
|
<p v-if="scope.row.doi" style="color: #006699"><span>Doi: </span>{{ scope.row.doi }}</p>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="" label="Title">
|
<el-table-column prop="" label="Title">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<p v-if="scope.row.title == ''">Article{{ scope.row.p_article_id }}</p>
|
<p v-if="scope.row.title == ''">Article{{ scope.row.p_article_id }}</p>
|
||||||
@@ -1389,7 +1390,6 @@
|
|||||||
<p style="line-height: 20px; margin-top: 6px">{{ majorMes.email }}</p>
|
<p style="line-height: 20px; margin-top: 6px">{{ majorMes.email }}</p>
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item label="Research areas :">
|
<el-form-item label="Research areas :">
|
||||||
|
|
||||||
<common-major-list
|
<common-major-list
|
||||||
:disabled="majorMes.disabled"
|
:disabled="majorMes.disabled"
|
||||||
:list="majorValueList"
|
:list="majorValueList"
|
||||||
@@ -1633,7 +1633,7 @@ export default {
|
|||||||
})
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (this.majorMes.disabled) {
|
if (this.majorMes.disabled) {
|
||||||
this.majorValueList = [...res.data].map((item)=>({...item,str:item.major_title}));
|
this.majorValueList = [...res.data].map((item) => ({ ...item, str: item.major_title }));
|
||||||
} else {
|
} else {
|
||||||
this.majorValueList = [...res.data].map((item) => ({
|
this.majorValueList = [...res.data].map((item) => ({
|
||||||
selectedValue: Array.isArray(item.shu)
|
selectedValue: Array.isArray(item.shu)
|
||||||
@@ -2491,13 +2491,13 @@ export default {
|
|||||||
// 修改标记
|
// 修改标记
|
||||||
saveRemark() {
|
saveRemark() {
|
||||||
console.log('this.remark at line 2212:', this.remark);
|
console.log('this.remark at line 2212:', this.remark);
|
||||||
var mergedText = this.remark.content
|
var mergedText = this.remark.content;
|
||||||
// .filter((item) => item.text && item.text.trim() !== '') // 过滤掉空或全空格项
|
// .filter((item) => item.text && item.text.trim() !== '') // 过滤掉空或全空格项
|
||||||
// .map((item) => {
|
// .map((item) => {
|
||||||
// const text = item.text.trim();
|
// const text = item.text.trim();
|
||||||
// return text.endsWith('。') ? text : text + '。';
|
// return text.endsWith('。') ? text : text + '。';
|
||||||
// })
|
// })
|
||||||
// .join('');
|
// .join('');
|
||||||
|
|
||||||
console.log('拼接结果:', mergedText);
|
console.log('拼接结果:', mergedText);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user