开发钱包相关页面,调试提现接口
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -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>2025年9月12日 19:03:06</Text>
|
||||
</View>
|
||||
<View className="info-item">
|
||||
<Text>账单范围</Text>
|
||||
<Text>2025年9月12日 19:03:06 至 2025年9月12日 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>2025年9月12日 19:03:06</Text>
|
||||
</View>
|
||||
<View className="info-item">
|
||||
<Text>账单范围</Text>
|
||||
<Text>2025年9月12日 19:03:06 至 2025年9月12日 19:03:06</Text>
|
||||
</View>
|
||||
<View className="info-item">
|
||||
<Text></Text>
|
||||
<Text className="btn">查看材料</Text>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
<View className="tips">出于信息安全考虑,仅保留并展示7天内的账单下载记录</View>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user