可信代码库-样式修改
This commit is contained in:
@@ -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 = [];
|
||||
|
||||
@@ -211,7 +211,6 @@ const uploadOptions = ref({
|
||||
});
|
||||
|
||||
const beforeUpload = async (file) => {
|
||||
debugger
|
||||
showUpload.value = false; // 先隐藏上传区域,显示加载状态
|
||||
|
||||
try {
|
||||
@@ -251,7 +250,6 @@ defineExpose({
|
||||
const qyId = ref('');
|
||||
// 打开模态框(支持传入初始数据)
|
||||
function open(initialData = {}) {
|
||||
debugger
|
||||
// 重置表单状态
|
||||
resetForm();
|
||||
if(initialData.id) {
|
||||
|
||||
Reference in New Issue
Block a user