|
|
- <template>
- <view>
- <view class="head-box"></view>
- <uv-navbar autoBack title="旅行详情" leftIconColor="#fff" :bgColor="bgColor" height="100rpx" :titleStyle="{color:'#fff'}"></uv-navbar>
-
- <view class="content">
- <view class="content-head">
- <image class="image-box" :src="travelDetails.image" mode=""></image>
- <view class="msg-box">
- <view class="msg-box-title">{{travelDetails.title}}</view>
- <view class="msg-box-time">开始时间:{{travelDetails.startTime}}</view>
- <view class="lingdui-box">
- <image class="use-img" src="@/static/image/center/3.png" mode=""></image>
- <view class="lingdui-msg">
- <view class="lingdui-msg-name">
- <view>VTrip微程</view>
- <view class="name-tip">领队</view>
- </view>
- <view>
- <uv-rate :count="count" v-model="value" size="23" activeColor="#FFA200"></uv-rate>
- </view>
- </view>
- <view class="add-wx">添加微信</view>
- </view>
- </view>
- </view>
- <view class="lv-miaoshu">
- <view class="title-box">旅行描述</view>
- <view class="value-box">
- <view class="tabs-box">
- <uv-tabs :list="list" @click="click" lineColor="#FE5E5E" :activeStyle="{color:'#FE5E5E',fontSize:'29rpx',fontWeight: 'bold'}" :inactiveStyle="{color:'#D6D6D6',fontSize:'29rpx',fontWeight: 'bold'}"></uv-tabs>
- </view>
- <view class="lv-msg-box">
- 当金黄的落叶轻柔地铺满了小城的每个角落,我们知道,最温柔的季节已悄然而至。在这个收获的季节里,我们诚挚邀请您加入我们的秋日私旅
- </view>
- </view>
- </view>
- </view>
- <view class="bottom-box">
- <view class="price-box">
- <view class="peice-val"><text>¥</text>{{travelDetails.price}}</view>
- <view>报名费用</view>
- </view>
- <view class="caozuo-box">
- <view class="caozuo-item border-r">
- <image src="@/static/image/home/shoucang-icon.png" mode=""></image>
- <view>收藏</view>
- </view>
- <view class="caozuo-item">
- <image src="@/static/image/home/zhuanfa-icon.png" mode=""></image>
- <view>转发</view>
- </view>
- </view>
- <view class="btn-box">立即报名</view>
- </view>
- </view>
- </template>
-
- <script>
- export default{
- data() {
- return {
- travelDetails: null,
- bgColor:'transparent',
- count:5,
- value:3,
- list:[
- {
- name:'介绍'
- },
- {
- name:'路线'
- },
- {
- name:'费用'
- },
- {
- name:'须知'
- },
- {
- name:'代理'
- },
- ]
- }
- },
- onPageScroll(e) {
- if(e.scrollTop > 50) {
- this.bgColor = '#49070c'
- }else{
- this.bgColor = 'transparent'
- }
- },
- onLoad({travelId}) {
- this.travelInfo(travelId)
- },
- methods:{
- travelInfo(travelId) {
- this.$api('travelInfo',{travelId},res=> {
- if(res.code==200) {
- this.travelDetails = res.result
- }
- })
- }
- }
- }
- </script>
-
- <style lang="scss">
- page {
- background-color: #060504;
- }
- </style>
- <style lang="scss" scoped>
- .head-box {
- background: url('@/static/image/nav-bg.png') no-repeat;
- background-size: 100% 100%;
- width: 100%;
- height: 534rpx;
- position: absolute;
- z-index: -1;
- }
- .content {
- padding: 0 30rpx 170rpx;
- padding-top: calc(var(--status-bar-height) + 110rpx);
- .content-head {
- position: relative;
- .image-box {
- width: 100%;
- height: 546rpx;
- }
- .msg-box {
- background: #1B1713;
- border-radius: 27rpx 27rpx 67rpx 67rpx;
- position: absolute;
- top: 429rpx;
- left: 0;
- right: 0;
- padding-top: 38rpx;
- .msg-box-title {
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- margin-bottom: 40rpx;
- padding-left: 38rpx;
- }
- .msg-box-time {
- font-weight: 400;
- font-size: 27rpx;
- color: #999999;
- padding-left: 38rpx;
- }
- .lingdui-box {
- margin-top: 43rpx;
- height: 130rpx;
- background: #26201A;
- border-radius: 60rpx;
- display: flex;
- align-items: center;
- padding: 0 40rpx;
- .use-img {
- width: 86rpx;
- height: 86rpx;
- }
- .lingdui-msg {
- flex: 1;
- margin-left: 24rpx;
- .lingdui-msg-name {
- font-weight: 500;
- font-size: 29rpx;
- color: #E6E6E6;
- display: flex;
- align-items: center;
- margin-bottom: 11rpx;
- .name-tip {
- padding: 0 20rpx;
- height: 27rpx;
- background: #3C2D17;
- border-radius: 0rpx 12rpx 12rpx 12rpx;
- font-weight: 500;
- font-size: 19rpx;
- color: #FFA200;
- line-height: 27rpx;
- margin-left: 14rpx;
- }
- }
- }
- .add-wx {
- width: 172rpx;
- height: 51rpx;
- background: #3C2D17;
- border-radius: 23rpx 23rpx 23rpx 23rpx;
- text-align: center;
- line-height: 51rpx;
- font-weight: 400;
- font-size: 25rpx;
- color: #FF8A00;
- }
- }
- }
- }
- .title-box {
- font-weight: 500;
- font-size: 33rpx;
- color: #E6E6E6;
- text-align: center;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- top: 50%;
- left: 0;
- transform: translate(0,-50%);
- width: 100%;
- height: 12rpx;
- background: url(@/static/image/home/title-line.png) no-repeat;
- background-size: 100% 100%;
- }
- }
- .lv-miaoshu {
- margin-top: 250rpx;
- .value-box {
- background: #1B1713;
- border-radius: 27rpx;
- margin-top: 35rpx;
- .tabs-box {
- border-bottom: 1px solid #2D241B;
- }
- .lv-msg-box {
- padding: 20rpx 40rpx;
- font-weight: 400;
- font-size: 27rpx;
- color: #E6E6E6;
- line-height: 41rpx;
- }
- }
- }
- }
- .bottom-box {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 150rpx;
- background-color: #1B1713;
- display: flex;
- align-items: center;
- padding: 0 40rpx;
- .price-box {
- font-weight: 400;
- font-size: 25rpx;
- color: #999999;
- flex: 1;
- .peice-val {
- font-weight: 500;
- font-size: 40rpx;
- color: #FF3535;
- margin-bottom: 15rpx;
- text {
- font-size: 26rpx;
- }
- }
- }
- .caozuo-box {
- display: flex;
- align-items: center;
- .caozuo-item {
- font-weight: 400;
- font-size: 20rpx;
- color: #999999;
- padding: 0 35rpx;
- text-align: center;
- image {
- width: 48rpx;
- height: 48rpx;
- margin-bottom: 10rpx;
- }
- }
- .border-r {
- position: relative;
- // border-right: 1px solid #4A3E32;
- &::after {
- content: "";
- width: 2rpx;
- height: 47rpx;
- position: absolute;
- right: 0;
- top: 50%;
- transform: translate(0,-50%);
- background-color: #4A3E32;
- }
- }
- }
- .btn-box {
- width: 252rpx;
- height: 74rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- text-align: center;
- line-height: 74rpx;
- background: url(@/static/image/home/hdqd-btn.png) no-repeat;
- background-size: 100% 100%;
- }
- }
- </style>
|