This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
<view class="flex-col-g20">
|
||||
<view class="iccid">ICCID: {{ item.iccid }}</view>
|
||||
<view class="operator">运营商: {{ getCarrier(item.carrier_type).name }}</view>
|
||||
<view class="slot">卡槽位: {{ item.slot_position || '-' }}</view>
|
||||
<view v-if="item.isDevice" class="slot">卡槽位: {{ item.slot_position || '-' }}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -81,13 +81,14 @@
|
||||
iccid: card.iccid,
|
||||
carrier_type: card.carrier_type,
|
||||
slot_position: card.slot_position,
|
||||
isDevice: true,
|
||||
isRealName: card.real_name_status === 1
|
||||
})));
|
||||
} else if (assetData.identifier) {
|
||||
} else if (assetData.iccid) {
|
||||
list.splice(0, list.length, {
|
||||
iccid: assetData.identifier,
|
||||
iccid: assetData.iccid,
|
||||
carrier_type: assetData.carrier_type,
|
||||
slot_position: 1,
|
||||
isDevice: false,
|
||||
isRealName: assetData.real_name_status === 1
|
||||
});
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user