开发钱包相关页面,调试提现接口

This commit is contained in:
2025-09-27 23:08:32 +08:00
parent a1be43e02b
commit d6fb08eee4
13 changed files with 972 additions and 207 deletions

View File

@@ -0,0 +1,64 @@
.download-bill-records-page {
color: #3C3C4399;
font-family: PingFang SC;
font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 24px;
letter-spacing: 0px;
padding: 20px;
.records-container {
.record-item {
padding: 16px 0;
&+.record-item {
border-top: 1px solid #0000000D;
}
.title-text {
font-size: 16px;
color: #000;
margin-bottom: 8px;
}
.info-item {
display: flex;
gap: 20px;
&+.info-item {
margin-top: 8px;
}
Text {
&:first-child {
width: 64px;
}
&:last-child {
flex: 1;
color: #000;
&.btn {
color: #007AFF;
flex: unset;
width: fit-content;
}
}
}
}
}
}
.tips {
font-size: 12px;
text-align: center;
position: fixed;
bottom: 40px;
width: calc(100% - 40px);
}
}

View File

@@ -1,9 +1,45 @@
import React, { useState, useEffect } from "react";
import { View } from "@tarojs/components";
import { View, Text } from "@tarojs/components";
import "./index.scss";
const DownloadBillRecords: React.FC = () => {
return (
<View></View>
<View className="download-bill-records-page">
<View className="records-container">
<View className="record-item">
<View className="title-text"></View>
<View className="info-item">
<Text></Text>
<Text>2025912 19:03:06</Text>
</View>
<View className="info-item">
<Text></Text>
<Text>2025912 19:03:06 2025912 19:03:06</Text>
</View>
<View className="info-item">
<Text></Text>
<Text className="btn"></Text>
</View>
</View>
<View className="record-item">
<View className="title-text"></View>
<View className="info-item">
<Text></Text>
<Text>2025912 19:03:06</Text>
</View>
<View className="info-item">
<Text></Text>
<Text>2025912 19:03:06 2025912 19:03:06</Text>
</View>
<View className="info-item">
<Text></Text>
<Text className="btn"></Text>
</View>
</View>
</View>
<View className="tips">7</View>
</View>
);
};