上传文件
This commit is contained in:
@@ -22,8 +22,19 @@
|
||||
<font>Title :</font>
|
||||
<b> {{form.title}}</b>
|
||||
</p>
|
||||
<p v-show="form.type=='A'">
|
||||
<!-- <p v-show="form.type=='A'">
|
||||
<font>Ethical Approval :</font><b>{{form.approval?'Yes':'No'}}</b>
|
||||
</p> -->
|
||||
<p>
|
||||
<font>Ethical Approval :</font><b>{{form.approval?'Yes':'No'}}</b>
|
||||
<a target="_blank" :href="mediaUrl + form.approval_file" v-if="form.approval==1&&form.approval_file!=''" style="color: #777;">
|
||||
<img src="../../assets/img/icon_0.png" style="vertical-align: text-bottom;margin: 0 10px 0 30px;width: 15px;">
|
||||
<font>Ethical approval file</font>
|
||||
<i class="el-icon-download download" style="vertical-align: middle;margin:0 20px;font-weight: bold;color: #75abf1;"></i>
|
||||
</a>
|
||||
</p>
|
||||
<p v-if="form.approval==0&&form.approval_content!=''">
|
||||
<font>Explain the reason clearly :</font><b>{{form.approval_content}}</b>
|
||||
</p>
|
||||
<p v-if="form.special_num > 0">
|
||||
<font>Special Issues :</font><b>{{ form.special_title }}</b>
|
||||
@@ -499,6 +510,8 @@
|
||||
type: '',
|
||||
major: '',
|
||||
approval: false,
|
||||
approval_file:'',
|
||||
approval_content:'',
|
||||
repetition: '',
|
||||
manuscirpt: '',
|
||||
remarks: '',
|
||||
@@ -767,6 +780,8 @@
|
||||
this.form.special_title = res.article.special_title;
|
||||
this.form.major = res.major;
|
||||
this.form.approval = res.article.approval == 1 ? true : false;
|
||||
this.form.approval_file = res.article.approval_file
|
||||
this.form.approval_content = res.article.approval_content
|
||||
this.form.repetition = res.article.repetition;
|
||||
this.form.remarks = res.article.remarks;
|
||||
this.form.repeurl = res.article.repeurl;
|
||||
|
||||
Reference in New Issue
Block a user