index.vue 1.45 KB
<template>
	<view class="abouts-v">
		<view class="abouts-hd u-flex-col">
			<image :src="logoSrc" mode="widthFix"></image>
			<text>{{version}}</text>
		</view>
		<view class="content u-p-l-32 u-p-r-32 u-p-t-30 u-font-28">
			<text  space="nbsp">&nbsp;&nbsp;     青海卓英软件技术有限公司(www.qhzysoft.com)是一家面向全国客户提供领先的应用软件产品、信息服务及行业解决方案的IT企业。以软件开发、系统集成、信息安全、大数据分析为基础,成功构建起涵盖行业解决方案服务、基础设施服务、运营服务,运维外包等内容为一体的IT服务体系,为客户提供全生命周期IT服务。
			卓英软件以诚信为根本、服务为基础理念,通过持续不断地研发技术创新、强化平台质量和颜值,为企业保驾护航!</text>
		</view>
		<view class="copyright">Copyright © 2021 青海卓英软件技术有限公司</view>
	</view>
</template>

<script>
	import resources from '@/libs/resources.js'
	export default {
		data() {
			return {
				logoSrc: resources.banner.loginlogo
			}
		},
		computed: {
			version() {
				return this.define.version
			}
		},
	}
</script>

<style lang="scss">
	.abouts-v {
		.abouts-hd {
			width: 100%;
			align-items: center;
			background-color: #3281ff;
			height: 280rpx;
			color: #FFFFFF;
			padding-top: 20rpx;

			image {
				width: 160rpx;
				height: 160rpx;
			}
		}

		.content {
			line-height: 48rpx;
		}
	}
</style>