diff --git a/components/SearchShopList/SearchShopList.vue b/components/SearchShopList/SearchShopList.vue index 5fd1b56..3cdf75f 100644 --- a/components/SearchShopList/SearchShopList.vue +++ b/components/SearchShopList/SearchShopList.vue @@ -5,6 +5,7 @@ :key="searchid" :shopInfo="item" :show-style="showStyle" + :isEdit="isEdit" @delItem="handleDel" > diff --git a/components/ShowShopList/ShowShopList.vue b/components/ShowShopList/ShowShopList.vue index 043493c..414c90a 100644 --- a/components/ShowShopList/ShowShopList.vue +++ b/components/ShowShopList/ShowShopList.vue @@ -6,6 +6,7 @@ :shopInfo="item" :is-adshow="isADshow" :show-style="showStyle" + :is-edit="isEdit" @delItem="handleDel" > diff --git a/pages/published/published.vue b/pages/published/published.vue index cc57dd1..fa4fba3 100644 --- a/pages/published/published.vue +++ b/pages/published/published.vue @@ -7,10 +7,11 @@ - - - - + + + + + @@ -33,14 +34,18 @@ if(this.titletext == '发布的店铺转让'){ this.listId = 0 } - else if(this.titletext == '发布的找店选址'){ + if(this.titletext == '发布的找店选址'){ this.listId = 1 } - else if(this.titletext = '成功合伙人'){ + + if(this.titletext == '发布的项目招商'){ this.listId = 2 } - else - this.listId = 3 + if(this.titletext == '发布的店铺出租'){ + this.listId = 3 + } + if(this.titletext == '我的匹配') + this.listId = 4 },