fix: 增加认证,修改部分展示内容。
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
||||
<meta name="format-detection" content="telephone=no,email=no"/>
|
||||
<meta http-equiv="x-dns-prefetch-control" content="on"/>
|
||||
<link rel="dns-prefetch" href="http://www.zhichou.com"/>
|
||||
<title>智聪科技——记账平台、健康档案管理</title>
|
||||
<link rel="dns-prefetch" href="http://www.qdintc.com"/>
|
||||
<title>智聪科技</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
||||
@@ -13,6 +13,7 @@ export default class Util {
|
||||
ios: !!userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), // ios终端
|
||||
android: userAgent.indexOf('Android') > -1 || userAgent.indexOf('Linux') > -1, // android终端或者uc浏览器
|
||||
iPhone: userAgent.indexOf('iPhone') > -1, // 是否为iPhone
|
||||
mobile: !!userAgent.match(/AppleWebKit.*Mobile.*/), // 是否为移动终端
|
||||
iPad: userAgent.indexOf('iPad') > -1, // 是否iPad
|
||||
webApp: userAgent.indexOf('Safari') === -1, // 是否web应该程序,没有头部与底部
|
||||
wechat: userAgent.indexOf('MicroMessenger') > -1
|
||||
|
||||
BIN
src/assets/logo.jpg
Normal file
BIN
src/assets/logo.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,11 +1,15 @@
|
||||
<template>
|
||||
<footer class="zui-footer">
|
||||
<div class="links">
|
||||
2024 © 智聪科技 Copyright
|
||||
|
||||
<a href="https://beian.miit.gov.cn/" target="_blank"> 鲁ICP备2024118666号-1</a>
|
||||
<img src ="./img/gongan.png" width="18" height="20"> <a href="https://beian.mps.gov.cn/#/query/webSearch?code=37021202001661" rel="noreferrer" target="_blank">鲁公网安备37021202001661</a>
|
||||
</div>
|
||||
<div class="links">
|
||||
|
||||
</div>
|
||||
<p class="copy-right">
|
||||
|
||||
Copyright 2024 智聪科技股份有限公司.All rights reserved.
|
||||
<br>
|
||||
|
||||
</p>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
},
|
||||
computed: {
|
||||
cls () {
|
||||
const cls = (Util.os.android || Util.os.iPhone) ? '' : 'min-1200'
|
||||
const cls = (Util.os.android || Util.os.iPhone || Util.os.wechat || Util.os.wechat|| Util.os.mobile) ? '' : 'min-1200'
|
||||
return 'zui-page ' + cls
|
||||
},
|
||||
toastText () {
|
||||
|
||||
BIN
src/components/img/gongan.png
Normal file
BIN
src/components/img/gongan.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
@@ -18,7 +18,7 @@
|
||||
<h1 class="vivify popIn">
|
||||
<span class="br"></span>科学记账、量入为出,健康档案、守护未来
|
||||
</h1>
|
||||
<h3 class="vivify popIn">技术引领,服务为基础,科技为核心</h3>
|
||||
<h3 class="vivify popIn">技术引领,服务为基础,用户为核心,需求为导向</h3>
|
||||
</div>
|
||||
<div class="nav clear">
|
||||
<a class="zhichou vivify popIn">
|
||||
@@ -114,7 +114,7 @@
|
||||
feature2: feature2,
|
||||
feature3: feature3,
|
||||
feature4: feature4,
|
||||
carouselPerPage: (Util.os.android || Util.os.iPhone) ? 1 : 2,
|
||||
carouselPerPage: (Util.os.android || Util.os.iPhone|| Util.os.mobile) ? 1 : 2,
|
||||
configData : {
|
||||
position: { // 设置显示位置,position
|
||||
top: '60px',
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
feature2: feature2,
|
||||
feature3: feature3,
|
||||
feature4: feature4,
|
||||
carouselPerPage: (Util.os.android || Util.os.iPhone) ? 1 : 2,
|
||||
carouselPerPage: (Util.os.android || Util.os.iPhone|| Util.os.wechat|| Util.os.mobile) ? 1 : 2,
|
||||
configData : {
|
||||
position: { // 设置显示位置,position
|
||||
top: '60px',
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
feature2: feature2,
|
||||
feature3: feature3,
|
||||
feature4: feature4,
|
||||
carouselPerPage: (Util.os.android || Util.os.iPhone) ? 1 : 2,
|
||||
carouselPerPage: (Util.os.android || Util.os.iPhone|| Util.os.wechat|| Util.os.mobile) ? 1 : 2,
|
||||
configData : {
|
||||
position: { // 设置显示位置,position
|
||||
top: '60px',
|
||||
|
||||
Reference in New Issue
Block a user