党员报到按钮禁用

This commit is contained in:
liuye
2022-10-27 15:52:28 +08:00
parent f09c27abb2
commit 96acf75571

View File

@@ -51,7 +51,8 @@
<el-table-column slot="options" width="120px" fixed="right" label="操作" align="center"> <el-table-column slot="options" width="120px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<div class="table-options"> <div class="table-options">
<el-button type="text" @click="viewUser(row)">查看日志</el-button> <el-button type="text" @click="viewUser(row)" v-if="row.logStatus > 0">查看日志</el-button>
<el-button type="text" @click="viewUser(row)" v-else disabled>查看日志</el-button>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>