5 Commits

Author SHA1 Message Date
b5f9d23615 Merge branch 'master' into feat/liujie 2025-12-31 10:55:58 +08:00
76b105866c 下载账单页面样式优化 2025-12-29 16:13:33 +08:00
86581f3a11 Merge branch 'feat/liujie' 2025-12-29 15:05:41 +08:00
4578ca0cb1 Merge branch 'feat/liujie' 2025-12-29 11:41:00 +08:00
9e53f7a9f5 Merge branch 'feat/liujie' 2025-12-29 10:23:25 +08:00

View File

@@ -275,10 +275,7 @@ const DownloadBill: React.FC = () => {
Taro.navigateBack();
}}
/>
<View
className="hint_content"
style={{ marginTop: `${totalHeight}px` }}
>
<View className="hint_content" style={{ marginTop: `147px` }}>
<Text> </Text>
<Text className="button_text" onClick={downloadExample}>
@@ -322,8 +319,9 @@ const DownloadBill: React.FC = () => {
</View>
<View
className={`option_button ${dateType === "month" ? "active" : ""
}`}
className={`option_button ${
dateType === "month" ? "active" : ""
}`}
onClick={() => {
selectDateRange("month");
}}
@@ -331,8 +329,9 @@ const DownloadBill: React.FC = () => {
</View>
<View
className={`option_button ${dateType === "custom" ? "active" : ""
}`}
className={`option_button ${
dateType === "custom" ? "active" : ""
}`}
onClick={() => {
selectDateRange("custom");
}}