Merge pull request '邓洁 :修改列表图片渲染问题' (#110) from dj into master

Reviewed-on: http://git.feashow.cn/odjbin/city-store-transfer/pulls/110
This commit is contained in:
odjbin
2023-11-27 04:16:26 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view>
<SearchShopListItem v-for="item in searchInfoList" :key="searchid" :shopInfo="item" :show-style="showStyle"
<SearchShopListItem v-for="item in searchInfoList" :key="item.id" :shopInfo="item" :show-style="showStyle"
:isEdit="isEdit" @delItem="handleDel" @updateItem="handleUpdate"></SearchShopListItem>
</view>
</template>

View File

@@ -1,6 +1,6 @@
<template>
<view>
<ShowShopListItem v-for="item in shopInfoList" :shopInfo="item" :is-adshow="isADshow"
<ShowShopListItem v-for="item in shopInfoList" :key="item.id" :shopInfo="item" :is-adshow="isADshow"
:adlinkPath="adlinkPath" :show-style="showStyle" :is-edit="isEdit" @delItem="handleDel"
@updateItem="hanldeUpdate"></ShowShopListItem>
</view>