| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 | 
							- <template>
 
- 	<view class="content" v-if="item!=null">
 
- 		<view class="image">
 
- 			<image mode="aspectFill" :src="item.imgUrl"></image>
 
- 		</view>
 
- 		<view class="detail-cont">
 
- 			<view class="title-box">
 
- 				<view class="line"></view>
 
- 				<view class="title">{{item.vesselName}}</view>
 
- 				<view class="title-py">{{item.pinyin}}</view>
 
- 			</view>
 
- 			<view class="desc">
 
- 				{{item.actionTitle}}
 
- 			</view>
 
- 			<view class="line-h"></view>
 
- 			<view class="content"   v-html="item.descs">
 
- 			</view>
 
- 		</view>
 
- 		<view class="ad">
 
- 			<u-swiper
 
- 					:list="advImgs"
 
- 					indicator
 
- 					indicatorMode="line"
 
- 					circular
 
- 					@click="handleAdvClick"
 
- 			></u-swiper>
 
- 		</view>
 
- 	</view> 
 
- </template>
 
- <script>
 
- 	import {getAdvList} from '@/api/adv.js'
 
- 	import {getVesselById} from '@/api/index'
 
- 	export default {
 
- 		data() {
 
- 			return {
 
- 				advs:[],
 
- 				advImgs:[],
 
- 				tabIndex:1,
 
- 				item:{},
 
- 			};
 
- 		},
 
- 		onLoad(option) {
 
- 			this.id=option.id;
 
- 			 
 
- 		},
 
- 		onShow() {
 
- 			this.getAdvList();
 
- 			this.getVesselById();
 
- 		},
 
- 		//发送给朋友
 
- 		onShareAppMessage(res) {
 
- 			if(this.$isLogin()){
 
- 				return {
 
- 					title: this.item.vesselName,
 
- 					path: '/pages_index/vesselDetails?id='+this.id,
 
- 					imageUrl: 'https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/newImages/sharelogo.png' //分享图标,路径可以是本地文件路径、代码包文件路径或者网络图片路径.支持PNG及JPG。显示图片长宽比是 5:4
 
- 				}
 
- 			}
 
- 			
 
- 		},
 
- 		//分享到朋友圈
 
- 		onShareTimeline(res) {
 
- 			if(this.$isLogin()){
 
- 				return {
 
- 					title: this.item.vesselName,
 
- 					imageUrl: 'https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/newImages/sharelogo.png' //分享图标,路径可以是本地文件路径、代码包文件路径或者网络图片路径.支持PNG及JPG。显示图片长宽比是 5:4
 
- 				}
 
- 			}
 
- 			
 
- 		},
 
- 		methods:{
 
- 			handleAdvClick(index){
 
- 				var ad=this.advs[index];
 
- 				console.log(ad.advUrl);
 
- 				if(ad.showType==1){
 
- 					uni.setStorageSync('url',ad.advUrl);
 
- 					uni.navigateTo({
 
- 						url:"h5"
 
- 					})
 
- 				}
 
- 				else if(ad.showType==2){
 
- 					uni.navigateTo({
 
- 						url:ad.advUrl
 
- 					})
 
- 				}
 
- 				else if(ad.showType==3){
 
- 					 uni.setStorageSync('content',ad.content);
 
- 					 uni.navigateTo({
 
- 					 	url:"content"
 
- 					 })
 
- 				}
 
- 				
 
- 			},
 
- 			getAdvList() {
 
- 				//联网加载数据
 
- 				var that = this;
 
- 				var data = {
 
- 					advType:5
 
- 				};
 
- 				getAdvList(data).then(res => {
 
- 					if(res.code==200){
 
- 						that.advImgs=[];
 
- 						that.advs=[];
 
- 						res.data.forEach(function(element) {
 
- 							if(element.imageUrl!=null&&element.imageUrl!=""){
 
- 								that.advs.push(element);
 
- 								that.advImgs.push(element.imageUrl);
 
- 							}
 
- 						});
 
- 						
 
- 					}else{
 
- 						uni.showToast({
 
- 							icon:'none',
 
- 							title: "请求失败",
 
- 						});
 
- 					}
 
- 				});
 
- 			},
 
- 			getVesselById(){
 
- 				let data = {id:this.id};
 
- 				getVesselById(data).then(
 
- 					res => {
 
- 						if(res.code==200){
 
- 							this.item=res.data;
 
- 						}else{
 
- 							uni.showToast({
 
- 								icon:'none',
 
- 								title: "请求失败",
 
- 							});
 
- 						}
 
- 					},
 
- 					rej => {}
 
- 				);
 
- 			},
 
- 		}
 
- 	}
 
