Ver Fonte

fix: Mp/WxAccountSelect name字段更新

dhb52 há 2 anos atrás
pai
commit
82dc0054f2
1 ficheiros alterados com 4 adições e 1 exclusões
  1. 4 1
      src/views/mp/components/wx-account-select/main.vue

+ 4 - 1
src/views/mp/components/wx-account-select/main.vue

@@ -22,11 +22,14 @@ const handleQuery = async () => {
   // 默认选中第一个
   if (accountList.value.length > 0) {
     account.id = accountList.value[0].id
+    account.name = accountList.value[0].name
     emit('change', account.id, account.name)
   }
 }
 
-const onChanged = () => {
+const onChanged = (id?: number) => {
+  const found = accountList.value.find((v) => v.id === id)
+  account.name = found ? found.name : ''
   emit('change', account.id, account.name)
 }