fix: singer
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 51s

This commit is contained in:
sexygoat
2026-04-29 17:09:39 +08:00
parent 5f0c215bdc
commit d679cad55f
3 changed files with 67 additions and 35 deletions

View File

@@ -7,11 +7,11 @@
<view class="device-info flex-col-g16">
<view class="info-row flex-row-sb">
<view class="info-label">
<view class="subtitle">当前卡: {{ deviceInfo.currentIccid }}</view>
<view class="subtitle">当前卡 {{ deviceInfo.currentIccid }}</view>
</view>
<view class="info-values flex-row-g20" @tap="$emit('authentication')">
<view class="tag-apple" :class="isRealName ? 'tag-success' : 'tag-warning'">
{{ isRealName ? "已实名" : "未实名" }}
{{ isRealName ? '已实名' : '未实名' }}
</view>
</view>
</view>
@@ -40,7 +40,9 @@
</template>
<script setup>
const props = defineProps({
import { getNetworkLevelByMetrics } from '@/utils/networkSignal.js';
defineProps({
deviceInfo: { type: Object, default: () => ({}) },
isRealName: { type: Boolean, default: false },
isDevice: { type: Boolean, default: true },
@@ -49,34 +51,8 @@
defineEmits(['authentication']);
const normalizeSignalScore = (value, min, max) => {
if (value === null || value === undefined || value === '' || value === '-') return null;
const numericValue = Number(value);
if (!Number.isFinite(numericValue)) return null;
if (numericValue <= min) return 0;
if (numericValue >= max) return 100;
return ((numericValue - min) / (max - min)) * 100;
};
const getSignalText = (deviceInfo) => {
const signalScores = [
{ score: normalizeSignalScore(deviceInfo?.rsrp, -120, -80), weight: 0.5 },
{ score: normalizeSignalScore(deviceInfo?.rsrq, -20, -10), weight: 0.25 },
{ score: normalizeSignalScore(deviceInfo?.rssi, -100, -65), weight: 0.25 }
].filter(item => item.score !== null);
if (!signalScores.length) return '-';
const totalWeight = signalScores.reduce((sum, item) => sum + item.weight, 0);
const weightedScore =
signalScores.reduce((sum, item) => sum + item.score * item.weight, 0) / totalWeight;
if (weightedScore >= 67) return '强';
if (weightedScore >= 34) return '中';
return '弱';
};
const getSignalText = (deviceInfo) =>
getNetworkLevelByMetrics(deviceInfo?.rsrp, deviceInfo?.rsrq, deviceInfo?.sinr);
</script>
<style scoped lang="scss">
@@ -84,15 +60,29 @@
.info-row {
padding: var(--space-sm) 0;
border-bottom: 1rpx solid var(--gray-200);
&:last-child { border-bottom: none; }
.info-label { min-width: 200rpx; }
.info-values { flex: 1; justify-content: flex-end; }
&:last-child {
border-bottom: none;
}
.info-label {
min-width: 200rpx;
}
.info-values {
flex: 1;
justify-content: flex-end;
}
}
.device-metrics {
background: var(--gray-100);
border-radius: var(--radius-small);
padding: 20rpx;
.metric-item { flex: 1; }
.metric-item {
flex: 1;
}
}
}
</style>