update pay function

This commit is contained in:
2025-11-25 08:00:56 +08:00
parent 761fe5d2f0
commit a2f33c2a8a
2 changed files with 28 additions and 8 deletions

View File

@@ -840,7 +840,7 @@ const InvestmentCalendar = () => {
)}
</Modal>
{/* K线图弹窗 - 需要更高的 z-index,因为投资日历本身就是 Modal */}
{/* K线图弹窗 - 使用超高 z-index 确保显示在最上层 */}
{selectedStock && (
<KLineChartModal
isOpen={klineModalVisible}
@@ -852,7 +852,7 @@ const InvestmentCalendar = () => {
stock={selectedStock}
eventTime={selectedEventTime}
size="5xl"
zIndex={2000}
zIndex={9998}
/>
)}