style(material): 增强资料卡片边框可见性
- 将边框颜色从 gray-50 更新为 gray-200 - 更新 PlanPopup 组件类型定义导入路径 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -35,7 +35,7 @@ declare module 'vue' { | ... | @@ -35,7 +35,7 @@ declare module 'vue' { |
| 35 | PdfPreview: typeof import('./src/components/PdfPreview.vue')['default'] | 35 | PdfPreview: typeof import('./src/components/PdfPreview.vue')['default'] |
| 36 | Picker: typeof import('./src/components/time-picker-data/picker.vue')['default'] | 36 | Picker: typeof import('./src/components/time-picker-data/picker.vue')['default'] |
| 37 | PlanFormContainer: typeof import('./src/components/PlanFormContainer.vue')['default'] | 37 | PlanFormContainer: typeof import('./src/components/PlanFormContainer.vue')['default'] |
| 38 | - PlanPopup: typeof import('./src/components/PlanSchemes/PlanPopup.vue')['default'] | 38 | + PlanPopup: typeof import('./src/components/PlanPopup/index.vue')['default'] |
| 39 | PosterBuilder: typeof import('./src/components/PosterBuilder/index.vue')['default'] | 39 | PosterBuilder: typeof import('./src/components/PosterBuilder/index.vue')['default'] |
| 40 | ProductCard: typeof import('./src/components/ProductCard.vue')['default'] | 40 | ProductCard: typeof import('./src/components/ProductCard.vue')['default'] |
| 41 | QrCode: typeof import('./src/components/qrCode.vue')['default'] | 41 | QrCode: typeof import('./src/components/qrCode.vue')['default'] | ... | ... |
| 1 | <template> | 1 | <template> |
| 2 | - <view class="flex flex-row bg-white rounded-[24rpx] p-[24rpx] shadow-md border border-gray-50 material-card"> | 2 | + <view class="flex flex-row bg-white rounded-[24rpx] p-[24rpx] shadow-md border border-gray-200 material-card"> |
| 3 | <!-- 左侧图标 --> | 3 | <!-- 左侧图标 --> |
| 4 | <view class="w-[88rpx] h-[88rpx] mr-[24rpx] flex-shrink-0 flex items-center justify-center bg-gradient-to-br from-blue-50 to-blue-100 rounded-[20rpx] shadow-inner self-start"> | 4 | <view class="w-[88rpx] h-[88rpx] mr-[24rpx] flex-shrink-0 flex items-center justify-center bg-gradient-to-br from-blue-50 to-blue-100 rounded-[20rpx] shadow-inner self-start"> |
| 5 | <image :src="iconUrl" class="w-[48rpx] h-[48rpx]" mode="aspectFit" /> | 5 | <image :src="iconUrl" class="w-[48rpx] h-[48rpx]" mode="aspectFit" /> | ... | ... |
-
Please register or login to post a comment