f7821a21 by 杨炀

no message

1 parent 970c84e7
......@@ -228,7 +228,7 @@
}
}
function goIllustrate(){
let path = `/pages_hotel/hotel/illustrate?activeId=${id.value}`;
let path = `/pages_hotel/hotel/illustrate?trainId=${id.value}`;
if (checkUserPhone(path)) {
uni.navigateTo({
url: path
......
......@@ -2,7 +2,7 @@
<view>
<!-- 预订说明 -->
<view class="whiteItem">
<view v-html="introduction" class="richzz">
<view v-html="reminder" class="richzz">
</view>
</view>
......@@ -25,14 +25,14 @@
const data = reactive({
id: null,
form:{},
introduction:''
reminder:''
})
const {
id,form,introduction
id,form,reminder
} = toRefs(data);
onLoad(option => {
hotel.getActivityDetail(option.activeId).then(res => {
introduction.value = res.data.introduction
hotel.getTrainDetail(option.trainId).then(res => {
reminder.value = res.data.reminder
})
})
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!