소스 검색

change: indent商品列表图片数据增加容错处理.

peter 3 달 전
부모
커밋
94de1fb55d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/pages/indent-manage/product/list.vue

+ 1 - 1
src/pages/indent-manage/product/list.vue

@@ -363,7 +363,7 @@ const getList = () => {
     .then((res: any) => {
     .then((res: any) => {
       list.value =
       list.value =
         res.result?.data?.map((main: any) => {
         res.result?.data?.map((main: any) => {
-          const t = main.images.split(',').filter((i: string) => i.length > 0)
+          const t = `${main.images}`.split(',').filter((i: string) => i.length > 0)
           let status = Number(main.status)
           let status = Number(main.status)
           if (typeof status !== 'number') status = 0
           if (typeof status !== 'number') status = 0
           return {
           return {