Commit 7aa095a7 authored by youjie's avatar youjie

优化

parent 63771624
...@@ -169,7 +169,7 @@ ...@@ -169,7 +169,7 @@
<template v-if="dataList.BuyNotes"> <template v-if="dataList.BuyNotes">
<view class="busTispTitle">购买须知</view> <view class="busTispTitle">购买须知</view>
<view class="busTispInfor"> <view class="busTispInfor">
<rich-text :nodes="dataList.BuyNotes"></rich-text> <rich-text :nodes="dataList.BuyNotes" class="richText"></rich-text>
</view> </view>
</template> </template>
<view class="busTispTitle"> <view class="busTispTitle">
...@@ -192,7 +192,7 @@ ...@@ -192,7 +192,7 @@
<template v-if="dataList.CancelPolicy"> <template v-if="dataList.CancelPolicy">
<view class="busTispTitle">取消政策</view> <view class="busTispTitle">取消政策</view>
<view class="busTispInfor" style="border: 0;"> <view class="busTispInfor" style="border: 0;">
<rich-text :nodes="dataList.CancelPolicy"></rich-text> <rich-text :nodes="dataList.CancelPolicy" class="richText"></rich-text>
</view> </view>
</template> </template>
...@@ -827,7 +827,9 @@ ...@@ -827,7 +827,9 @@
<style scoped> <style scoped>
@import url("@/asset/css/flex.css"); @import url("@/asset/css/flex.css");
.richText{
white-space: pre-wrap;
}
.bus-detail { .bus-detail {
height: 100vh; height: 100vh;
overflow: hidden; overflow: hidden;
......
...@@ -255,7 +255,7 @@ ...@@ -255,7 +255,7 @@
text-align: center; text-align: center;
font-size: 32rpx; font-size: 32rpx;
position: relative; position: relative;
padding: 20rpx 0 20rpx 0; padding: 20rpx 0 40rpx 0;
} }
.searchAirpClose{ .searchAirpClose{
position: absolute; position: absolute;
......
...@@ -320,7 +320,7 @@ ...@@ -320,7 +320,7 @@
text-align: center; text-align: center;
font-size: 32rpx; font-size: 32rpx;
position: relative; position: relative;
padding: 20rpx 0 20rpx 0; padding: 20rpx 0 40rpx 0;
} }
.searchAirpClose{ .searchAirpClose{
position: absolute; position: absolute;
......
...@@ -298,7 +298,7 @@ ...@@ -298,7 +298,7 @@
</view> </view>
<view class="rule"> <view class="rule">
<text class="king"></text> <text class="king"></text>
{{ dataList.BuyNotes }} <rich-text :nodes="dataList.BuyNotes" class="richText"></rich-text>
</view> </view>
</view> </view>
<view style="height: 27rpx"></view> <view style="height: 27rpx"></view>
...@@ -1033,7 +1033,9 @@ ...@@ -1033,7 +1033,9 @@
<style> <style>
@import url("@/asset/css/flex.css"); @import url("@/asset/css/flex.css");
.richText{
white-space: pre-wrap;
}
.hotel-order { .hotel-order {
color: #111111; color: #111111;
} }
......
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
<view class="ResInforText row" v-if="dataList.CancelPolicy"> <view class="ResInforText row" v-if="dataList.CancelPolicy">
<view class="ResInforL">取消政策</view> <view class="ResInforL">取消政策</view>
<view class="ResInforR"> <view class="ResInforR">
<rich-text :nodes="dataList.CancelPolicy"></rich-text> <rich-text :nodes="dataList.CancelPolicy" class="richText"></rich-text>
</view> </view>
</view> </view>
</view> </view>
...@@ -319,6 +319,9 @@ ...@@ -319,6 +319,9 @@
<style scoped> <style scoped>
@import url("@/asset/css/flex.css"); @import url("@/asset/css/flex.css");
.richText{
white-space: pre-wrap;
}
.hotel-detail { .hotel-detail {
height: 100vh; height: 100vh;
overflow: hidden; overflow: hidden;
......
...@@ -112,12 +112,13 @@ ...@@ -112,12 +112,13 @@
</view> </view>
</view> </view>
</scroll-view> </scroll-view>
<view class="submit" @click="submit"> <view class="submit" style="position: fixed;left: 0;right: 0;
<button class="sub-btn" :disabled="!isSub"> bottom: 0;z-index: 99;">
<text v-if="isSub">确定</text> <button class="sub-btn" :disabled="!isSub" @click="submit">
<text v-if="!isSub">请选择入住日期</text> <text v-if="isSub">确定</text>
</button> <text v-if="!isSub">请选择入住日期</text>
</view> </button>
</view>
</view> </view>
</template> </template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment