更新体现表格

This commit is contained in:
gyq 2024-12-27 15:03:02 +08:00
parent a8f2a8c8b4
commit 653ab223c9
1 changed files with 15 additions and 10 deletions

View File

@ -31,8 +31,7 @@
</el-form-item>
<el-form-item label="日期">
<el-date-picker v-model="timeValue" type="datetimerange" range-separator="" start-placeholder="开始日期"
end-placeholder="结束日期" @change="changeTime"
:default-time="['00:00:00', '23:59:59']">
end-placeholder="结束日期" @change="changeTime" :default-time="['00:00:00', '23:59:59']">
</el-date-picker>
</el-form-item>
<el-form-item>
@ -54,8 +53,12 @@
{{ scope.row.rate }}
</template>
</el-table-column>
<el-table-column label="是否转账" prop="isOut"></el-table-column>
<el-table-column label="会员编号" prop="relationId"></el-table-column>
<el-table-column label="成功提现金额" prop="total">
<template slot-scope="scope">
{{ scope.row.total }}
</template>
</el-table-column>
<el-table-column label="成功提现次数" prop="count"></el-table-column>
<el-table-column label="支付宝信息" prop="zhifubao">
<template slot-scope="scope">
{{ scope.row.zhifubaoName }} / {{ scope.row.zhifubao }}
@ -80,12 +83,14 @@
<el-tag type="success" v-if="scope.row.state == 1" disable-transitions>
成功
</el-tag>
<template v-if="scope.row.state == 2">
<el-tag type="danger" disable-transitions>
失败
</el-tag>
原因: {{ scope.row.refund }}
</template>
<div style="display: flex;flex-direction: column;" v-if="scope.row.state == 2">
<div>
<el-tag type="danger" disable-transitions>
失败
</el-tag>
</div>
<div>原因{{ scope.row.refund }}</div>
</div>
<el-tag type="warning" v-if="scope.row.state == 3" disable-transitions>
待审核
</el-tag>