微调
This commit is contained in:
@@ -84,9 +84,7 @@
|
|||||||
clearInterval(this.dingshi)
|
clearInterval(this.dingshi)
|
||||||
}
|
}
|
||||||
},1000)
|
},1000)
|
||||||
// setTimeout(()=>{
|
|
||||||
|
|
||||||
// },5000)
|
|
||||||
},
|
},
|
||||||
// 获取资料状态
|
// 获取资料状态
|
||||||
getInfoStatu(){
|
getInfoStatu(){
|
||||||
|
|||||||
@@ -569,7 +569,7 @@
|
|||||||
<el-option :key="3" label="Reject" :value="3"></el-option>
|
<el-option :key="3" label="Reject" :value="3"></el-option>
|
||||||
<el-option :key="4" label="Revision" :value="4"></el-option>
|
<el-option :key="4" label="Revision" :value="4"></el-option>
|
||||||
<el-option :key="6" label="Pre-accept" :value="6"></el-option>
|
<el-option :key="6" label="Pre-accept" :value="6"></el-option>
|
||||||
<el-option :key="5" label="Accept" :value="5"></el-option>
|
<el-option :key="5" label="Accept" :value="5" :disabled="curState == 6 ? false : true"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="Comments for authors :" v-show="editform.state==4">
|
<el-form-item label="Comments for authors :" v-show="editform.state==4">
|
||||||
@@ -585,7 +585,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button @click="editVisible = false">Cancel</el-button>
|
<el-button @click="editVisible = false; curState = null">Cancel</el-button>
|
||||||
<el-button type="primary" @click="saveEdit">Save</el-button>
|
<el-button type="primary" @click="saveEdit">Save</el-button>
|
||||||
</span>
|
</span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
@@ -817,6 +817,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
curState:null,
|
||||||
baseUrl: this.Common.baseUrl,
|
baseUrl: this.Common.baseUrl,
|
||||||
mediaUrl: this.Common.mediaUrl,
|
mediaUrl: this.Common.mediaUrl,
|
||||||
items: '',
|
items: '',
|
||||||
@@ -1112,6 +1113,8 @@
|
|||||||
},
|
},
|
||||||
// 修改文章状态弹出框
|
// 修改文章状态弹出框
|
||||||
testvis(e) {
|
testvis(e) {
|
||||||
|
// console.log(e,'e')
|
||||||
|
this.curState = e.state
|
||||||
this.editVisible = true;
|
this.editVisible = true;
|
||||||
this.editform.title = e.title;
|
this.editform.title = e.title;
|
||||||
this.editform.articleId = e.article_id;
|
this.editform.articleId = e.article_id;
|
||||||
@@ -1120,6 +1123,7 @@
|
|||||||
this.editform.state_old = e.state;
|
this.editform.state_old = e.state;
|
||||||
this.editform.editormsg = '';
|
this.editform.editormsg = '';
|
||||||
this.editform.proposal_content = '';
|
this.editform.proposal_content = '';
|
||||||
|
|
||||||
this.$api
|
this.$api
|
||||||
.post('api/Article/getArticleDetail', {
|
.post('api/Article/getArticleDetail', {
|
||||||
articleId: e.article_id,
|
articleId: e.article_id,
|
||||||
|
|||||||
Reference in New Issue
Block a user