会签调试,用户编号隐藏

This commit is contained in:
hongchao 2025-01-21 14:29:40 +08:00
parent 5bf14644a8
commit 05790958e6
3 changed files with 7 additions and 7 deletions

View File

@ -85,7 +85,7 @@
</template>
</el-table-column>
<el-table-column label="验收结论" align="center" prop="checkResult" :show-overflow-tooltip="true"/>
<el-table-column label="操作" align="center" width="180" v-if="!isView">
<!-- <el-table-column label="操作" align="center" width="180" v-if="!isView">
<template slot-scope="scope">
<el-button size="mini" type="success" @click="pass(scope.row)" v-if="scope.row.status==2||scope.row.status==13||scope.row.status==14">
合格
@ -94,7 +94,7 @@
不合格
</el-button>
</template>
</el-table-column>
</el-table-column> -->
</el-table>
<!-- <pagination

View File

@ -84,7 +84,7 @@
<el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange" :selectable="checkSelectable" :row-class-name="getRowClassName">
<el-table-column type="selection" width="50" align="center"/>
<el-table-column label="用户编号" align="center" key="userId" prop="userId" v-if="columns[0].visible"/>
<el-table-column label="用户编号" align="center" key="userId" prop="userId" v-if="false"/>
<el-table-column label="用户名称" align="center" key="userName" prop="userName" v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>