Compare commits

...

2 Commits

Author SHA1 Message Date
zzyuan 09f37553cb 样式修改 2025-06-10 13:06:40 +08:00
zzyuan b1713714ad 账户退款明细 2025-06-10 13:06:26 +08:00
4 changed files with 11 additions and 6 deletions

View File

@ -122,7 +122,7 @@ aside {
//main-container全局样式
.app-container {
height: calc(100vh - 84px);
padding: 20px;
padding: 10px;
box-sizing: border-box;
display: flex;
flex-direction: column;

View File

@ -30,7 +30,7 @@ export default {
.app-main {
/* 50= navbar 50 */
height: 85vh;
overflow-y: auto;
// overflow-y: auto;
width: 100%;
position: relative;
overflow: hidden;

View File

@ -51,17 +51,17 @@
<el-table-column label="用户编号" align="center" prop="userId" :show-overflow-tooltip="true"/>
<el-table-column label="用户姓名" align="center" prop="nickName" :show-overflow-tooltip="true"/>
<el-table-column label="订单ID" align="center" prop="orderId" :show-overflow-tooltip="true"/>
<el-table-column label="交易金额" align="center" prop="actualAmount" :show-overflow-tooltip="true">
<el-table-column label="交易金额" align="center" prop="realAmount" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ (scope.row.actualAmount/100).toFixed(2) }}</span>
<span>{{ (scope.row.realAmount/100).toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="交易时间" align="center" prop="payTime" :show-overflow-tooltip="true"/>
<el-table-column label="支付类型" align="center" prop="payTypeName" :show-overflow-tooltip="true"/>
<!-- <el-table-column label="退款订单号" align="center" prop="" :show-overflow-tooltip="true"/> -->
<el-table-column label="退款金额" align="center" prop="realAmount" :show-overflow-tooltip="true">
<el-table-column label="退款金额" align="center" prop="actualAmount" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ (scope.row.realAmount/100).toFixed(2) }}</span>
<span>{{ (scope.row.actualAmount/100).toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="退款类型" align="center" prop="tradeTypeName" :show-overflow-tooltip="true"/>

View File

@ -190,6 +190,11 @@
width="50"
align="center"
/>
<el-table-column label="序号" align="center" width="80" type="index">
<template slot-scope="scope">
<span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
</template>
</el-table-column>
<el-table-column
label="用户编号"
align="center"