提现界面修改

This commit is contained in:
“wanyongkang”
2024-02-05 10:52:40 +08:00
parent 81f58ed3b5
commit 6039f13f58

View File

@@ -43,7 +43,7 @@
</el-input>
<el-button size='small' @click="search()" type="primary" icon="el-icon-search">搜索</el-button>
</div>
<el-table :row-class-name="tableRowClassName" :show-overflow-tooltip="true" :data="tableData" height="calc(100% - 120px)" style="width: 100%">
<el-table :row-class-name="tableRowClassName" :show-overflow-tooltip="true" :data="tableData" height="calc(100% - 120px)">
<el-table-column prop="username" label="用户" width="100"> </el-table-column>
<el-table-column prop="money" label="提现金额" width="100"> </el-table-column>
<el-table-column prop="apply_reason" label="提现理由"> </el-table-column>
@@ -56,9 +56,8 @@
<el-table-column show-overflow-tooltip prop="create_time" label="提现时间"> </el-table-column>
<el-table-column show-overflow-tooltip prop="update_time" label="处理时间"> </el-table-column>
<el-table-column
fixed="right"
label="操作"
width="100">
>
<template slot-scope="scope">
<el-button v-show="scope.row.status == '待处理'" @click="handleClick(scope.row)" type="text" size="small">处理</el-button>
</template>