Compare commits
5 Commits
29094c7e6a
...
b5f9d23615
| Author | SHA1 | Date | |
|---|---|---|---|
| b5f9d23615 | |||
| 76b105866c | |||
| 86581f3a11 | |||
| 4578ca0cb1 | |||
| 9e53f7a9f5 |
@@ -275,10 +275,7 @@ const DownloadBill: React.FC = () => {
|
|||||||
Taro.navigateBack();
|
Taro.navigateBack();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<View
|
<View className="hint_content" style={{ marginTop: `147px` }}>
|
||||||
className="hint_content"
|
|
||||||
style={{ marginTop: `${totalHeight}px` }}
|
|
||||||
>
|
|
||||||
<Text>最长可导出三个月的账单 </Text>
|
<Text>最长可导出三个月的账单 </Text>
|
||||||
<Text className="button_text" onClick={downloadExample}>
|
<Text className="button_text" onClick={downloadExample}>
|
||||||
示例文件
|
示例文件
|
||||||
@@ -322,7 +319,8 @@ const DownloadBill: React.FC = () => {
|
|||||||
近一周
|
近一周
|
||||||
</View>
|
</View>
|
||||||
<View
|
<View
|
||||||
className={`option_button ${dateType === "month" ? "active" : ""
|
className={`option_button ${
|
||||||
|
dateType === "month" ? "active" : ""
|
||||||
}`}
|
}`}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
selectDateRange("month");
|
selectDateRange("month");
|
||||||
@@ -331,7 +329,8 @@ const DownloadBill: React.FC = () => {
|
|||||||
近一月
|
近一月
|
||||||
</View>
|
</View>
|
||||||
<View
|
<View
|
||||||
className={`option_button ${dateType === "custom" ? "active" : ""
|
className={`option_button ${
|
||||||
|
dateType === "custom" ? "active" : ""
|
||||||
}`}
|
}`}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
selectDateRange("custom");
|
selectDateRange("custom");
|
||||||
|
|||||||
Reference in New Issue
Block a user