修复查看详情状态异常问题

This commit is contained in:
dragon
2024-10-17 18:01:13 +08:00
parent 7add80a5ae
commit 3f905c2b1e

View File

@@ -104,7 +104,7 @@
v-loading="tableLoading"
@header-click="headerCopy"
@selection-change="handleSelectionChange"
style="width: 100%"
style="width: 100%;overflow-x: auto;"
>
<el-table-column type="selection"> </el-table-column>
<el-table-column align="center" prop="erbanNo" label="MoliStar ID" />
@@ -150,7 +150,7 @@
{{ scope.row.remark ? scope.row.remark : "/" }}
</template>
</el-table-column>
<el-table-column align="center" prop="hallSalary" label="操作">
<el-table-column align="center" prop="hallSalary" label="操作" width="150">
<template v-slot="scope">
<div v-if="scope.row.status == 0">
<el-button
@@ -172,7 +172,7 @@
驳回
</el-button>
</div>
<div v-else>
<div>
<el-button
@click="accountInfosFun(scope.row)"
type="text"
@@ -264,7 +264,7 @@ export default {
btnLoading: false, // 导出弹出框(dialog)的确认按钮
tableLoading: false, // 表格是否加载中
tableData: [], // 接口返回的表格数据
tableData: [], // 接口 返回的表格数据
pageTotal: 0, // 接口返回的表格总条数
pageParams: {
pageNo: 1,