This commit is contained in:
ChenQiuYu 2025-05-19 13:23:42 +08:00
parent 6c25d2b400
commit aae6e720ea
2 changed files with 7 additions and 9 deletions

View File

@ -99,7 +99,6 @@ defineExpose({init, clear})
font-size: 18px; font-size: 18px;
color: #333333; color: #333333;
font-style: normal; font-style: normal;
margin-right: 10px;
white-space: nowrap; /* 防止文本换行 */ white-space: nowrap; /* 防止文本换行 */
overflow: hidden; /* 隐藏溢出的文本 */ overflow: hidden; /* 隐藏溢出的文本 */
text-overflow: ellipsis; /* 显示省略号 */ text-overflow: ellipsis; /* 显示省略号 */
@ -114,16 +113,14 @@ defineExpose({init, clear})
.avatar-info-phone-num { .avatar-info-phone-num {
width: 100%; width: 100%;
display: flex; display: flex;
justify-content: space-between; .avatar-info-phone {
flex: 1;
min-width: 0;
height: 20px;
line-height: 20px;
}
.avatar-info-num { .avatar-info-num {
margin-left: 28px; margin-left: 28px;
.avatar-info-phone {
height: 20px;
line-height: 20px;
}
.caret-num { .caret-num {
color: #4D6DE4; color: #4D6DE4;
font-style: normal; font-style: normal;

View File

@ -43,6 +43,7 @@ const copyItem = (item: any) => {
emit('copyItem', item) emit('copyItem', item)
} }
const copyGoods = (item: any) => { const copyGoods = (item: any) => {
console.log(item,'item')
emit('copyGoods', item) emit('copyGoods', item)
} }
defineExpose({init,clearList}) defineExpose({init,clearList})