|
@@ -363,7 +363,10 @@ 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 =
|
|
|
|
+ typeof main.images === 'string'
|
|
|
|
+ ? `${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 {
|