indexNoLogin.vue 6.2 KB
<template>
	<view>
		<!-- 轮播图区域 -->
		<view class="swiperBgWrap">
			<u-swiper @change="change" :height="326" :list="list" :title="title" :effect3d="effect3d"
			:indicator-pos="indicatorPos" :mode="mode" :interval="3000" @click="click"></u-swiper>
		</view>
		<!-- 单位简介区域 -->
		<view class="unitDescWrap">
			<img-txt-title :imgSize="44" :imgUrl="'../../static/image/index/ic_87@2x.png'" :txtInfo="'单位简介'"></img-txt-title>
			<view class="unitDesc">
				中国冶金地质总局成立于1952年,隶属国务院国有资产监督管理委员会,是中央管理的地质勘查单位,肩负着提高资源保障能力的公益性央企,主要从事固体矿产地质勘查、研究、开发、服务,超硬材料生产及机械装备制造。资产总额230多亿元。 中国冶金地质下属11个局院(中心)、6个控股公司,队伍驻地分布在全国20个省、自治区和直辖市。   宗旨和业务范围:为国家冶金地质工作提供管理保障;固体矿产地质勘查、研究、开发、服务;超硬材料生产及机械设备研制;冶金地质勘查发展规划和规章制度制定;冶金地质行业标准研究;冶金地质勘查业务管理;相关地质勘查组织实施;所属地质单位队伍管理;国外重要地质矿产勘查;找矿理论和勘查技术等相关研究,提供技术服务
			</view>
			<view class="companyVideo">
				<video 
					id="myVideo" 
					src="https://img.cdn.aliyun.dcloud.net.cn/guide/uniapp/%E7%AC%AC1%E8%AE%B2%EF%BC%88uni-app%E4%BA%A7%E5%93%81%E4%BB%8B%E7%BB%8D%EF%BC%89-%20DCloud%E5%AE%98%E6%96%B9%E8%A7%86%E9%A2%91%E6%95%99%E7%A8%8B@20200317.mp4"
				    controls
				></video>
			</view>
		</view>
		<!-- 单位案例区域 -->
		<view class="unitCaseWrap">
			<img-txt-title :imgSize="44" :imgUrl="'../../static/image/index/ic_88@2x.png'" :txtInfo="'单位案例'"></img-txt-title>
			<view class="unitCase">
				<view class="caseItem">
					<image src="../../static/image/del/ic_90@2x.png" mode="aspectFill"></image>
					<view class="companyName">
						杭州传媒有限公司
					</view>
				</view>
				<view class="caseItem">
					<image src="../../static/image/del/ic_90@2x.png" mode="aspectFill"></image>
					<view class="companyName">
						杭州传媒有限公司杭州传媒有限公司
					</view>
				</view>
				<view class="caseItem">
					<image src="../../static/image/del/ic_90@2x.png" mode="aspectFill"></image>
					<view class="companyName">
						杭州传媒有限公司
					</view>
				</view>
				<view class="caseItem">
					<image src="../../static/image/del/ic_90@2x.png" mode="aspectFill"></image>
					<view class="companyName">
						杭州传媒有限公司
					</view>
				</view>
			</view>
		</view>
		<!-- 底部按钮区域 -->
		<view class="bottomBtnWrap">
			<view class="companyReplyBtn" @click="$href('replyDesc')">
				企业入驻
			</view>
			<view class="loginBtnList">
				<navigator url="loginCompany" hover-class="none" class="loginBtnItem company">
					<image src="../../static/image/index/ic_91@2x.png" mode=""></image>
					企业登录
				</navigator>
				<navigator url="loginUser" hover-class="none" class="loginBtnItem complat">
					<image src="../../static/image/index/ic_92@2x.png" mode=""></image>
					平台员工登录
				</navigator>
			</view>
		</view>
	</view>
		
	</view>
</template>

<script>
	import imgTxtTitle from '@/components/imgTxtTitle.vue'
	export default {
		data() {
			return {
				list: [{
						image: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
						title: '昨夜星辰昨夜风,画楼西畔桂堂东'
					},
					{
						image: 'https://cdn.uviewui.com/uview/swiper/2.jpg',
						title: '身无彩凤双飞翼,心有灵犀一点通'
					},
					{
						image: 'https://cdn.uviewui.com/uview/swiper/3.jpg',
						title: '谁念西风独自凉,萧萧黄叶闭疏窗,沉思往事立残阳'
					}
				],
				title: false,
				mode: 'round',
				indicatorPos: 'bottomCenter',
				effect3d: false,
			}
		},
		components:{
			imgTxtTitle
		},
		onLoad() {

		},
		methods: {
			change(index) {
				// console.log(index);
			}
		}
	}
</script>

<style lang="scss" scoped>
	// 轮播图背景区域
	.swiperBgWrap{
		height: 352rpx;
		background: linear-gradient(180deg,$uni-bg-main-color, $uni-bg-bai-color, $uni-bg-bai-color);
		padding: 20rpx 32rpx 0 32rpx;
	}
	// 单位简介区域
	.unitDescWrap{
		margin: 20rpx 32rpx 0 32rpx;
		background: #ffffff;
		border-radius: 20rpx;
		box-shadow: 0rpx 2rpx 16rpx 0rpx rgba(97,97,97,0.05); 
		.unitDesc{
			padding: 0 24rpx;
			font-size: $uni-font-size-28;
			color: $uni-text-color-hui;
			line-height: $uni-font-lh-40;
		}
		.companyVideo{
			padding: 32rpx;
			video{
				width: 100%;
				border-radius: $uni-border-radius-20;
				height: 300rpx;
			}
		}
	}
	// 单位案例区域
	.unitCaseWrap{
		padding: 20rpx 30rpx 0 30rpx;
		.unitCase{
			display: flex;
			flex-wrap: wrap;
			.caseItem{
				margin-right: 20rpx;
				margin-top: 10rpx;
				image{width: 216rpx;height: 136rpx;}
				.companyName{
					width: 216rpx;
					font-size: $uni-font-size-24;
					font-weight: 600;
					line-height: $uni-font-lh-40;
					text-align: center;
					overflow: hidden;
					text-overflow: ellipsis;
					display: -webkit-box;
					-webkit-line-clamp:1;
					-webkit-box-orient:vertical;
				}
			}
			.caseItem:nth-of-type(3n){margin-right: 0;}
		}
	}
	// 底部按钮区域
	.bottomBtnWrap{
		padding: 100rpx 60rpx 66rpx 60rpx;
		.companyReplyBtn{
			height: 80rpx;
			border: 2rpx solid #969799;
			border-radius: 82rpx;
			line-height: 40rpx;
			font-size: $uni-font-size-32;
			line-height: 80rpx;
			text-align: center;
		}
		.loginBtnList{
			padding-top: 44rpx;
			display: flex;
			.loginBtnItem{
				height: 80rpx;
				flex: 1;
				display: flex;
				justify-content: center;
				align-items: center;
				image{width: $uni-img-size-32;height: $uni-img-size-32;margin-right: 12rpx;}
				color: $uni-text-color-bai;
				font-size: $uni-font-size-32;
			}
			.loginBtnItem.company{
				background: $uni-bg-main-color;
				border-radius: $uni-border-radius-80 0rpx 0rpx $uni-border-radius-80;
			}
			.loginBtnItem.complat{
				background: $uni-bg-color-lv;
				border-radius: 0rpx $uni-border-radius-80 $uni-border-radius-80 0;
			}
		}
	}
</style>