Browse Source

新闻审核-目前详情不可同意

Sanmu8 1 year ago
parent
commit
3f454403c3
1 changed files with 10 additions and 1 deletions
  1. 10 1
      src/views/task/index.vue

+ 10 - 1
src/views/task/index.vue

@@ -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
       });
     },
     /** 查询审批任务实例列表 */