gaoluyang
昨天 8565d53462c88d1975d37af9c62b73cee6920534
src/views/payable/index.vue
@@ -149,9 +149,17 @@
});
const userInfo = ref({});
onMounted(() => {
onMounted(async () => {
  let res = userStore.getInfo();
  userInfo.value = res.user;
  // 确保字典数据已加载完成,避免第一次进入页面时付款类型显示不出来
  try {
    if (!dictStore.dict || dictStore.dict.length === 0) {
      await dictStore.initDict();
    }
  } catch (error) {
    console.error('字典数据加载失败:', error);
  }
  getList()
})
const handleEdit = (row) => {