fix: 自测问题统一修复。
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
"path": "pages/calendar/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"navigationStyle": "custom",
|
||||
"disableScroll": true
|
||||
}
|
||||
},
|
||||
@@ -49,21 +50,24 @@
|
||||
{
|
||||
"path": "pages/work/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
"navigationBarTitleText": "",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"path": "pages/statistic/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": ""
|
||||
"navigationBarTitleText": "",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/mine",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"disableScroll": true
|
||||
"disableScroll": true,
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<div class="calendar-container">
|
||||
<u-sticky offsetTop="0">
|
||||
<view class="content">
|
||||
<view class="calendar-header">
|
||||
<view class="header-content">
|
||||
<view class="title-section">
|
||||
@@ -18,9 +17,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-sticky>
|
||||
|
||||
<!-- 月视图和周视图显示,列视图显示表格形式 -->
|
||||
<div class="calendar-wrapper">
|
||||
<div v-show="type !== '3'" ref="fullcalendar" class="calendar-view" />
|
||||
</div>
|
||||
@@ -47,7 +44,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</div>
|
||||
</view>
|
||||
<!-- 悬停按钮刷新-->
|
||||
<refresh></refresh>
|
||||
</template>
|
||||
@@ -396,19 +393,8 @@ const handleSelectDate = (info) => {
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
.content {
|
||||
background-color: #f5f7fa;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.calendar-container {
|
||||
background: #f5f7fa;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.calendar-header {
|
||||
@@ -475,32 +461,16 @@ page {
|
||||
}
|
||||
|
||||
.events-section {
|
||||
flex: 1;
|
||||
margin: 6rpx 16rpx 10rpx;
|
||||
background: #ffffff;
|
||||
border-radius: 16rpx;
|
||||
padding: 20rpx 16rpx 16rpx;
|
||||
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
min-height: 0;
|
||||
min-height: 400rpx;
|
||||
}
|
||||
|
||||
.events-list {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
min-height: 0;
|
||||
|
||||
/* 隐藏滚动条 */
|
||||
&::-webkit-scrollbar {
|
||||
display: none !important;
|
||||
width: 0 !important;
|
||||
height: 0 !important;
|
||||
}
|
||||
scrollbar-width: none !important;
|
||||
-ms-overflow-style: none !important;
|
||||
/* 不设置 overflow,让它自然显示 */
|
||||
}
|
||||
|
||||
.section-title {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="work-container">
|
||||
<view class="content">
|
||||
|
||||
<!-- 账单统计分析 -->
|
||||
<view class="section-header" v-show="auth.hasPermi('invest:creditAnalysis:list')">
|
||||
@@ -61,6 +61,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <refresh></refresh> -->
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
@@ -103,18 +104,9 @@
|
||||
|
||||
<style lang="scss">
|
||||
/* #ifndef APP-NVUE */
|
||||
page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
background-color: #f5f7fa;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.work-container {
|
||||
.content {
|
||||
padding: 12rpx 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -321,8 +321,9 @@ getDicts('deal_category').then(result => {
|
||||
tempDebitTypeName.value = null
|
||||
queryAccountParams.value.debitType = null
|
||||
|
||||
// 如果是储蓄账户(type='1')且不是修改模式,显示储蓄账户类型选择
|
||||
if (form.value.type === '1' && form.value.id == null) {
|
||||
// 如果是储蓄账户(type='1'),显示储蓄账户类型选择
|
||||
// 编辑模式(id不为null且flag为null)时不需要显示,因为已经在getData中处理
|
||||
if (form.value.type === '1' && !(form.value.id != null && flag.value == null)) {
|
||||
debitTypeShow.value = true
|
||||
} else {
|
||||
debitTypeShow.value = false
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
>
|
||||
</u-navbar>
|
||||
|
||||
<u-sticky offsetTop="0rpx" customNavHeight="0rpx">
|
||||
<view class="search-view">
|
||||
<u--input v-model="queryParams.time" border="false" disabled placeholder="请输入时间" class="search-input"
|
||||
@blur="searchBlur" suffixIcon="calendar" suffixIconStyle="color: #909399">
|
||||
@@ -17,6 +18,9 @@
|
||||
<uni-icons type="list" size="18" color="#667eea"></uni-icons>
|
||||
<text>筛选</text>
|
||||
</view>
|
||||
</view>
|
||||
</u-sticky>
|
||||
|
||||
<u-transition :show="filterPanel" mode="fade">
|
||||
<view class="filter-panel" :style="{ height: `${windowHeight - 42}px` }">
|
||||
<view class="filter-panel-content">
|
||||
@@ -48,7 +52,6 @@
|
||||
></u-datetime-picker>
|
||||
</view>
|
||||
</u-transition>
|
||||
</view>
|
||||
<u-list @scrolltolower="loadmore" :spaceHeight="170" lowerThreshold="100">
|
||||
<u-list-item v-for="(item, index) in listData" :key="index">
|
||||
<view class="list-item">
|
||||
@@ -272,18 +275,6 @@ page {
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.btnAdd {
|
||||
width: 146rpx;
|
||||
height: 56rpx;
|
||||
line-height: 56rpx;
|
||||
border-radius: 8rpx;
|
||||
display:float;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.search-view {
|
||||
padding: 12rpx 32rpx;
|
||||
background-color: #ffffff;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="work-container">
|
||||
<view class="content">
|
||||
|
||||
<!-- 常用功能 -->
|
||||
<view class="section-header" v-show="auth.hasPermi('invest:accountDealRecord:list')">
|
||||
@@ -81,6 +81,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <refresh></refresh> -->
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
@@ -134,18 +135,9 @@ import auth from "@/plugins/auth"; // 建议使用auth进行鉴权操作
|
||||
|
||||
<style lang="scss">
|
||||
/* #ifndef APP-NVUE */
|
||||
page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
background-color: #f5f7fa;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.work-container {
|
||||
.content {
|
||||
padding: 12rpx 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user