Browse Source

上传

master
前端-胡立永 7 months ago
parent
commit
b111ecf76e
1 changed files with 11 additions and 2 deletions
  1. +11
    -2
      pages_order/service/situation.vue

+ 11
- 2
pages_order/service/situation.vue View File

@ -3,7 +3,9 @@
<view class="situation">
<navbar title="遗产概况" leftClick @leftClick="$utils.navigateBack" />
<view class="situation-imgs">
<view class="situation-imgs-one">
<view class="situation-imgs-one"
v-if="list[0].id"
@click="toUrl(list[0].id)">
<image :src="list[0].areaImage" mode="aspectFill"/>
<view class="text">
<view class="title text-ellipsis">
@ -14,7 +16,9 @@
</view>
</view>
</view>
<view class="situation-imgs-two">
<view class="situation-imgs-two"
v-if="list[1].id"
@click="toUrl(list[1].id)">
<image :src="list[1].areaImage" mode="aspectFill"/>
<view class="text">
<view class="title text-ellipsis">
@ -79,6 +83,11 @@
this.queryAreaList()
}
},
toUrl(id){
uni.navigateTo({
url: '/pages/index/tourGuide?id=' + id
})
},
}
}
</script>


Loading…
Cancel
Save