- </script>
 
- <style lang="scss">
 
- 	page{
 
- 		height: 100%;
 
- 	}
 
- 	.content{
 
- 		height: 100%;
 
- 		image{
 
- 			height:450rpx;
 
- 			width:100%;
 
- 		}
 
- 		.detail-cont{
 
- 			flex: 1;
 
- 			padding: 20upx;
 
- 			overflow-y: auto;
 
- 			.title-box{
 
- 				width: 100%;
 
- 				display: flex;
 
- 				justify-content: flex-start;
 
- 				align-items: center;
 
- 				.line{
 
- 					border-radius: 5rpx;
 
- 					width: 8rpx;
 
- 					height:30rpx;
 
- 					background-color: #2583EB;
 
- 				}
 
- 				.title{
 
- 					margin-left: 15rpx;
 
- 					font-size: 40upx;
 
- 					font-family: PingFang SC;
 
- 					font-weight: bold;
 
- 					color: #333;
 
- 				}
 
- 				.title-py{
 
- 					margin-left: 15rpx;
 
- 					font-size: 32upx;
 
- 					font-family: PingFang SC;
 
- 					color: #333;
 
- 				}
 
- 			}
 
- 			.desc{
 
- 				margin-top: 20rpx;
 
- 				font-size: 32upx;
 
- 				font-family: PingFang SC;
 
- 				color: #333;
 
- 			}
 
- 			.line-h{
 
- 				margin: 15rpx 0rpx;
 
- 				border-bottom: 1rpx dashed #d4d4d4;
 
- 			}
 
- 			.tabs{
 
- 				width: 100%;
 
- 				margin: 20rpx 0rpx;
 
- 				display: flex;
 
- 				justify-content: space-between;
 
- 				align-items: center;
 
- 				// border: 1rpx solid #2583EB;
 
- 				border-radius: 30rpx;
 
- 				line-height: 60rpx;
 
- 				.tab1{
 
- 					border-radius: 30rpx 0rpx 0rpx 30rpx;
 
- 					width: 25%;
 
- 					display: flex;
 
- 					justify-content: center;
 
- 					align-items: center;
 
- 					background-color: #fff;
 
- 					color: #4F575A;
 
- 					font-size: 28upx;
 
- 					font-weight: bold;
 
- 					font-family: PingFang SC;
 
- 				}
 
- 				.tab2{
 
- 					
 
- 					width: 25%;
 
- 					display: flex;
 
- 					justify-content: center;
 
- 					align-items: center;
 
- 					background-color: #fff;
 
- 					color: #4F575A;
 
- 					font-size: 28upx;
 
- 					font-weight: bold;
 
- 					
 
- 					font-family: PingFang SC;
 
- 				}
 
- 				.tab3{
 
- 					width: 25%;
 
- 					display: flex;
 
- 					justify-content: center;
 
- 					align-items: center;
 
- 					background-color: #fff;
 
- 					color: #4F575A;
 
- 					font-size: 28upx;
 
- 					font-weight: bold;
 
- 					font-family: PingFang SC;
 
- 				}
 
- 				.tab4{
 
- 					border-radius: 0rpx 30rpx 30rpx 0rpx;
 
- 					width: 25%;
 
- 					display: flex;
 
- 					justify-content: center;
 
- 					align-items: center;
 
- 					background-color: #fff;
 
- 					color: #4F575A;
 
- 					font-size: 28upx;
 
- 					font-weight: bold;
 
- 					font-family: PingFang SC;
 
- 				}
 
- 				.active{
 
- 					background-color: #2583EB;
 
- 					color: #fff;
 
- 				}
 
- 				 
 
- 			}
 
- 			 
 
- 		}
 
- 		.ad{
 
- 			margin-bottom: 50rpx;
 
- 			width: 100%;
 
- 			padding: 15rpx;
 
- 			 
 
- 		}
 
- 	}
 
- 	
 
- 	 
 
- </style>
 
 
  |