From 8b586412b7c8ac66dc092744e9686d2f54053075 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 9 Oct 2025 14:50:48 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=87=91=E5=B8=81=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E6=90=9C=E7=B4=A2):=20UI=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/icon/add.png | Bin 0 -> 1465 bytes src/views/CoinSellerSearchView.vue | 179 ++++++++++++++++------------- 2 files changed, 99 insertions(+), 80 deletions(-) create mode 100644 src/assets/icon/add.png diff --git a/src/assets/icon/add.png b/src/assets/icon/add.png new file mode 100644 index 0000000000000000000000000000000000000000..36e77d3e8fedf436c024cce3eb8a1eeb6df5744e GIT binary patch literal 1465 zcmV;q1xEUbP)?s-%t5RDaig5+~MUkLb zo9(|-`8n=wt2%`wi2B4u1uWBj1Gs z9xaFtnBD1O#%K5dbhLa3zU}wHKI7;J#nyNd2P0h^`K)ZA>2|&7D-gwbh~@!O@Zs;F zaj2zEmG|L`u!_YOZ~;BKTpxj0!3RiJGzzl?-xy{!*qY(~6z4w_ic~6)RU8h%-oi{m zk**|uhvJ+rsYj_m&!BfJR)|g8#ZeltyfD_~EHXtZ8O1h&ol(j;)KZ*1499+Z-`^pR zqCW@wDcB2SkSh@T{WYbWU1~kpR}2sD`KbN>vhX{92m2E2EsW#{6obG;p`7B}#Po?H zq$bj17`s}IKpV_Cy?YQZEY+Uq+oV0F@rPPc`!;t`@UjL|rlNRFEhI~k8z z1$wRA=oI|sJ`3%?UShMQJQK<&&RHb*0co_Tm43%VoEVXRXl)w@V)cPT`=(H4TAQ-8 zpohXAqA;i61D*fs#5MZ0^XLzSeuHkoldUM#g4l8-l|4tS)sAakOD1uu1K}QOOHB#1 zB3x(dF^vK}@aSR@ZMvhbLZk$eBIasKoR!d8(X#eIO`y2@(8U(!59y_<-AofmnvAl0 z4K)e%gaS$3O!Rk}KugMv=9MSHb#WD-qy^1m>xoEp7ng1{ffh4wG7m^WttilO$ea|e z=dAP4`EBE1dpVa+iE@S-T$r~`P2LOF#ky&cv{boYV5ciW_Qo`)YM~GxgtE@(vdqOw zVP$HILz2<(A+jgIH3j-EC=n>&zzeToN4u z>7}Z9jVXbol|zb?lTntU_NF7JJW}`SC6Lz5JX=xMJv;-U!EoELVi5)? z%&tF-*MYiqG;h>O6l=G&Jsf?*e0XjSaQ!=`^PWLoKuU+qmfI`v^gMBBJ$+Lf3K9>| z^v3hVAzK2YQ@-VCty^=F`#&O_<0~ zUo60uw9;B%u_#I$4XYo2nATTQ#6!A=zm}rwt105?<#_m4%QGAq85tQF89Bl?c&Q6& T2#0vk00000NkvXXu0mjfGc&Nn literal 0 HcmV?d00001 diff --git a/src/views/CoinSellerSearchView.vue b/src/views/CoinSellerSearchView.vue index 04564eb..321bc13 100644 --- a/src/views/CoinSellerSearchView.vue +++ b/src/views/CoinSellerSearchView.vue @@ -4,32 +4,45 @@
-
- -
- βž• +
+
@@ -69,20 +86,6 @@

Searching...

- - -
-
πŸ”
-

No users found

- Try searching with a different ID -
- - -
-
πŸ‘€
-

Search for users

- Enter host ID to find users -
@@ -155,13 +158,15 @@ const performSearch = async () => { if (response && response.status && response.body && response.body.userProfile) { const profile = response.body.userProfile - searchResults.value = [{ - id: profile.id, - name: profile.userNickname || 'User', - userNickname: profile.userNickname, - account: profile.account, - userAvatar: profile.userAvatar - }] + searchResults.value = [ + { + id: profile.id, + name: profile.userNickname || 'User', + userNickname: profile.userNickname, + account: profile.account, + userAvatar: profile.userAvatar, + }, + ] } else { searchResults.value = [] } @@ -207,7 +212,7 @@ const confirmSelection = () => { name: selectedUser.value.name, userNickname: selectedUser.value.userNickname, account: selectedUser.value.account, - userAvatar: selectedUser.value.userAvatar + userAvatar: selectedUser.value.userAvatar, }) // Go back to previous page @@ -217,6 +222,16 @@ const confirmSelection = () => {