更新体现表格

This commit is contained in:
gyq
2024-12-27 15:03:02 +08:00
parent a8f2a8c8b4
commit 653ab223c9

View File

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