周五定时更新

This commit is contained in:
2025-10-31 14:09:58 +08:00
parent a60603acd0
commit a2fc94b402
28 changed files with 830 additions and 265 deletions

View File

@@ -28,8 +28,23 @@
<el-table-column label="总金额(USDT)" min-width="140">
<template #default="scope"><span class="value strong">{{ (scope.row && scope.row.totalPrice) != null ? scope.row.totalPrice : '—' }}</span></template>
</el-table-column>
<el-table-column label="已支付金额(USDT)" min-width="140">
<template #default="scope"><span class="value strong">{{ (scope.row && scope.row.payAmount) != null ? scope.row.payAmount : '—' }}</span></template>
<el-table-column min-width="180">
<template #header>
<el-tooltip placement="top" effect="dark">
<div slot="content">
实际支付金额/理论支付金额<br/>
1. 实际支付金额是按照矿机实际算力计算支付金额<br/>
2. 理论支付金额是卖家定义出售价格
</div>
<span style="display:inline-flex;align-items:center;gap:6px;">
<i class="el-icon-question" style="color:#909399;" aria-label="说明" role="img"></i>
已支付金额(USDT)
</span>
</el-tooltip>
</template>
<template #default="scope">
<span class="value strong">{{ (scope.row && scope.row.payAmount) != null ? scope.row.payAmount : '—' }}</span>
</template>
</el-table-column>
<el-table-column label="待支付金额(USDT)" min-width="140">
<template #default="scope"><span class="value strong">{{ (scope.row && scope.row.noPayAmount) != null ? scope.row.noPayAmount : '—' }}</span></template>
@@ -65,7 +80,18 @@
<el-dialog :visible.sync="dialogVisible" width="520px" title="请扫码支付">
<div style="text-align:left; margin-bottom:12px; color:#666;">
<div style="margin-bottom:6px;">总金额(USDT)<b>{{ paymentDialog.totalPrice }}</b></div>
<div style="margin-bottom:6px;">已支付金额(USDT)<b class="value strong">{{ paymentDialog.payAmount }}</b></div>
<div style="margin-bottom:6px;display:flex;align-items:center;gap:6px;">
<el-tooltip placement="top" effect="dark">
<div slot="content">
实际支付金额/理论支付金额<br/>
1. 实际支付金额是按照矿机实际算力计算支付金额<br/>
2. 理论支付金额是卖家定义出售价格
</div>
<i class="el-icon-question" style="color:#909399;" aria-label="说明" role="img"></i>
</el-tooltip>
<span>已支付金额(USDT)</span>
<b class="value strong">{{ paymentDialog.payAmount }}</b>
</div>
<div style="margin-bottom:6px;">待支付金额(USDT)<b class="value strong">{{ paymentDialog.noPayAmount }}</b></div>
<!-- <div style="word-break:break-all;">收款地址<code>{{ orderDialog.address }}</code></div> -->
</div>