Browse Source

采集驳回理由

gks 1 year ago
parent
commit
631adf2198
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/GATHER/index.vue

+ 2 - 2
src/views/GATHER/index.vue

@@ -136,7 +136,7 @@
             <el-button style="margin: 0 2px" size="mini" type="text" @click="handleUpdate(scope.row)">录入</el-button>
           </template>
 
-          <template v-if="scope.row.collStatus == 1 && scope.row.approveStatus == 0 && checkPermi(['gather:GATHER:approve'])">
+          <template v-if="scope.row.collStatus == 1 && (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) && checkPermi(['gather:GATHER:approve'])">
             <el-popconfirm title="确定提交审核吗?" @confirm="handleAudit(scope.row)">
               <el-button style="margin: 0 2px" size="mini" type="text" slot="reference">提交审核</el-button>
             </el-popconfirm>
@@ -354,7 +354,7 @@
         <el-button type="primary" @click="cancel">返 回</el-button>
       </div>
 
-      <div class="remark" v-if="form.remark != null && form.approveStatus == 3">
+      <div class="remark" v-if="form.remark != null">
         <div class="remark_title">驳回理由:</div>
         <div class="remark_text">{{ form.remark }}</div>
       </div>