Browse Source

代码标准

chenlei1231 1 month ago
parent
commit
df97a539c8
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/adweb/enquiry/AdwebEnquiryDistribution.vue

+ 2 - 1
src/views/adweb/enquiry/AdwebEnquiryDistribution.vue

@@ -160,7 +160,7 @@
 
   const siteId = ref();
 
-  const userRole = ref('');
+  let userRole = ref<String>('');
   const loadingTip = ref('');
   const loadingStatus = ref(false);
   const { createMessage } = useMessage();
@@ -178,6 +178,7 @@
   };
 
   onMounted(() => {
+    console.log(userInfo?.roles, 'userInfo?.roles');
     userRole.value = userInfo?.roles.join(',');
   });