下料完成
This commit is contained in:
@@ -1,444 +0,0 @@
|
||||
<template>
|
||||
<view class="anti-record">
|
||||
<!-- 加载中 -->
|
||||
<view v-if="loading" class="anti-record__loading">
|
||||
<text class="anti-record__loading-text">加载中...</text>
|
||||
</view>
|
||||
|
||||
<!-- 无记录 -->
|
||||
<view v-else-if="!loading && list.length === 0" class="anti-record__empty">
|
||||
<text class="anti-record__empty-text">暂无防腐记录</text>
|
||||
</view>
|
||||
|
||||
<!-- 有记录 -->
|
||||
<template v-else>
|
||||
<view class="anti-record__section" :style="{ ...props.customStyle }">
|
||||
<view class="anti-record__header">
|
||||
<view class="anti-record__bar"></view>
|
||||
<text class="anti-record__title">防腐记录</text>
|
||||
<text v-if="list.length > 1" class="anti-record__more" @click="showPopup = true">查看全部({{ list.length
|
||||
}})</text>
|
||||
</view>
|
||||
|
||||
<!-- 最新一条记录 -->
|
||||
<view class="anti-record__card" v-if="latest">
|
||||
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">防腐等级</text>
|
||||
<text class="anti-record__value">{{ latest.AnticorrosionLevel || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">中间漆</text>
|
||||
<text class="anti-record__value">{{ latest.IntermediatePaint || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">面漆</text>
|
||||
<text class="anti-record__value">{{ latest.Topcoat || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">漆膜厚度</text>
|
||||
<text class="anti-record__value">{{ latest.FilmThickness || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">喷砂情况</text>
|
||||
<view class="anti-record__value">
|
||||
{{ latest.SandBlasting || '--' }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">除锈喷砂情况</text>
|
||||
<view class="anti-record__value">
|
||||
{{ latest.RustSandBlasting || '--' }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">检查人</text>
|
||||
<text class="anti-record__value">{{ latest.CheckPersonName || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">检查时间</text>
|
||||
<text class="anti-record__value">{{ latest.CheckTime || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">检查结果</text>
|
||||
<view class="anti-record__tag"
|
||||
:class="latest.CheckResult === '合格' ? 'anti-record__tag--pass' : 'anti-record__tag--fail'">
|
||||
<text class="anti-record__tag-icon">{{ latest.CheckResult === '合格' ? '\u2713' : '\u2717'
|
||||
}}</text>
|
||||
<text class="anti-record__tag-text">{{ latest.CheckResult || '--' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="anti-record__row" v-if="latest.CheckResult !== '合格'">
|
||||
<view class="anti-record__label">不合格原因</view>
|
||||
<text class="anti-record__value">{{ latest.UnqualifiedReason }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row" v-if="latest.CheckResult !== '合格'">
|
||||
<view class="anti-record__label">整改要求</view>
|
||||
<text class="anti-record__value">{{ latest.RectifyRequirement
|
||||
}}</text>
|
||||
</view>
|
||||
<view class="anti-record__row--stack">
|
||||
<text class="anti-record__label--stack">照片</text>
|
||||
<view class="anti-record__value--stack">
|
||||
<nbd-photo-view :attachUrl="latest.AttachUrl1" :cols="4" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 弹窗:全部记录 -->
|
||||
<u-popup v-model="showPopup" mode="bottom" :safe-area-inset-bottom="true">
|
||||
<view class="anti-record__popup">
|
||||
<view class="anti-record__popup-hd">
|
||||
<text class="anti-record__popup-title">全部防腐记录</text>
|
||||
<text class="anti-record__popup-close" @click="showPopup = false">✕</text>
|
||||
</view>
|
||||
<scroll-view class="anti-record__popup-bd" scroll-y>
|
||||
<view v-for="(item, index) in list" :key="index"
|
||||
class="anti-record__card anti-record__card--popup"
|
||||
:class="item.CheckResult === '合格' ? 'anti-record__card--pass' : 'anti-record__card--fail'">
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">防腐等级</text>
|
||||
<text class="anti-record__value">{{ item.AnticorrosionLevel || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">中间漆</text>
|
||||
<text class="anti-record__value">{{ item.IntermediatePaint || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">面漆</text>
|
||||
<text class="anti-record__value">{{ item.Topcoat || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">漆膜厚度</text>
|
||||
<text class="anti-record__value">{{ item.FilmThickness || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">喷砂情况</text>
|
||||
<view class="anti-record__value">
|
||||
{{ item.SandBlasting || '--' }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">除锈喷砂情况</text>
|
||||
<view class="anti-record__value">
|
||||
{{ item.RustSandBlasting || '--' }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">检查人</text>
|
||||
<text class="anti-record__value">{{ item.CheckPersonName || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">检查时间</text>
|
||||
<text class="anti-record__value">{{ item.CheckTime || '--' }}</text>
|
||||
</view>
|
||||
<view class="anti-record__row">
|
||||
<text class="anti-record__label">检查结果</text>
|
||||
<view class="anti-record__tag"
|
||||
:class="item.CheckResult === '合格' ? 'anti-record__tag--pass' : 'anti-record__tag--fail'">
|
||||
<text class="anti-record__tag-icon">{{ item.CheckResult === '合格' ? '\u2713' :
|
||||
'\u2717'
|
||||
}}</text>
|
||||
<text class="anti-record__tag-text">{{ item.CheckResult || '--' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="anti-record__row" v-if="item.CheckResult === '不合格'">
|
||||
<text class="anti-record__label">不合格原因</text>
|
||||
<view class="anti-record__value">{{ item.UnqualifiedReason
|
||||
}}</view>
|
||||
</view>
|
||||
<view class="anti-record__row" v-if="item.CheckResult === '不合格'">
|
||||
<text class="anti-record__label">整改要求</text>
|
||||
<view class="anti-record__value-">{{ item.RectifyRequirement
|
||||
}}</view>
|
||||
</view>
|
||||
<view class="anti-record__row--stack">
|
||||
<text class="anti-record__label--stack">照片</text>
|
||||
<view class="anti-record__value--stack">
|
||||
<nbd-photo-view :attachUrl="item.AttachUrl1" :cols="4" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</u-popup>
|
||||
</template>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, computed, watch } from 'vue'
|
||||
import { reqGetAntiCorrosionCheck } from '@/api/hj.js'
|
||||
|
||||
const props = defineProps({
|
||||
params: { type: Object, default: () => ({}) },
|
||||
customStyle: { type: Object, default: () => ({}) },
|
||||
})
|
||||
|
||||
const list = ref([])
|
||||
const loading = ref(false)
|
||||
const showPopup = ref(false)
|
||||
|
||||
const latest = computed(() => list.value[0] || null)
|
||||
|
||||
const fetchRecords = async () => {
|
||||
|
||||
const { materialCode, projectId } = props.params
|
||||
if (!materialCode || !projectId) return
|
||||
loading.value = true
|
||||
|
||||
try {
|
||||
const res = await reqGetAntiCorrosionCheck(props.params)
|
||||
if (res.code === 1 && res.data) {
|
||||
list.value = res.data
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('获取防腐记录失败:', err)
|
||||
} finally {
|
||||
loading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
const materialCode = computed(() => props.params?.materialCode)
|
||||
const projectId = computed(() => props.params?.projectId)
|
||||
|
||||
watch([materialCode, projectId], fetchRecords, { immediate: true })
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
$primary: #2979ff;
|
||||
$bg: #f4f2ee;
|
||||
$card-bg: #fff;
|
||||
$card-shadow: 0 2rpx 16rpx rgba(0, 0, 0, 0.06);
|
||||
$text: #1a1a2e;
|
||||
$text-secondary: #8e99a4;
|
||||
|
||||
.anti-record {
|
||||
|
||||
&__loading,
|
||||
&__empty {
|
||||
padding: 40rpx 24rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&__loading-text,
|
||||
&__empty-text {
|
||||
font-size: 26rpx;
|
||||
color: $text-secondary;
|
||||
}
|
||||
|
||||
&__section {
|
||||
margin: 0 24rpx 20rpx;
|
||||
}
|
||||
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 12rpx;
|
||||
}
|
||||
|
||||
&__bar {
|
||||
width: 6rpx;
|
||||
height: 32rpx;
|
||||
border-radius: 3rpx;
|
||||
background: $primary;
|
||||
margin-right: 14rpx;
|
||||
}
|
||||
|
||||
&__title {
|
||||
font-size: 30rpx;
|
||||
font-weight: 700;
|
||||
color: $text;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
&__more {
|
||||
font-size: 24rpx;
|
||||
color: $primary;
|
||||
padding: 6rpx 16rpx;
|
||||
background: rgba($primary, 0.08);
|
||||
border-radius: 20rpx;
|
||||
}
|
||||
|
||||
&__card {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
background: $card-bg;
|
||||
border-radius: 12rpx;
|
||||
padding: 20rpx;
|
||||
box-shadow: $card-shadow;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 6rpx;
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
&--pass::before {
|
||||
background: #22c55e;
|
||||
}
|
||||
|
||||
&--fail::before {
|
||||
background: #ef4444;
|
||||
}
|
||||
}
|
||||
|
||||
&__row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 8rpx 0;
|
||||
|
||||
&+& {
|
||||
border-top: 1rpx solid #f0f0f0;
|
||||
}
|
||||
|
||||
&--stack {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
|
||||
.anti-record__value {
|
||||
margin-top: 8rpx;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__label {
|
||||
font-size: 26rpx;
|
||||
color: $text-secondary;
|
||||
flex-shrink: 0;
|
||||
margin-right: 24rpx;
|
||||
width: 160rpx;
|
||||
|
||||
&--stack {
|
||||
font-size: 26rpx;
|
||||
color: $text-secondary;
|
||||
flex-shrink: 0;
|
||||
margin-right: 24rpx;
|
||||
width: 140rpx;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
}
|
||||
|
||||
&__value {
|
||||
color: $text;
|
||||
flex: 1;
|
||||
text-align: left;
|
||||
font-family: "SF Mono", "Menlo", "Consolas", monospace;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
color: #0f1724;
|
||||
letter-spacing: 0.3rpx;
|
||||
|
||||
&--stack {
|
||||
padding-left: 20rpx;
|
||||
padding-bottom: 8rpx;
|
||||
padding-top: 8rpx;
|
||||
font-family: "SF Mono", "Menlo", "Consolas", monospace;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
color: #0f1724;
|
||||
letter-spacing: 0.3rpx;
|
||||
}
|
||||
}
|
||||
|
||||
&__tag {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6rpx;
|
||||
padding: 6rpx 16rpx;
|
||||
border-radius: 8rpx;
|
||||
min-width: 100rpx;
|
||||
justify-content: center;
|
||||
|
||||
&--pass {
|
||||
background: #ebf9f0;
|
||||
}
|
||||
|
||||
&--fail {
|
||||
background: #fef2f2;
|
||||
}
|
||||
|
||||
&-icon {
|
||||
font-size: 22rpx;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
&--pass &-icon {
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
&--fail &-icon {
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
&-text {
|
||||
font-size: 24rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
&--pass &-text {
|
||||
color: #16a34a;
|
||||
}
|
||||
|
||||
&--fail &-text {
|
||||
color: #dc2626;
|
||||
}
|
||||
}
|
||||
|
||||
// ===== 弹窗 =====
|
||||
&__popup {
|
||||
background: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 80vh;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
}
|
||||
|
||||
&__popup-hd {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 24rpx 28rpx 12rpx;
|
||||
border-bottom: 1rpx solid #f0f0f0;
|
||||
}
|
||||
|
||||
&__popup-title {
|
||||
font-size: 30rpx;
|
||||
font-weight: 700;
|
||||
color: $text;
|
||||
}
|
||||
|
||||
&__popup-close {
|
||||
font-size: 32rpx;
|
||||
color: $text-secondary;
|
||||
padding: 8rpx;
|
||||
}
|
||||
|
||||
&__popup-bd {
|
||||
flex: 1;
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
background: #f5f5f5;
|
||||
padding: 12rpx 20rpx 20rpx;
|
||||
}
|
||||
|
||||
&__card--popup {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
margin-bottom: 12rpx;
|
||||
box-shadow: $card-shadow;
|
||||
}
|
||||
|
||||
&__card--popup:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,362 @@
|
||||
<template>
|
||||
<view class="record-card">
|
||||
<!-- 加载中 -->
|
||||
<view v-if="list.length === 0" class="record-card__empty">
|
||||
<text class="record-card__empty-text">暂无{{ title }}记录</text>
|
||||
</view>
|
||||
|
||||
<!-- 有记录 -->
|
||||
<template v-else>
|
||||
<view class="record-card__section" :style="{ ...props.customStyle }">
|
||||
<view class="record-card__header">
|
||||
<view class="record-card__bar"></view>
|
||||
<text class="record-card__title">{{ title }}记录</text>
|
||||
<text v-if="list.length > 1" class="record-card__more" @click="showPopup = true">查看全部({{ list.length }})</text>
|
||||
</view>
|
||||
|
||||
<!-- 最新一条记录 -->
|
||||
<view class="record-card__card" v-if="latest"
|
||||
:class="cardStatus(latest) === 'pass' ? 'record-card__card--pass' : 'record-card__card--fail'">
|
||||
<view v-for="field in fields" :key="field.key">
|
||||
<view v-if="isVisible(field, latest)" :class="field.type === 'photo' ? 'record-card__row--stack' : 'record-card__row'">
|
||||
<text :class="field.type === 'photo' ? 'record-card__label--stack' : 'record-card__label'">{{ field.label }}</text>
|
||||
|
||||
<!-- text(默认) -->
|
||||
<text v-if="!field.type || field.type === 'text'" class="record-card__value">
|
||||
{{ latest[field.key] || '--' }}
|
||||
</text>
|
||||
|
||||
<!-- tag -->
|
||||
<view v-else-if="field.type === 'tag'" class="record-card__tag"
|
||||
:style="tagBgStyle(field, latest)">
|
||||
<text class="record-card__tag-icon" :style="tagIconStyle(field, latest)">
|
||||
{{ tagPass(field, latest) ? '\u2713' : '\u2717' }}
|
||||
</text>
|
||||
<text class="record-card__tag-text" :style="tagTextStyle(field, latest)">
|
||||
{{ tagDisplayText(field, latest) }}
|
||||
</text>
|
||||
</view>
|
||||
|
||||
<!-- photo -->
|
||||
<view v-else-if="field.type === 'photo'" class="record-card__value--stack">
|
||||
<nbd-photo-view :attachUrl="latest[field.key]" :cols="field.cols || 4" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 弹窗:全部记录 -->
|
||||
<u-popup v-model="showPopup" mode="bottom" :safe-area-inset-bottom="true">
|
||||
<view class="record-card__popup">
|
||||
<view class="record-card__popup-hd">
|
||||
<text class="record-card__popup-title">全部{{ title }}记录</text>
|
||||
<text class="record-card__popup-close" @click="showPopup = false">✕</text>
|
||||
</view>
|
||||
<scroll-view class="record-card__popup-bd" scroll-y>
|
||||
<view v-for="(item, index) in list" :key="index"
|
||||
class="record-card__card record-card__card--popup"
|
||||
:class="cardStatus(item) === 'pass' ? 'record-card__card--pass' : 'record-card__card--fail'">
|
||||
<view v-for="field in fields" :key="field.key">
|
||||
<view v-if="isVisible(field, item)" :class="field.type === 'photo' ? 'record-card__row--stack' : 'record-card__row'">
|
||||
<text :class="field.type === 'photo' ? 'record-card__label--stack' : 'record-card__label'">{{ field.label }}</text>
|
||||
|
||||
<!-- text -->
|
||||
<text v-if="!field.type || field.type === 'text'" class="record-card__value">
|
||||
{{ item[field.key] || '--' }}
|
||||
</text>
|
||||
|
||||
<!-- tag -->
|
||||
<view v-else-if="field.type === 'tag'" class="record-card__tag"
|
||||
:style="tagBgStyle(field, item)">
|
||||
<text class="record-card__tag-icon" :style="tagIconStyle(field, item)">
|
||||
{{ tagPass(field, item) ? '\u2713' : '\u2717' }}
|
||||
</text>
|
||||
<text class="record-card__tag-text" :style="tagTextStyle(field, item)">
|
||||
{{ tagDisplayText(field, item) }}
|
||||
</text>
|
||||
</view>
|
||||
|
||||
<!-- photo -->
|
||||
<view v-else-if="field.type === 'photo'" class="record-card__value--stack">
|
||||
<nbd-photo-view :attachUrl="item[field.key]" :cols="field.cols || 4" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</u-popup>
|
||||
</template>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
fields: { type: Array, default: () => [] },
|
||||
list: { type: Array, default: () => [] },
|
||||
title: { type: String, default: '' },
|
||||
customStyle: { type: Object, default: () => ({}) },
|
||||
statusKey: { type: String, default: '' },
|
||||
statusMatch: { default: '合格' },
|
||||
})
|
||||
|
||||
const showPopup = ref(false)
|
||||
|
||||
const latest = computed(() => props.list[0] || null)
|
||||
|
||||
// ---- 字段可见性 ----
|
||||
const isVisible = (field, item) => {
|
||||
const cond = field.showWhen
|
||||
if (!cond) return true
|
||||
const val = item[cond.key]
|
||||
if (cond.notEqual !== undefined) return val !== cond.notEqual
|
||||
if (cond.equal !== undefined) return val === cond.equal
|
||||
return true
|
||||
}
|
||||
|
||||
// ---- tag 辅助 ----
|
||||
const tagPass = (field, item) => item[field.key] === field.tagMatch
|
||||
|
||||
const tagIconStyle = (field, item) => ({
|
||||
color: tagPass(field, item)
|
||||
? (field.passColor || '#22c55e')
|
||||
: (field.failColor || '#ef4444'),
|
||||
})
|
||||
|
||||
const tagTextStyle = (field, item) => ({
|
||||
color: tagPass(field, item)
|
||||
? (field.passColor || '#16a34a')
|
||||
: (field.failColor || '#dc2626'),
|
||||
})
|
||||
|
||||
const tagBgStyle = (field, item) => ({
|
||||
background: tagPass(field, item)
|
||||
? (field.passBg || '#ebf9f0')
|
||||
: (field.failBg || '#fef2f2'),
|
||||
})
|
||||
|
||||
const tagDisplayText = (field, item) =>
|
||||
tagPass(field, item)
|
||||
? (field.tagPassText ?? item[field.key] ?? '--')
|
||||
: (field.tagFailText ?? item[field.key] ?? '--')
|
||||
|
||||
// ---- 卡片状态 ----
|
||||
const cardStatus = (item) => {
|
||||
if (!props.statusKey) return ''
|
||||
return item[props.statusKey] === props.statusMatch ? 'pass' : 'fail'
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
$primary: #2979ff;
|
||||
$card-bg: #fff;
|
||||
$card-shadow: 0 2rpx 16rpx rgba(0, 0, 0, 0.06);
|
||||
$text: #1a1a2e;
|
||||
$text-secondary: #8e99a4;
|
||||
|
||||
.record-card {
|
||||
|
||||
&__loading,
|
||||
&__empty {
|
||||
padding: 40rpx 24rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&__loading-text,
|
||||
&__empty-text {
|
||||
font-size: 26rpx;
|
||||
color: $text-secondary;
|
||||
}
|
||||
|
||||
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 12rpx;
|
||||
padding: 0 6rpx;
|
||||
}
|
||||
|
||||
&__bar {
|
||||
width: 6rpx;
|
||||
height: 32rpx;
|
||||
border-radius: 3rpx;
|
||||
background: $primary;
|
||||
margin-right: 14rpx;
|
||||
}
|
||||
|
||||
&__title {
|
||||
font-size: 28rpx;
|
||||
font-weight: 700;
|
||||
color: $text;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
&__more {
|
||||
font-size: 24rpx;
|
||||
color: $primary;
|
||||
padding: 6rpx 16rpx;
|
||||
background: rgba($primary, 0.08);
|
||||
border-radius: 20rpx;
|
||||
}
|
||||
|
||||
&__card {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
background: $card-bg;
|
||||
border-radius: 12rpx;
|
||||
padding: 20rpx;
|
||||
box-shadow: $card-shadow;
|
||||
overflow: hidden;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 6rpx;
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
&--pass::before {
|
||||
background: #22c55e;
|
||||
}
|
||||
|
||||
&--fail::before {
|
||||
background: #ef4444;
|
||||
}
|
||||
}
|
||||
|
||||
&__row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 8rpx 0;
|
||||
border-bottom: 1rpx solid #f0f0f0;
|
||||
|
||||
&--stack {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
|
||||
.record-card__value {
|
||||
margin-top: 8rpx;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__label {
|
||||
font-size: 26rpx;
|
||||
color: $text-secondary;
|
||||
flex-shrink: 0;
|
||||
margin-right: 24rpx;
|
||||
width: 160rpx;
|
||||
|
||||
&--stack {
|
||||
font-size: 26rpx;
|
||||
color: $text-secondary;
|
||||
flex-shrink: 0;
|
||||
margin-right: 24rpx;
|
||||
width: 140rpx;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
}
|
||||
|
||||
&__value {
|
||||
color: $text;
|
||||
flex: 1;
|
||||
text-align: left;
|
||||
font-family: "SF Mono", "Menlo", "Consolas", monospace;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
color: #0f1724;
|
||||
letter-spacing: 0.3rpx;
|
||||
|
||||
&--stack {
|
||||
padding-left: 20rpx;
|
||||
padding-bottom: 8rpx;
|
||||
padding-top: 8rpx;
|
||||
font-family: "SF Mono", "Menlo", "Consolas", monospace;
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
color: #0f1724;
|
||||
letter-spacing: 0.3rpx;
|
||||
}
|
||||
}
|
||||
|
||||
&__tag {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6rpx;
|
||||
padding: 6rpx 16rpx;
|
||||
border-radius: 8rpx;
|
||||
min-width: 100rpx;
|
||||
justify-content: center;
|
||||
// background 由 tagBgStyle() 内联控制
|
||||
|
||||
&-icon {
|
||||
font-size: 22rpx;
|
||||
font-weight: 700;
|
||||
// color 由 tagIconStyle() 内联控制
|
||||
}
|
||||
|
||||
&-text {
|
||||
font-size: 24rpx;
|
||||
font-weight: 600;
|
||||
// color 由 tagTextStyle() 内联控制
|
||||
}
|
||||
}
|
||||
|
||||
// ===== 弹窗 =====
|
||||
&__popup {
|
||||
background: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 80vh;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
}
|
||||
|
||||
&__popup-hd {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 24rpx 28rpx 12rpx;
|
||||
border-bottom: 1rpx solid #f0f0f0;
|
||||
}
|
||||
|
||||
&__popup-title {
|
||||
font-size: 30rpx;
|
||||
font-weight: 700;
|
||||
color: $text;
|
||||
}
|
||||
|
||||
&__popup-close {
|
||||
font-size: 32rpx;
|
||||
color: $text-secondary;
|
||||
padding: 8rpx;
|
||||
}
|
||||
|
||||
&__popup-bd {
|
||||
flex: 1;
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
background: #f5f5f5;
|
||||
padding: 12rpx 20rpx 20rpx;
|
||||
}
|
||||
|
||||
&__card--popup {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
margin-bottom: 12rpx;
|
||||
box-shadow: $card-shadow;
|
||||
}
|
||||
|
||||
&__card--popup:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user