1
This commit is contained in:
@@ -157,9 +157,8 @@
|
||||
<el-input
|
||||
type="textarea"
|
||||
v-model="form.abstrart"
|
||||
:autosize="{ minRows: 1, maxRows: 100 }"
|
||||
class="full-show-no-scroll"
|
||||
|
||||
:autosize="{ minRows: 1, maxRows: 100 }"
|
||||
class="full-show-no-scroll"
|
||||
placeholder=""
|
||||
/>
|
||||
</el-form-item>
|
||||
@@ -775,16 +774,32 @@
|
||||
>
|
||||
$ {{ getFee(form.journal) }}
|
||||
<div style="color: #8c8d8f" v-if="getFee(form.journal) && getFee(form.journal) != '0.00'">
|
||||
<i class="el-icon-warning" style="color: #517fd5; margin-right: 4px"></i>The article processing fee
|
||||
applies to papers submitted and ultimately accepted for publication after January 1, 2025. For
|
||||
authors seeking to apply for fee discounts, please
|
||||
<a
|
||||
style="color: rgb(81, 127, 213); cursor: pointer; text-decoration: underline"
|
||||
href="https://www.tmrjournals.com/apc/"
|
||||
target="_blank"
|
||||
>click here</a
|
||||
>
|
||||
to view detailed policies.
|
||||
|
||||
<div v-if="check_item.apc_url&&check_item.apc_content" >
|
||||
<i class="el-icon-warning" style="color: #517fd5; margin-right: 4px"></i><span class="apc_content" v-html="check_item.apc_content"></span>
|
||||
</div>
|
||||
<!-- <div v-if="form.journal == 1">
|
||||
<i class="el-icon-warning" style="color: #517fd5; margin-right: 4px"></i>The article processing
|
||||
fee applies to papers submitted and ultimately accepted for publication after January 1, 2025.
|
||||
For authors seeking to apply for fee discounts, please
|
||||
<a
|
||||
style="color: rgb(81, 127, 213); cursor: pointer; text-decoration: underline"
|
||||
href="https://www.tmrjournals.com/tmr/free-application/"
|
||||
target="_blank"
|
||||
>click here</a
|
||||
>
|
||||
to view detailed policies.
|
||||
</div> -->
|
||||
<div v-else>
|
||||
<i class="el-icon-warning" style="color: #517fd5; margin-right: 4px"></i>For more details about the Article Processing Charge (APC), please visit:
|
||||
<a
|
||||
style="color: rgb(81, 127, 213); cursor: pointer; text-decoration: underline"
|
||||
:href="check_item.apc_url"
|
||||
target="_blank"
|
||||
>{{check_item.apc_url}}</a
|
||||
>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</el-form-item>
|
||||
|
||||
@@ -1881,7 +1896,6 @@ export default {
|
||||
this.form.journal = '';
|
||||
this.reviewerof.journal = 1;
|
||||
|
||||
|
||||
if (localStorage.getItem('ms_journal_alias')) {
|
||||
localStorage.removeItem('ms_journal_alias');
|
||||
}
|
||||
@@ -3901,6 +3915,9 @@ export default {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
/deep/.apc_content a{
|
||||
color: rgb(81, 127, 213) !important; cursor: pointer !important; text-decoration: underline !important;
|
||||
}
|
||||
.formTopics {
|
||||
width: 100%;
|
||||
}
|
||||
@@ -4041,23 +4058,22 @@ export default {
|
||||
}
|
||||
/* 穿透Element UI的样式,强制覆盖所有限制 */
|
||||
.full-show-no-scroll::v-deep .el-textarea {
|
||||
|
||||
overflow: visible !important;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
.full-show-no-scroll::v-deep .el-textarea__inner {
|
||||
white-space: normal !important; /* 强制换行 */
|
||||
word-wrap: break-word !important; /* 长文本/长单词换行 */
|
||||
overflow: visible !important; /* 溢出内容显示,不隐藏 */
|
||||
|
||||
max-height: none !important; /* 取消最大高度限制 */
|
||||
resize: none !important; /* 禁止手动调整大小 */
|
||||
padding: 12px; /* 可选:调整内边距,避免内容贴边 */
|
||||
white-space: normal !important; /* 强制换行 */
|
||||
word-wrap: break-word !important; /* 长文本/长单词换行 */
|
||||
overflow: visible !important; /* 溢出内容显示,不隐藏 */
|
||||
|
||||
max-height: none !important; /* 取消最大高度限制 */
|
||||
resize: none !important; /* 禁止手动调整大小 */
|
||||
padding: 12px; /* 可选:调整内边距,避免内容贴边 */
|
||||
}
|
||||
|
||||
/* 隐藏滚动条(即使偶尔出现也看不见) */
|
||||
.full-show-no-scroll::v-deep ::-webkit-scrollbar {
|
||||
display: none !important;
|
||||
display: none !important;
|
||||
}
|
||||
::v-deep .el-textarea__inner {
|
||||
line-height: 1.5 !important;
|
||||
|
||||
Reference in New Issue
Block a user