platform-head.vue 1.2 KB
<template>
	<view class="platform-head">
		<view class="logo-image" @click="demonav">
			<image src="../../static/images/Framelogo.png" class="logo-img" mode=""></image>
		</view>
	</view>
</template>

<script>
	export default {
		props: {},
		data() {
			return {
				orange: '../../static/images/Frame3081.png', // 橙色
				green: '../../static/images/Frame3082.png',
				red: '../../static/images/Frame3083.png',
				blue: '../../static/images/Frame3084.png',
			};
		},
		created() {},
		mounted() {},
		computed: {},
		methods: {
			demonav() {
				uni.navigateTo({
					url: '/pages/change-platform/index'
				})
			}
		}
	};
</script>

<style lang="scss" scoped>
	.platform-head {
		width: 100%;
		// background: '../../static/images/Frame3081.png' no-repeat; 
		background: url('@/static/images/Frame3081.png') no-repeat;
		background-size: 100% 100%;
		height: 238px;
		// background-color: #cccfff;
		opacity: 1;

		.logo-image {
			width: 100%;
			padding-top: 60px;
			box-sizing: border-box;
			display: flex;
			align-items: center;
			justify-content: center;

			.logo-img {
				width: 234px;
				height: 64px;
				opacity: 1;
			}
		}
	}
</style>