对接访客邀请接口

This commit is contained in:
zhouyanli
2026-05-06 17:48:39 +08:00
parent e030bb7cb9
commit 231de9cde8
13 changed files with 1028 additions and 1037 deletions

View File

@@ -155,7 +155,7 @@ const fetchRepairList = async () => {
const res = await getQueryRepair(params);
// console.log('接口返回:', res);
if (res.code === 200) {
const list = res.data || [];
const list = res.rows || [];
repairList.value = list.map(item => {
const statusInfo = getStatusInfo(item.problemStatus);
const images = item.problemImageUrl ? item.problemImageUrl.split(',').filter(Boolean) : [];