|
@@ -104,6 +104,7 @@
|
|
|
type="text"
|
|
|
@click="handleDetail(scope.row)"
|
|
|
v-hasPermi="['business:INSTACTIONTASK:detail']"
|
|
|
+ v-if="scope.row.status != '0'"
|
|
|
>详情</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -141,11 +142,15 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <span slot="footer" class="dialog-footer">
|
|
|
+ <span slot="footer" class="dialog-footer" v-if="taskList.status == 0">
|
|
|
<el-button type="primary" @click="submitBtn('同意')">同意</el-button>
|
|
|
<el-button type="warning" @click="submitBtn('驳回')">驳回</el-button>
|
|
|
<el-button type="danger" @click="submitBtn('退回')">退回</el-button>
|
|
|
</span>
|
|
|
+ <span slot="footer" class="dialog-footer" v-else>
|
|
|
+ <el-button type="primary" @click="backDia">返回</el-button>
|
|
|
+
|
|
|
+ </span>
|
|
|
</el-dialog>
|
|
|
|
|
|
<pagination
|
|
@@ -322,6 +327,9 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ backDia(){
|
|
|
+ this.dialogVisible = false;
|
|
|
+ },
|
|
|
qx() {
|
|
|
//审批意见的取消
|
|
|
this.subForm = {};
|
|
@@ -346,6 +354,7 @@ export default {
|
|
|
getINSTACTIONTASK(row.id).then((res) => {
|
|
|
this.taskList = res.data;
|
|
|
this.dialogVisible = true;
|
|
|
+ this.componentUrl = res.data.infoUrl
|
|
|
});
|
|
|
},
|
|
|
/** 查询审批任务实例列表 */
|