|
@@ -97,9 +97,8 @@
|
|
|
<template slot="good_info_img">
|
|
|
<div style="max-height: 24px; overflow: hidden">
|
|
|
<el-image
|
|
|
- v-for="imgSrc in sitem.good_info_img
|
|
|
- ? sitem.good_info_img.split(',')
|
|
|
- : []"
|
|
|
+ v-for="(imgSrc, index) in sitem.good_info_img"
|
|
|
+ :key="imgSrc + index"
|
|
|
style="height: 24px; width: 24px; margin-right: 5px"
|
|
|
:src="imgSrc"
|
|
|
:preview-src-list="[imgSrc]"
|
|
@@ -327,7 +326,7 @@ import baseFormNormal from "./components/baseFormNormal";
|
|
|
import goodPreview from "./components/goodPreview";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import { mapGetters } from "vuex";
|
|
|
-
|
|
|
+import { isArray } from "@/utils/validate";
|
|
|
import {
|
|
|
packingColumns,
|
|
|
ladderColumns,
|
|
@@ -498,6 +497,9 @@ export default {
|
|
|
this.loading = false;
|
|
|
if (code === 0) {
|
|
|
this.sitem = JSON.parse(JSON.stringify(data));
|
|
|
+ if (!isArray(this.sitem.good_info_img)) {
|
|
|
+ this.sitem.good_info_img = this.sitem.good_info_img.split(",");
|
|
|
+ }
|
|
|
const { status } = this.sitem;
|
|
|
this.status = status;
|
|
|
this.getNewTime();
|