|
|
|
|
@ -232,7 +232,7 @@
|
|
|
|
|
<template v-slot:btns>
|
|
|
|
|
<el-table-column align='center' label="操作" width="120" header-align="center">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div v-if="scope.row.carry_status==1 && showform.main_admin_id==stateObj.login_id">
|
|
|
|
|
<div v-if="scope.row.carry_status==1 && (showform.main_admin_id==stateObj.login_id || stateObj.is_guiji)">
|
|
|
|
|
<Button v-if="scope.row.keep_status===1" @click="startLoad(scope.row,'check')" type="primary"
|
|
|
|
|
size="small">审核进展</Button>
|
|
|
|
|
</div>
|
|
|
|
|
@ -334,7 +334,7 @@
|
|
|
|
|
<Button style="margin-bottom: 5px;" v-if="scope.row.keep_status===-1"
|
|
|
|
|
@click="startLoad(scope.row,'editor')" type="primary" size="small">提交进展</Button>
|
|
|
|
|
<Button style="margin-bottom: 5px;"
|
|
|
|
|
v-if="scope.row.keep_status===0 || scope.row.keep_status===3 "
|
|
|
|
|
v-if="scope.row.keep_status===0 || scope.row.keep_status===3"
|
|
|
|
|
@click="startLoad(scope.row,'editor')" type="primary" size="small">编辑进展</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else></div>
|
|
|
|
|
@ -367,7 +367,7 @@
|
|
|
|
|
</div> -->
|
|
|
|
|
<div>
|
|
|
|
|
<!-- 任务完成 且是责任人可以 做 归档 -->
|
|
|
|
|
<Button v-if="showform.audit_status===3 && stateObj.login_id===showform.main_admin_id" type="primary"
|
|
|
|
|
<Button v-if="showform.audit_status===3 && (stateObj.login_id===showform.main_admin_id || stateObj.is_guiji)" type="primary"
|
|
|
|
|
style='margin-left:5px;margin-bottom:5px;' @click="backPlan">归档</Button>
|
|
|
|
|
<Button v-if="type=='train'||type=='uploads'||type=='study'" type="primary"
|
|
|
|
|
style='margin-left:5px;margin-bottom:5px;' @click="submitFeedback()">提交</Button>
|
|
|
|
|
|