Authored by 陈峰

comit

... ... @@ -13,12 +13,12 @@
<p class="low-price">当前最低价¥{{value.goodsInfo.leastPrice}}</p>
</div>
<div class="right">
<Button class="chg-price" @click="onChgPrice">调 价</Button>
<Button class="chg-price" @touchend.native="onChgPrice">调 价</Button>
</div>
</div>
</div>
<div ref="options" class="item-options">
<Button class="btn-no-sale" @click="onNoSale">不卖了</Button>
<Button class="btn-no-sale" @touchend.native="onNoSale">不卖了</Button>
</div>
</div>
</template>
... ...
... ... @@ -38,6 +38,7 @@
</template>
<script>
import LayoutApp from '../../components/layout/layout-app';
import ModalPrice from './components/modal-price';
import ModalUnstock from './components/modal-unstock';
import ImgSize from 'components/img-size';
... ... @@ -191,7 +192,7 @@ export default {
this.slideSkc = {};
}
},
components: {Button, ScrollView, ProductList, ImgSize, ModalPrice, ModalUnstock}
components: {LayoutApp, Button, ScrollView, ProductList, ImgSize, ModalPrice, ModalUnstock}
};
</script>
... ...