调试
This commit is contained in:
@@ -99,7 +99,7 @@ const handleTabClick = (path) => {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-top: env(safe-area-inset-top, 0px);
|
margin-top: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TabBar 固定在底部 */
|
/* TabBar 固定在底部 */
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="calendar-container">
|
<div class="calendar-container">
|
||||||
<van-calendar title="日历" :poppable="false" :show-confirm="false" :formatter="formatterCalendar" :min-date="minDate"
|
<van-calendar title="日历"
|
||||||
:max-date="maxDate" @month-show="onMonthShow" @select="onDateSelect" />
|
:poppable="false"
|
||||||
|
:show-confirm="false"
|
||||||
|
:formatter="formatterCalendar"
|
||||||
|
:min-date="minDate"
|
||||||
|
:max-date="maxDate"
|
||||||
|
@month-show="onMonthShow"
|
||||||
|
@select="onDateSelect" />
|
||||||
|
|
||||||
<!-- 日期交易列表弹出层 -->
|
<!-- 日期交易列表弹出层 -->
|
||||||
<van-popup v-model:show="listVisible" position="bottom" :style="{ height: '85%' }" round closeable>
|
<van-popup v-model:show="listVisible" position="bottom" :style="{ height: '85%' }" round closeable>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="email-record-container" style="padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));">
|
<div class="email-record-container" style="padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));">
|
||||||
<!-- 顶部导航栏 -->
|
<!-- 顶部导航栏 -->
|
||||||
<van-nav-bar title="邮件记录" fixed placeholder>
|
<van-nav-bar title="邮件记录" placeholder>
|
||||||
<template #right>
|
<template #right>
|
||||||
<van-button
|
<van-button
|
||||||
size="small"
|
size="small"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div style="padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));">
|
<div style="padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));">
|
||||||
<van-nav-bar title="设置" />
|
<van-nav-bar title="设置" placeholder/>
|
||||||
<div class="detail-header">
|
<div class="detail-header">
|
||||||
<p>账单导入</p>
|
<p>账单导入</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="transaction-record-container" style="padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));">
|
<div class="transaction-record-container" style="padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));">
|
||||||
<!-- 顶部导航栏 -->
|
<!-- 顶部导航栏 -->
|
||||||
<van-nav-bar title="交易记录" fixed placeholder style="z-index: 9999;">
|
<van-nav-bar title="交易记录" placeholder>
|
||||||
<template #right>
|
<template #right>
|
||||||
<van-button type="primary" size="small" @click="openAddDialog">
|
<van-button type="primary" size="small" @click="openAddDialog">
|
||||||
手动录账
|
手动录账
|
||||||
|
|||||||
Reference in New Issue
Block a user