Authored by 阿达

‘修改店铺bug’

670 Bytes | W: | H:

8.99 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
... ... @@ -33,15 +33,29 @@
.collect {
width: 128px;
height: 50px;
height: 49px;
position: absolute;
bottom: 30px;
right: 30px;
border-radius: 10px;
border-radius: 10px;
text-align: center;
/*background-image: url('/product/collect.png') no-repeat;*/
background-size: contain;
border: 1px solid red;
}
.alreadyCollect{
width: 128px;
height: 50px;
border-radius: 10px;
background-image: url('/product/already-collect.png') no-repeat;
background-size: contain;
}
.notCollect{
width: 128px;
height: 50px;
border-radius: 10px;
background-image: url('/product/not-collect.png') no-repeat;
background-size: contain;
}
.nav {
... ...
... ... @@ -36,8 +36,8 @@
font-size: 36px;
border-bottom: 1px solid #e6e6e6;
text-align: left;
height: 70px;
line-height: 70px;
height: 90px;
line-height: 90px;
vertical-align:middle;
display: block;
width: 100%;
... ...
... ... @@ -10,7 +10,7 @@
<input type="text" placeholder="搜索店铺内潮品" name="query">
<input type="hidden" name="shop_id" value="{{shopId}}">
<i class="clear-input iconfont hide">&#xe626;</i>
<span id="search" class="search" type="submit">搜索</span>
<button id="search" class="search" type="submit">搜索</button>
</form>
</div>
</div>
... ... @@ -20,9 +20,9 @@
<p class="store-name">{{storeName}}</p>
<div class="collect">
{{#if collect}}
<img src="{{alreadyCollect}}"></img>
<div class="alreadyCollect"></div>
{{else}}
<img src="{{notCollect}}"></img>
<div class="notCollect"></div>
{{/if}}
</div>
</div>
... ...