This commit is contained in:
@@ -20,15 +20,12 @@
|
||||
<view class="subtitle" v-if="isDevice">IMEI:{{ deviceInfo.imei || '-' }}</view>
|
||||
<view class="subtitle" v-else>手机号:{{ deviceInfo.bound_phone || '-' }}</view>
|
||||
</view>
|
||||
<view class="info-values flex-row-g20">
|
||||
<view class="tag-apple tag-primary">{{ statusText }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="device-metrics flex-row-sb mt-md">
|
||||
<view class="metric-item flex-col-center">
|
||||
<view class="caption mb-xs">信号强度</view>
|
||||
<view class="metric-value">{{ getSignalText(deviceInfo.rssi) }}</view>
|
||||
<view class="metric-value">{{ getSignalText(deviceInfo) }}</view>
|
||||
</view>
|
||||
<view class="metric-item flex-col-center">
|
||||
<view class="caption mb-xs">设备电量</view>
|
||||
@@ -43,8 +40,6 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { computed } from 'vue';
|
||||
|
||||
const props = defineProps({
|
||||
deviceInfo: { type: Object, default: () => ({}) },
|
||||
isRealName: { type: Boolean, default: false },
|
||||
@@ -54,17 +49,34 @@
|
||||
|
||||
defineEmits(['authentication']);
|
||||
|
||||
const getSignalText = (rssi) => rssi || '强';
|
||||
const normalizeSignalScore = (value, min, max) => {
|
||||
if (value === null || value === undefined || value === '' || value === '-') return null;
|
||||
|
||||
const statusText = computed(() => {
|
||||
const statusMap = {
|
||||
1: '在库',
|
||||
2: '已分销',
|
||||
3: '已激活',
|
||||
4: '已停用'
|
||||
};
|
||||
return statusMap[props.deviceInfo.status] || '-';
|
||||
});
|
||||
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 '弱';
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
Reference in New Issue
Block a user