|
@@ -363,7 +363,7 @@ const getList = () => {
|
|
|
.then((res: any) => {
|
|
|
list.value =
|
|
|
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)
|
|
|
if (typeof status !== 'number') status = 0
|
|
|
return {
|