no message

This commit is contained in:
2025-11-11 18:27:56 +08:00
parent 39a9252576
commit ad378f164d
8 changed files with 674 additions and 282 deletions
@@ -38,33 +38,34 @@ import func from '@/utils/func.js';
}
},
components: { MyBtn },
computed:{
data(){
let tmp = [];
if(this.itemData.length){
this.itemData.forEach(item=>{
console.log('item',item)
item.addressOne = func.addressTurn(item.account,6);
})
tmp = this.itemData;
}
return tmp;
}
},
props:{
itemShow:{
type:Boolean,
default:false
},
itemData:{
type:[Array,Object],
default:()=>{}
type:Array,
default:[]
},
type:{
type:[Number,String],
default:'0'
}
},
computed:{
data(){
let tmp = [];
if(this.itemData && this.itemData.length){
this.itemData.forEach(item=>{
console.log('item',item)
item.addressOne = func.addressTurn(item.account,6);
})
tmp = this.itemData;
}
return tmp || [];
}
},
mounted(){
},
methods: {
@@ -90,7 +91,7 @@ import func from '@/utils/func.js';
align-items: center;
justify-content: center;
border:2rpx solid #7934f6;
border-radius: 12rpx;
border-radius: 8rpx;
image{
width:32rpx;
height:32rpx;
@@ -142,11 +143,9 @@ import func from '@/utils/func.js';
width:98%;
height:152rpx;
min-height:152rpx;
border-radius: 16rpx;
border-radius: 8rpx;
margin-top:24rpx;
background: #FFFFFF;
box-shadow: 0px 0px 16rpx 0px #F4F4F4;
border-radius: 16px;
border: 1px solid #E3E3E3;
padding: 32rpx;
box-sizing: border-box;