修复查看详情状态异常问题
This commit is contained in:
@@ -104,7 +104,7 @@
|
|||||||
v-loading="tableLoading"
|
v-loading="tableLoading"
|
||||||
@header-click="headerCopy"
|
@header-click="headerCopy"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
style="width: 100%"
|
style="width: 100%;overflow-x: auto;"
|
||||||
>
|
>
|
||||||
<el-table-column type="selection"> </el-table-column>
|
<el-table-column type="selection"> </el-table-column>
|
||||||
<el-table-column align="center" prop="erbanNo" label="MoliStar ID" />
|
<el-table-column align="center" prop="erbanNo" label="MoliStar ID" />
|
||||||
@@ -150,7 +150,7 @@
|
|||||||
{{ scope.row.remark ? scope.row.remark : "/" }}
|
{{ scope.row.remark ? scope.row.remark : "/" }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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">
|
<template v-slot="scope">
|
||||||
<div v-if="scope.row.status == 0">
|
<div v-if="scope.row.status == 0">
|
||||||
<el-button
|
<el-button
|
||||||
@@ -172,7 +172,7 @@
|
|||||||
驳回
|
驳回
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div>
|
||||||
<el-button
|
<el-button
|
||||||
@click="accountInfosFun(scope.row)"
|
@click="accountInfosFun(scope.row)"
|
||||||
type="text"
|
type="text"
|
||||||
@@ -264,7 +264,7 @@ export default {
|
|||||||
btnLoading: false, // 导出弹出框(dialog)的确认按钮
|
btnLoading: false, // 导出弹出框(dialog)的确认按钮
|
||||||
tableLoading: false, // 表格是否加载中
|
tableLoading: false, // 表格是否加载中
|
||||||
|
|
||||||
tableData: [], // 接口返回的表格数据
|
tableData: [], // 接口 返回的表格数据
|
||||||
pageTotal: 0, // 接口返回的表格总条数
|
pageTotal: 0, // 接口返回的表格总条数
|
||||||
pageParams: {
|
pageParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
|
Reference in New Issue
Block a user