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