diff --git a/src/pages/calendar/index.vue b/src/pages/calendar/index.vue
index 9090424..a27409c 100644
--- a/src/pages/calendar/index.vue
+++ b/src/pages/calendar/index.vue
@@ -26,7 +26,6 @@
-
当日事项
@@ -412,22 +411,30 @@ const handleSelectDate = (info) => {
margin: 16rpx;
background: #ffffff;
border-radius: 16rpx;
- padding: 16rpx;
+ padding: 24rpx 16rpx 16rpx;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
}
.section-title {
display: flex;
align-items: center;
- margin-bottom: 12rpx;
+ margin-bottom: 16rpx;
+ padding-left: 16rpx;
+ position: relative;
+
+ &::before {
+ content: '';
+ position: absolute;
+ left: 0;
+ width: 6rpx;
+ height: 24rpx;
+ background: linear-gradient(135deg, #667eea, #764ba2);
+ border-radius: 3rpx;
+ }
}
.title-bar {
- width: 6rpx;
- height: 24rpx;
- background: linear-gradient(135deg, #667eea, #764ba2);
- border-radius: 3rpx;
- margin-right: 10rpx;
+ display: none;
}
.title-text {
diff --git a/src/pages/mine.vue b/src/pages/mine.vue
index 9061fed..740cc90 100644
--- a/src/pages/mine.vue
+++ b/src/pages/mine.vue
@@ -58,7 +58,10 @@
@@ -28,31 +33,50 @@
-
-
@@ -143,6 +167,16 @@ function settingConfirm(e) {
function settingCancel() {
settingPickShow.value = false
}
+function getStatusClass(status, statusText) {
+ if (statusText && statusText.includes('正常')) {
+ return 'status-normal'
+ }
+ if (statusText && (statusText.includes('销卡') || statusText.includes('销户'))) {
+ return 'status-error'
+ }
+ return 'status-default'
+}
+
function dictStr(val, arr) {
let str = ''
arr.map(item => {
@@ -211,15 +245,6 @@ function selectStatus(item) {