2025-06-30 09:38:03 +08:00

96 lines
2.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="abouts-v">
<view class="head-box u-flex-col">
<view class="head-inner">
<view class="version">
{{sysVersion}}
</view>
<image src="/static/image/jnpf.png" mode="widthFix" class="head-img"></image>
</view>
</view>
<view class="content u-p-l-32 u-p-r-32 u-p-t-30 u-font-28">
<text>引迈信息技术有限公司是一家做快速开发平台的企业针对软件传统开发遇到招人难留人难用人成本高技术更新换代快等一系列问题只需要一套JNPF平台您遇到的一系列问题就依然而解
JNPF采用主流的两大技术Java/.Net开发是一套低代码开发平台可视化开发环境有拖拽式的代码生成器灵活的权限配置SaaS服务强大的接口对接随心可变的工作流引擎一站式开发多端使用WebAndroidIOS微信小程序并且有以构建业务流程逻辑和数据模型等所需的功能为企业项目节省80%的重回工作让开发者将重心放在业务逻辑不必烦恼底层架构设计可短时间开发出如ERPOACRMHRMIS以及电信银行政府企业等各行业的企业应用系统
引迈信息技术有限公司以诚信为根本服务为基础理念通过持续不断地研发技术创新强化平台质量和颜值为企业保驾护航</text>
</view>
<view class="copyright">{{copyright}}</view>
</view>
</template>
<script>
import resources from '@/libs/resources.js'
export default {
data() {
return {
logoSrc: resources.banner.loginlogo,
copyright: 'Copyright © 2024 引迈信息技术有限公司出品',
sysVersion: ''
}
},
onLoad() {
this.sysVersion = uni.getStorageSync('sysVersion') || this.define.sysVersion
this.copyright = uni.getStorageSync('copyright') || 'Copyright © 2024 引迈信息技术有限公司出品'
},
}
</script>
<style lang="scss">
.abouts-v {
.head-box {
height: 308rpx;
background: url('@/pages/my/static/image/about-head.png') center no-repeat;
background-size: 100% 100%;
align-items: center;
justify-content: center;
.head-inner {
position: relative;
.head-img {
width: 212rpx;
height: 60rpx;
margin-top: 20rpx;
}
.version {
position: absolute;
background-color: #FFFFFF;
color: #0F5BD2;
padding: 0 8rpx;
border-radius: 20rpx 0rpx 20rpx 0rpx;
top: -34rpx;
left: 218rpx;
}
}
}
.abouts-hd {
width: 100%;
align-items: center;
background-color: #3281ff;
height: 280rpx;
color: #FFFFFF;
padding-top: 20rpx;
image {
width: 160rpx;
height: 160rpx;
}
}
.copyright {
height: 80rpx;
bottom: 0;
line-height: 80rpx;
}
.content {
height: calc(100vh - 486rpx);
overflow-y: scroll;
line-height: 48rpx;
}
}
</style>