2、口门门禁管理系统--->车辆违规管理模块--->车辆违规记录管理---修改bug

3、口门门禁管理系统--->车辆违规管理模块--->黑名单管理---修改bug
pet
fufeifei 2024-11-28 17:22:43 +08:00
parent bfc7f1e02b
commit c7578be3be
3 changed files with 4 additions and 4 deletions

View File

@ -73,13 +73,13 @@
<el-table-column label="操作" align="center" width="480">
<template slot-scope="{row}">
<el-button icon="el-icon-view" size="mini" @click="showDetail(row.BLACK_LIST_ID)"></el-button>
<el-button v-show="roleName !== '普通用户角色'" type="danger" icon="el-icon-delete" size="mini" @click="deleteSingleDataDeleteBtn(row.BLACK_LIST_ID, row.VEHICLE_ID)"></el-button>
<el-button v-show="roleName === '系统管理员角色' ? true : false" type="danger" icon="el-icon-delete" size="mini" @click="deleteSingleDataDeleteBtn(row.BLACK_LIST_ID, row.VEHICLE_ID)"></el-button>
</template>
</el-table-column>
</el-table>
<div class="page-btn-group">
<div>
<el-button v-show="roleName !== '普通用户角色'" type="primary" icon="el-icon-plus" @click="openAddDialogAddBtn"></el-button>
<el-button v-show="roleName === '系统管理员角色' ? true : false" type="primary" icon="el-icon-plus" @click="openAddDialogAddBtn"></el-button>
</div>
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getPageList" />
</div>

View File

@ -31,7 +31,7 @@
<el-table-column label="操作" align="center" width="300">
<template slot-scope="{row}">
<el-button icon="el-icon-view" size="mini" @click="showDetail(row.VIOLATION_ID)"></el-button>
<el-button v-show="roleName !== '普通用户角色'" type="danger" icon="el-icon-delete" size="mini" @click="deleteSingleDataDeleteBtn(row.VIOLATION_ID)"></el-button>
<el-button v-show="roleName === '系统管理员角色' ? true : false" type="danger" icon="el-icon-delete" size="mini" @click="deleteSingleDataDeleteBtn(row.VIOLATION_ID)"></el-button>
</template>
</el-table-column>
</el-table>

View File

@ -86,7 +86,7 @@
</el-table>
<div class="page-btn-group">
<div>
<el-button v-show="roleName !== '普通用户角色'" type="primary" icon="el-icon-plus" @click="openAddDialogAddBtn"></el-button>
<el-button v-show="roleName === '系统管理员角色' ? true : false" type="primary" icon="el-icon-plus" @click="openAddDialogAddBtn"></el-button>
</div>
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getPageList" />
</div>