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

This commit is contained in:
sexygoat
2026-04-14 11:58:47 +08:00
parent f634af1d65
commit 1db7ea9b7c
3 changed files with 33 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
<view class="flex-row-g20">
<view class="title">{{ currentCardNo || '-' }}</view>
</view>
<view class="caption" v-if="deviceInfo.asset_type === 'device'">IMEI{{ deviceInfo.imei || '-' }}</view>
<view class="caption" v-if="isDevice">IMEI{{ deviceInfo.imei || '-' }}</view>
<view class="caption" v-else>手机号{{ deviceInfo.bound_phone || '-' }}</view>
</view>
<view class="tag-apple" :class="onlineStatus === '在线' ? 'tag-success' : 'tag-warning'">
@@ -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 }
});
</script>