Browse Source

修改数据采集 录入按钮 代码处,不加 template 导致的导致无权限也可以显示录入按钮问题; 加上 template 解决

sakura 1 year ago
parent
commit
959ae37e05
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/views/GATHER/index.vue

+ 3 - 1
src/views/GATHER/index.vue

@@ -124,7 +124,9 @@
             @click="handleDownload(scope.row)"
             >下载导入模板</el-button
           > -->
-          <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 0" size="mini" type="text" v-has-permi="['gather:GATHER:add']"  @click="handleUpdate(scope.row)">录入</el-button>
+          <template v-if="scope.row.collStatus == 0">
+            <el-button style="margin: 0 2px" size="mini" type="text" v-has-permi="['gather:GATHER:add']"  @click="handleUpdate(scope.row)">录入</el-button>
+          </template>
           <template v-if="scope.row.reportStatus == 0 && scope.row.collStatus == 1">
             <el-popconfirm title="确定上报吗?" @confirm="handleReport(scope.row)">
               <el-button style="margin: 0 2px" size="mini" slot="reference" type="text"  v-hasPermi="['gather:GATHER:report']">上报</el-button>