Fix(搜索):[#1197, #1206]列表显示调整

This commit is contained in:
lifizer
2024-04-22 10:42:39 +08:00
parent 255a1b47a0
commit 171bf1d416
2 changed files with 50 additions and 16 deletions
+17 -2
View File
@@ -1,13 +1,28 @@
<template>
<view class="noCommodity">
<view class="noPictrue">
<image :src="webUrl+'/20210203153900181449.png'" class="image"/>
<image
v-if="type === 'good'"
:src=" webUrl + '/20210203153900181449.png'"
class="image"
/>
<image
v-if="type === 'hotel'"
:src=" webUrl + '/no-hotel.png'"
class="image"
/>
</view>
</view>
</template>
<script>
export default {
name: "NoGoodData",
name: 'NoGoodData',
props: {
type: {
type: String,
default: 'good'
}
},
data: function() {
return {
webUrl: this.$VUE_APP_RESOURCES_URL