diff --git a/components/UserInfoCard.vue b/components/UserInfoCard.vue index d4f0109..4a03863 100644 --- a/components/UserInfoCard.vue +++ b/components/UserInfoCard.vue @@ -8,7 +8,7 @@ {{ currentCardNo || '-' }} - IMEI:{{ deviceInfo.imei || '-' }} + IMEI:{{ deviceInfo.imei || '-' }} 手机号:{{ deviceInfo.bound_phone || '-' }} @@ -22,7 +22,8 @@ defineProps({ currentCardNo: { type: String, default: '' }, deviceInfo: { type: Object, default: () => ({}) }, - onlineStatus: { type: String, default: '离线' } + onlineStatus: { type: String, default: '离线' }, + isDevice: { type: Boolean, default: true } }); diff --git a/pages/index/index.vue b/pages/index/index.vue index d69973e..1db9c22 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,6 +1,6 @@