可信代码库-样式修改

This commit is contained in:
付民康
2025-06-27 18:13:20 +08:00
parent 5985cdc0d8
commit f04dad9db2
10 changed files with 0 additions and 22 deletions

View File

@@ -573,7 +573,6 @@ const enterpriseDetail = ref({});
const getEnterpriseDetail = async (id) => {
try {
const response = await fetchEnterpriseDetail(id);
debugger
if (response.data.code === 200) {
enterpriseDetail.value = response.data.data;
} else {
@@ -722,7 +721,6 @@ const searchKey = ref(0);
const autoCompleteRef = ref(null);
// 搜索处理函数(带防抖)
const handleinviteSearch = async (keyword: string) => {
debugger
if (!keyword.trim()) {
searchResults.value = [];
errorMessage.value = '';
@@ -737,7 +735,6 @@ const handleinviteSearch = async (keyword: string) => {
console.log('用户搜索结果:', res);
if (res.data.code === 200) {
debugger
if (res.data.data.errorCode) {
// 用户不存在
searchResults.value = [];