修改主题

This commit is contained in:
gaoxs
2020-04-07 19:30:41 +08:00
parent c6f9a6d1fe
commit 1eba07de8a
73 changed files with 279 additions and 306 deletions

View File

@ -21,15 +21,15 @@
>{{ title ? title : "默认" }}</view>
<view class="item" @click="set_where(1)">
价格
<image :src="$VUE_APP_RESOURCES_URL+'/images/horn.png'" v-if="price === 0" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/up.png'" v-if="price === 1" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/down.png'" v-if="price === 2" />
<image src="@/static/images/horn.png" v-if="price === 0" />
<image src="@/static/images/up.png" v-if="price === 1" />
<image src="@/static/images/down.png" v-if="price === 2" />
</view>
<view class="item" @click="set_where(2)">
销量
<image :src="$VUE_APP_RESOURCES_URL+'/images/horn.png'" v-if="stock === 0" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/up.png'" v-if="stock === 1" />
<image :src="$VUE_APP_RESOURCES_URL+'/images/down.png'" v-if="stock === 2" />
<image src="@/static/images/horn.png" v-if="stock === 0" />
<image src="@/static/images/up.png" v-if="stock === 1" />
<image src="@/static/images/down.png" v-if="stock === 2" />
</view>
<!-- down -->
<view class="item" :class="nows ? 'font-color-red' : ''" @click="set_where(3)">新品</view>
@ -70,7 +70,7 @@
v-if="productList.length === 0 && where.page > 1"
>
<view class="noPictrue">
<image :src="$VUE_APP_RESOURCES_URL+'/images/noGood.png'" class="image" />
<image src="@/static/images/noGood.png" class="image" />
</view>
</view>
<Recommend v-if="productList.length === 0 && where.page > 1"></Recommend>