Authored by htoooth

fix

... ... @@ -61,21 +61,18 @@
</filter-item>
</layout-filter>
<layout-list>
<div v-if="importInfo">
<div v-if="importInfo.length !== 0">
<div class="error-title">导入错误记录</div>
<div class="error-content" v-for="e in importInfo"> {{e}} </div>
</div>
<div v-if="importInfo">
<div v-if="importInfo.length !== 0">
<div class="error-title">导入错误记录</div>
<div class="error-content" v-for="e in importInfo"> {{e}} </div>
</div>
</layout-list>
</div>
</layout-body>
</template>
<script>
import {SelectCategory, SelectBrand, SelectSellType} from 'components/select';
import _ from 'lodash';
import LayoutList from '../../../components/global/layout/layout-list';
export default {
data() {
... ... @@ -187,7 +184,6 @@
}
},
components: {
LayoutList,
SelectCategory,
SelectBrand,
SelectSellType
... ...