@ -0,0 +1,24 @@
|
||||
<script> |
||||
export default { |
||||
onLaunch: function () { |
||||
console.log('App Launch') |
||||
}, |
||||
onShow: function () { |
||||
|
||||
}, |
||||
onHide: function () { |
||||
console.log('App Hide') |
||||
}, |
||||
mounted() { |
||||
|
||||
}, |
||||
created() { |
||||
|
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
/*每个页面公共css */ |
||||
@import "@/uni_modules/uview-plus/index.scss"; |
||||
</style> |
@ -0,0 +1,15 @@
|
||||
import request from "@/utils/request"; |
||||
import {host} from "@/config/host"; |
||||
/** |
||||
* 获取配置 |
||||
* @param sign |
||||
* @returns {Promise | Promise<unknown>} |
||||
*/ |
||||
export function getConfig(sign){ |
||||
return request({ |
||||
url:`/get-config`, |
||||
data:{ |
||||
sign:sign |
||||
} |
||||
}) |
||||
} |
@ -0,0 +1,44 @@
|
||||
/** |
||||
* 用户缓存操作 |
||||
*/ |
||||
export default (function () { |
||||
let userCacheKey = "user"; |
||||
let extCacheKey = "userExtends"; |
||||
|
||||
function set(key, info, obj){ |
||||
uni.setStorageSync(key, info); |
||||
return obj; |
||||
} |
||||
|
||||
function get(cacheKey, key, defaultValue){ |
||||
let info = uni.getStorageSync(cacheKey); |
||||
return key !== null |
||||
? (info[key] ? info[key] : defaultValue) |
||||
: info; |
||||
} |
||||
|
||||
function remove(cacheKey){ |
||||
uni.removeStorageSync(cacheKey); |
||||
} |
||||
|
||||
return { |
||||
set:(info) => set(userCacheKey, info), |
||||
setAndReturn(info){ |
||||
this.set(info); |
||||
return this.get(); |
||||
}, |
||||
get:(key = null, defaultValue = null) => get(userCacheKey, key, defaultValue), |
||||
extSet:(info) => set(extCacheKey, info), |
||||
extSetAndReturn(info){ |
||||
this.extSet(info); |
||||
return this.extGet(); |
||||
}, |
||||
extGet:(key = null, defaultValue = null) => get(extCacheKey, key, defaultValue), |
||||
clearUser:()=> remove(userCacheKey), |
||||
clearUserExt:() => remove(extCacheKey), |
||||
clearAll(){ |
||||
this.clearUser(); |
||||
this.clearUserExt(); |
||||
} |
||||
} |
||||
})(); |
@ -0,0 +1,15 @@
|
||||
import UserCache from "@/config/UserCache"; |
||||
|
||||
/** |
||||
* 当前环境 |
||||
* @type {string} |
||||
*/ |
||||
const ENV = 'dev'; |
||||
|
||||
/** |
||||
* 打开日志打印 |
||||
* @type {boolean} |
||||
*/ |
||||
const OPEN_LOG = true; |
||||
|
||||
export {OPEN_LOG, ENV, UserCache} |
@ -0,0 +1,9 @@
|
||||
// const host='http://192.168.2.92:9505/api'
|
||||
const host='https://weiyang.test.scyp.ink/api' |
||||
// const host='https://bml.test.scyp.ink/api'
|
||||
// const host='http://192.168.2.92:9503/api'
|
||||
const imghost='https://weiyang.test.scyp.ink/static/image' |
||||
const title = '汪汪行天下' |
||||
const oss = 'https://pet-feed.'+'oss-cn-chengdu.aliyuncs.com' |
||||
// const codehost='http://code.baomingle.cn'
|
||||
export {host,imghost,title,oss} |
@ -0,0 +1,25 @@
|
||||
import {imghost} from "@/config/host"; |
||||
|
||||
const image = { |
||||
CardList:{ |
||||
screenActiveImg: imghost + '/screen-active.png', |
||||
cardBackground: imghost + '/order-card-background.png', |
||||
wallpaperBgImage:imghost +'/card-background.png', |
||||
dogImage:imghost+'/index-user-title-dog.png', |
||||
}, |
||||
IndexPage(){ |
||||
|
||||
}, |
||||
OrderPage:{ |
||||
wallpaperBgImage:imghost +'/background.png', |
||||
addrBg:imghost+'/order-create-addr-bg.png', |
||||
addrAvatar:imghost+'/order-create-addr-avatar.png', |
||||
addrFw:imghost+'/order-create-addr-fw.png', |
||||
addrBook:imghost+'/order-create-addr-book.png', |
||||
tagClose:imghost+'/order-create-tag-close.png', |
||||
selectPet:imghost+'/order-create-select-pet.png', |
||||
selectService:imghost+'/order-create-select-service.png', |
||||
groupImg:imghost+'/order-create-group-1.png', |
||||
}, |
||||
} |
||||
export default image; |
@ -0,0 +1,668 @@
|
||||
<!doctype html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<meta name="viewport" |
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> |
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
||||
<title>首页</title> |
||||
<link href="/static/css/bootstrap.min.css" rel="stylesheet"> |
||||
<link href="/static/css/swiper-bundle.min.css" rel="stylesheet"> |
||||
<link href="/static/css/main.css" rel="stylesheet"> |
||||
<style> |
||||
#app, uni-app, uni-page, uni-page-wrapper{ |
||||
height:auto !important; |
||||
} |
||||
</style> |
||||
</head> |
||||
<body> |
||||
<header class="container-fluid"> |
||||
<div class="menu-container justify-content-between"> |
||||
<div class="logo"> |
||||
<img src="/static/image/logo.png" loading="lazy" class="img" alt="LOGO"/> |
||||
</div> |
||||
<div class="menu"> |
||||
<div>首页</div> |
||||
<div>关于我们</div> |
||||
<div>18881167259</div> |
||||
<div>icon</div> |
||||
<div>icon</div> |
||||
</div> |
||||
</div> |
||||
</header> |
||||
<div class="container-fluid banner"> |
||||
<div class="banner-mask"></div> |
||||
<img src="/static/image/banner.png" loading="lazy" class="img-fluid" alt="BANNER"/> |
||||
</div> |
||||
<div class="container text-center"> |
||||
<div class="title-container"> |
||||
<div class="title">我们擅长</div> |
||||
<div class="subtitle">BE GOOD AT</div> |
||||
<div class="desc"> |
||||
专业的事情交给专业的人来做,做企业您是专业的,做软件我们是认真的 |
||||
</div> |
||||
</div> |
||||
<div class="row card-group"> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-1.png" class="card-img-top" alt="移动APP定制"> |
||||
<div class="content-container"> |
||||
<div class="title">移动APP定制</div> |
||||
<div class="desc">IOS、Android原生定制开发</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-2.png" class="card-img-top" alt="软件系统"> |
||||
<div class="content-container"> |
||||
<div class="title">软件系统</div> |
||||
<div class="desc">分析问题 解决问题 定制研发</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-3.png" class="card-img-top" alt="定制化解决方案"> |
||||
<div class="content-container"> |
||||
<h5 class="title">定制化解决方案</h5> |
||||
<p class="desc">商城APP 微商城 多商家商城系统</p> |
||||
</div> |
||||
</div> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-4.png" class="card-img-top" alt="微信公众号/小程序"> |
||||
<div class="content-container"> |
||||
<div class="title">微信公众号/小程序</div> |
||||
<div class="desc">掌握微信10亿用户流量入口</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-5.png" class="card-img-top" alt="企业/政府信息化"> |
||||
<div class="content-container"> |
||||
<div class="title">企业/政府信息化</div> |
||||
<div class="desc">门户网站 移动办公 数据共享</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-6.png" class="card-img-top" alt="人力资源外包"> |
||||
<div class="content-container"> |
||||
<div class="title">人力资源外包</div> |
||||
<div class="desc">招聘力量不能满足项目工期需求</div> |
||||
</div> |
||||
</div> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-7.png" class="card-img-top" alt="UI&UX设计"> |
||||
<div class="content-container"> |
||||
<h5 class="title">UI&UX设计</h5> |
||||
<p class="desc">良好的界面元素和操作方式,可以降低产品推广的难度,降低用户的学习成本</p> |
||||
</div> |
||||
</div> |
||||
<div class="card-container col-3"> |
||||
<img src="/static/image/good-8.png" class="card-img-top" alt="IT商业咨询"> |
||||
<div class="content-container"> |
||||
<div class="title">IT商业咨询</div> |
||||
<div class="desc">针对不同企业生成经营中的问题,进行梳理和出具具有可执行性的实施方案</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="title-container text-center"> |
||||
<div class="title">项目案例</div> |
||||
<div class="subtitle">PROJECT CASES</div> |
||||
<div class="desc"> |
||||
省时、省力、省费用,提效、提能、提业绩,软件解决方案快速帮助企业赋能 |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="screen-container"> |
||||
<div class="position-group"> |
||||
<div class="label"> |
||||
行业: |
||||
</div> |
||||
<div class="item"></div> |
||||
</div> |
||||
<div class="type-group"> |
||||
<div class="label"> |
||||
类型: |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="container swiper-container"> |
||||
<div class="swiper swiper1"> |
||||
<div class="swiper-wrapper"> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-1.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-2.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-3.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-4.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-5.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-6.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-7.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-8.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-8.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-7.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-6.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-5.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-4.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-3.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-2.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-1.png" alt="" class="img-fluid"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="swiper swiper2"> |
||||
<div class="swiper-wrapper"> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-1.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-2.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-3.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-4.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-5.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-6.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-7.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-8.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-8.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-7.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-6.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-5.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-4.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-3.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-2.png" alt="" class="img-fluid"> |
||||
</div> |
||||
<div class="swiper-slide"> |
||||
<img src="/static/image/al-1.png" alt="" class="img-fluid"> |
||||
</div> |
||||
</div> |
||||
|
||||
<!-- 如果需要导航按钮 --> |
||||
<div class="swiper-button-prev"></div> |
||||
<div class="swiper-button-next"></div> |
||||
</div> |
||||
</div> |
||||
<div id="app"> |
||||
|
||||
</div> |
||||
<div class="title-container text-center"> |
||||
<div class="title">涉猎领域</div> |
||||
<div class="subtitle">FIELD OF INTEREST</div> |
||||
<div class="desc"> |
||||
全定制服务,多行业开发经验,以为多家企业成功数字化转型升级 |
||||
</div> |
||||
</div> |
||||
<div class="container-fluid icon-group text-center" style="background-image:url('/static/image/ly-back.png')"> |
||||
|
||||
<div class="row"> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-1.png" alt="电商类"> |
||||
<div class="title">电商类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-2.png" alt="智慧家居"> |
||||
<div class="title">智慧家居</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-3.png" alt="金融类"> |
||||
<div class="title">金融类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-4.png" alt="医疗类"> |
||||
<div class="title">医疗类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-5.png" alt="旅游类"> |
||||
<div class="title">旅游类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-6.png" alt="地产类"> |
||||
<div class="title">地产类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-7.png" alt="政务类"> |
||||
<div class="title">政务类</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-8.png" alt="行业门户类"> |
||||
<div class="title">行业门户类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-9.png" alt="移动办公类"> |
||||
<div class="title">移动办公类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-10.png" alt="餐饮类"> |
||||
<div class="title">餐饮类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-11.png" alt="智慧农业类"> |
||||
<div class="title">智慧农业类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-12.png" alt="社区类"> |
||||
<div class="title">社区类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-13.png" alt="社交聊天类"> |
||||
<div class="title">社交聊天类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-14.png" alt="智慧城市类"> |
||||
<div class="title">智慧城市类</div> |
||||
</div> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-15.png" alt="在线教育类"> |
||||
<div class="title">在线教育类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-16.png" alt="直播类"> |
||||
<div class="title">直播类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-17.png" alt="能源物流类"> |
||||
<div class="title">能源物流类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-18.png" alt="智能制造类"> |
||||
<div class="title">智能制造类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-19.png" alt="地产物业类"> |
||||
<div class="title">地产物业类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-20.png" alt="预约引流类"> |
||||
<div class="title">预约引流类</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/ly-21.png" alt="通信高科类"> |
||||
<div class="title">通信高科类</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="title-container text-center" style="margin:100px 0;"> |
||||
<div class="title">为您提供</div> |
||||
<div class="subtitle">TO PROVIDE YOU WITH</div> |
||||
<div class="desc"> |
||||
我们认为,服务和技术同样重要,项目实现方式很多,但是我们抓取适合您的 |
||||
</div> |
||||
</div> |
||||
<div class="container-fluid send-group text-center" style="background-image:url('/static/image/send-back.png')"> |
||||
<div class="row"> |
||||
<div class="col"> |
||||
<img src="/static/image/send-1.png" alt="需求调研"> |
||||
<div class="title">需求调研</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/send-2.png" alt="需求方案"> |
||||
<div class="title">需求方案</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/send-3.png" alt="项目实施"> |
||||
<div class="title">项目实施</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/send-4.png" alt="技术选型"> |
||||
<div class="title">技术选型</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/send-5.png" alt="售后服务"> |
||||
<div class="title">售后服务</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/send-6.png" alt="信息安全"> |
||||
<div class="title">信息安全</div> |
||||
</div> |
||||
<div class="col"> |
||||
<img src="/static/image/send-7.png" alt="服务响应"> |
||||
<div class="title">服务响应</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="title-container text-center" style="margin:100px 0;"> |
||||
<div class="title">服务流程</div> |
||||
<div class="subtitle">SERVICE PROCESS</div> |
||||
<div class="desc"> |
||||
从需求到交付,一站式响应,节点把控,协调沟通 |
||||
</div> |
||||
</div> |
||||
<div class="container-fluid" style="padding:0 160px;"> |
||||
<img class="img-fluid" src="/static/image/step.png" alt="服务流程"> |
||||
</div> |
||||
<div class="title-container text-center" style="margin:200px 0 60px 0;"> |
||||
<div class="title">合作客户</div> |
||||
<div class="subtitle">COOPERATIVE CLIENTS</div> |
||||
<div class="desc"> |
||||
每一位客户都是我们一路走来的必不可少的伙伴,我们一起探寻、协调、成长、共赢 |
||||
</div> |
||||
</div> |
||||
<div class="container-fluid text-center client-group"> |
||||
<div class="row"> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-1.png"> |
||||
</div> |
||||
</div> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-2.png"> |
||||
</div> |
||||
</div> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-3.png"> |
||||
</div> |
||||
</div> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-4.png"> |
||||
</div> |
||||
</div> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-5.png"> |
||||
</div> |
||||
</div> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-6.png"> |
||||
</div> |
||||
</div> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-7.png"></div> |
||||
</div> |
||||
<div class="col-3"> |
||||
<div class="client-box"> |
||||
<img class="img-fluid" src="/static/image/client-8.png"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="title-container text-center" style="margin:200px 0 60px 0;"> |
||||
<div class="title">资质证书</div> |
||||
<div class="subtitle">QUALIFICATION CERTIFICATE</div> |
||||
<!-- <div class="desc">--> |
||||
<!-- 每一位客户都是我们一路走来的必不可少的伙伴,我们一起探寻、协调、成长、共赢--> |
||||
<!-- </div>--> |
||||
</div> |
||||
<div class="container text-center book-group"> |
||||
<div class="row"> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="col-2"> |
||||
<div class="rotate-box"> |
||||
<div class="main-img"> |
||||
<img class="img-fluid" src="/static/image/book.png"> |
||||
</div> |
||||
<div class="rotate-img"> |
||||
<img class="img-fluid rotate" src="/static/image/book.png"> |
||||
<div class="rotate-mask"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<footer> |
||||
<div class="container"> |
||||
<div class="row"> |
||||
<div class="col"> |
||||
<div class="title">客服咨询热线</div> |
||||
<div class="phone" style="margin-top:30px;"> |
||||
028-61961157 |
||||
</div> |
||||
<div class="phone"> |
||||
19102617271 |
||||
</div> |
||||
</div> |
||||
<div class="col"> |
||||
<div class="title"> |
||||
公司地址 |
||||
</div> |
||||
<div class="content"> |
||||
成都市武侯区商鼎国际2栋1单元1506 |
||||
</div> |
||||
</div> |
||||
<div class="col"> |
||||
<div class="title"> |
||||
电子邮箱 |
||||
</div> |
||||
<div class="content"> |
||||
804609860@qq.com |
||||
</div> |
||||
</div> |
||||
<div class="col text-center" style="display: flex;"> |
||||
<div class="qrcode-box"> |
||||
<img src="/static/image/qrcode.png" alt=""> |
||||
<div class="job">产品运营顾问</div> |
||||
<div class="name">王经理</div> |
||||
</div> |
||||
<div class="qrcode-box"> |
||||
<img src="/static/image/qrcode.png" alt=""> |
||||
<div class="job">产品运营顾问</div> |
||||
<div class="name">王经理</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="hr"></div> |
||||
<div class="menu justify-content-center"> |
||||
<div class="item">首页</div> |
||||
<div class="item">服务内容</div> |
||||
<div class="item">产品案例</div> |
||||
<div class="item">关于我们</div> |
||||
<div class="item">荣誉证书</div> |
||||
<div class="item">联系我们</div> |
||||
</div> |
||||
<div class="copyright text-center"> |
||||
©四川逸旁科技有限公司版权所有 | 蜀ICP备2021013355号 |
||||
</div> |
||||
</footer> |
||||
</body> |
||||
<script src="/static/js/bootstrap.min.js"></script> |
||||
<script src="/static/js/swiper-bundle.min.js"></script> |
||||
<script type="module" src="/main.js"></script> |
||||
<script> |
||||
function swiperInit(){ |
||||
let thumbsSwiper = new Swiper(".swiper2", { |
||||
spaceBetween: 15, |
||||
slidesPerView: 4, |
||||
grid: { |
||||
fill: 'row', |
||||
rows: 2, |
||||
}, |
||||
navigation: { |
||||
nextEl: ".swiper-button-next", |
||||
prevEl: ".swiper-button-prev", |
||||
}, |
||||
// freeMode: true, |
||||
watchSlidesProgress: true, |
||||
}); |
||||
let gallerySwiper = new Swiper(".swiper1", { |
||||
thumbs: { |
||||
swiper: thumbsSwiper , |
||||
}, |
||||
}); |
||||
} |
||||
swiperInit() |
||||
|
||||
</script> |
||||
</html> |
||||
|
@ -0,0 +1,29 @@
|
||||
import App from './App' |
||||
|
||||
// #ifndef VUE3
|
||||
import Vue from 'vue' |
||||
import './uni.promisify.adaptor' |
||||
Vue.config.productionTip = false |
||||
App.mpType = 'app' |
||||
const app = new Vue({ |
||||
...App |
||||
}) |
||||
app.$mount() |
||||
// #endif
|
||||
|
||||
// #ifdef VUE3
|
||||
import uviewPlus from '@/uni_modules/uview-plus' |
||||
import { createSSRApp } from 'vue' |
||||
import { title } from '@/config/host.js' |
||||
import store from "@/store"; |
||||
|
||||
export function createApp() { |
||||
const app = createSSRApp(App) |
||||
app.use(uviewPlus) |
||||
app.use(store) |
||||
uni.$u.config.unit = 'px' |
||||
return { |
||||
app |
||||
} |
||||
} |
||||
// #endif
|
@ -0,0 +1,92 @@
|
||||
{ |
||||
"name" : "sc_web", |
||||
"appid" : "__UNI__BA565DD", |
||||
"description" : "", |
||||
"versionName" : "1.0.0", |
||||
"versionCode" : "100", |
||||
"transformPx" : false, |
||||
/* 5+App特有相关 */ |
||||
"app-plus" : { |
||||
"usingComponents" : true, |
||||
"nvueStyleCompiler" : "uni-app", |
||||
"compilerVersion" : 3, |
||||
"splashscreen" : { |
||||
"alwaysShowBeforeRender" : true, |
||||
"waiting" : true, |
||||
"autoclose" : true, |
||||
"delay" : 0 |
||||
}, |
||||
/* 模块配置 */ |
||||
"modules" : {}, |
||||
/* 应用发布信息 */ |
||||
"distribute" : { |
||||
/* android打包配置 */ |
||||
"android" : { |
||||
"permissions" : [ |
||||
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>", |
||||
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>", |
||||
"<uses-permission android:name=\"android.permission.VIBRATE\"/>", |
||||
"<uses-permission android:name=\"android.permission.READ_LOGS\"/>", |
||||
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>", |
||||
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>", |
||||
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>", |
||||
"<uses-permission android:name=\"android.permission.CAMERA\"/>", |
||||
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>", |
||||
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>", |
||||
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>", |
||||
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>", |
||||
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>", |
||||
"<uses-feature android:name=\"android.hardware.camera\"/>", |
||||
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>" |
||||
] |
||||
}, |
||||
/* ios打包配置 */ |
||||
"ios" : {}, |
||||
/* SDK配置 */ |
||||
"sdkConfigs" : {} |
||||
} |
||||
}, |
||||
/* 快应用特有相关 */ |
||||
"quickapp" : {}, |
||||
/* 小程序特有相关 */ |
||||
"mp-weixin" : { |
||||
"appid" : "wx4f93cb087d0e8e6c", |
||||
"setting" : { |
||||
"urlCheck" : false |
||||
}, |
||||
"usingComponents" : true, |
||||
"permission" : { |
||||
"scope.userLocation" : { |
||||
"desc" : "你的位置信息将用于小程序位置接口的效果展示" |
||||
}, |
||||
"scope.userFuzzyLocation" : { |
||||
"desc" : "你的位置信息将用于小程序位置接口的效果展示" |
||||
} |
||||
}, |
||||
"requiredPrivateInfos" : [ "chooseLocation", "getLocation" ] |
||||
}, |
||||
"mp-alipay" : { |
||||
"usingComponents" : true |
||||
}, |
||||
"mp-baidu" : { |
||||
"usingComponents" : true |
||||
}, |
||||
"mp-toutiao" : { |
||||
"usingComponents" : true |
||||
}, |
||||
"uniStatistics" : { |
||||
"enable" : false |
||||
}, |
||||
"vueVersion" : "3", |
||||
"h5" : { |
||||
"devServer" : { |
||||
"https" : false |
||||
}, |
||||
"optimization" : { |
||||
"treeShaking" : { |
||||
"enable" : true |
||||
} |
||||
}, |
||||
"title" : "官网" |
||||
} |
||||
} |
@ -0,0 +1,39 @@
|
||||
{ |
||||
"pages": [ |
||||
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages |
||||
{ |
||||
"path": "pages/Index/index", |
||||
"style": { |
||||
"navigationBarTitleText": "首页" |
||||
} |
||||
} |
||||
], |
||||
"globalStyle": { |
||||
"navigationBarTextStyle": "black", |
||||
"navigationBarTitleText": "uni-app", |
||||
"navigationBarBackgroundColor": "#F8F8F8", |
||||
"backgroundColor": "#F8F8F8", |
||||
"navigationStyle": "custom" |
||||
}, |
||||
"easycom": { |
||||
"custom": { |
||||
"^u-(.*)": "uview-plus/components/u-$1/u-$1.vue" |
||||
} |
||||
}, |
||||
"uniIdRouter": {}, |
||||
"condition": { |
||||
//模式配置,仅开发期间生效 |
||||
"current": 0, |
||||
//当前激活的模式(list 的索引项) |
||||
"list": [ |
||||
{ |
||||
"name": "", |
||||
//模式名称 |
||||
"path": "", |
||||
//启动页面,必选 |
||||
"query": "" |
||||
//启动参数,在页面的onLoad函数里面得到 |
||||
} |
||||
] |
||||
} |
||||
} |
@ -0,0 +1,47 @@
|
||||
<template> |
||||
|
||||
</template> |
||||
|
||||
<script> |
||||
import {imghost} from "@/config/host"; |
||||
import {UserCache} from "@/config/config.js"; |
||||
import log from "@/utils/log"; |
||||
export default { |
||||
components: { |
||||
|
||||
}, |
||||
data() { |
||||
return { |
||||
|
||||
} |
||||
}, |
||||
onLoad(option) { |
||||
|
||||
}, |
||||
methods: { |
||||
|
||||
}, |
||||
onReachBottom() { |
||||
|
||||
}, |
||||
onPageScroll(res) { |
||||
|
||||
}, |
||||
onShow(){ |
||||
|
||||
}, |
||||
created() { |
||||
|
||||
}, |
||||
mounted() { |
||||
|
||||
}, |
||||
watch: { |
||||
|
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss"> |
||||
|
||||
</style> |
@ -0,0 +1,276 @@
|
||||
html, body { |
||||
background-color: #050B20; |
||||
color: #fff; |
||||
} |
||||
|
||||
header { |
||||
height: 70px; |
||||
position: fixed; |
||||
top: 0; |
||||
left: 0; |
||||
background-color: transparent; |
||||
z-index: 999; |
||||
} |
||||
|
||||
.container { |
||||
max-width: 1200px; |
||||
} |
||||
|
||||
.menu-container { |
||||
display: flex; |
||||
padding: 0 80px; |
||||
background-color: transparent !important; |
||||
} |
||||
|
||||
.content-container { |
||||
max-width: 250px; |
||||
} |
||||
|
||||
.logo { |
||||
height: 100%; |
||||
} |
||||
.logo .img { |
||||
max-height: 70px; |
||||
width: auto; |
||||
} |
||||
|
||||
.banner { |
||||
position: relative; |
||||
height: 100vh; |
||||
padding-left: 0; |
||||
padding-right: 0; |
||||
overflow: hidden; |
||||
} |
||||
.banner .banner-mask { |
||||
position: absolute; |
||||
z-index: 1; |
||||
left: 0; |
||||
top: 0; |
||||
width: 100%; |
||||
height: 100%; |
||||
background: linear-gradient(180deg, rgba(27, 83, 234, 0.3) 0%, #050B20 100%); |
||||
} |
||||
|
||||
.menu { |
||||
display: flex; |
||||
align-items: center; |
||||
} |
||||
|
||||
.menu div { |
||||
color: #fff; |
||||
margin-right: 20px; |
||||
} |
||||
|
||||
.title-container { |
||||
position: relative; |
||||
z-index: 1; |
||||
font-size: 36px; |
||||
font-weight: bold; |
||||
color: #ffffff; |
||||
} |
||||
.title-container .subtitle { |
||||
position: absolute; |
||||
top: -10px; |
||||
opacity: 0.2; |
||||
width: 100%; |
||||
} |
||||
.title-container .desc { |
||||
margin-top: 18px; |
||||
font-size: 14px; |
||||
color: #DBEBFD; |
||||
font-weight: normal; |
||||
opacity: 0.5; |
||||
} |
||||
|
||||
.card-group { |
||||
padding-top: 77px; |
||||
padding-bottom: 149px; |
||||
} |
||||
.card-group .card-container .content-container { |
||||
width: 100%; |
||||
margin-top: 20px; |
||||
} |
||||
.card-group .card-container .content-container .title { |
||||
font-size: 18px; |
||||
font-weight: bold; |
||||
color: #fff; |
||||
margin-bottom: 14px; |
||||
} |
||||
.card-group .card-container .content-container .desc { |
||||
color: #fff; |
||||
font-size: 14px; |
||||
margin-bottom: 42px; |
||||
} |
||||
|
||||
.icon-group { |
||||
margin-top: 110px; |
||||
background-position: center center; |
||||
background-size: 100% 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
.icon-group .col { |
||||
padding-top: 60px; |
||||
padding-bottom: 60px; |
||||
} |
||||
.icon-group .title { |
||||
text-align: center; |
||||
margin-top: 26px; |
||||
} |
||||
.icon-group img { |
||||
width: 100px; |
||||
height: 100px; |
||||
} |
||||
|
||||
.send-group { |
||||
background-position: center center; |
||||
background-size: 100% 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
.send-group img { |
||||
width: 60px; |
||||
height: 60px; |
||||
} |
||||
.send-group .col { |
||||
padding: 243px 0; |
||||
background-color: rgba(0, 0, 0, 0.5); |
||||
border-right: 1px solid rgba(255, 255, 255, 0.2); |
||||
} |
||||
.send-group .col:last-child { |
||||
border-right: none; |
||||
} |
||||
|
||||
.client-group .row { |
||||
padding: 0 91px; |
||||
} |
||||
.client-group .col-3 { |
||||
padding: 35px; |
||||
} |
||||
.client-group .col-3 .client-box { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
min-height: 180px; |
||||
align-content: stretch; |
||||
border: 1px solid rgba(255, 255, 255, 0.2); |
||||
} |
||||
.client-group .col-3 img { |
||||
max-width: 300px; |
||||
max-height: 80px; |
||||
} |
||||
|
||||
.book-group { |
||||
margin-bottom: 145px; |
||||
} |
||||
.book-group .col-2 { |
||||
padding: 0 30px 80px 30px; |
||||
overflow: hidden; |
||||
} |
||||
.book-group .col-2 .rotate-box { |
||||
position: relative; |
||||
} |
||||
.book-group .col-2 .rotate-box .main-img { |
||||
position: relative; |
||||
z-index: 2; |
||||
} |
||||
.book-group .col-2 .rotate-box .rotate-img { |
||||
position: absolute; |
||||
top: 103%; |
||||
width: 100%; |
||||
height: 100%; |
||||
z-index: 1; |
||||
} |
||||
.book-group .col-2 .rotate-box .rotate-img .rotate { |
||||
opacity: 0.3; |
||||
transform: rotateX(180deg); |
||||
} |
||||
.book-group .col-2 .rotate-box .rotate-img .rotate-mask { |
||||
position: absolute; |
||||
z-index: 1; |
||||
width: 100%; |
||||
height: 80px; |
||||
top: 0; |
||||
left: 0; |
||||
background: linear-gradient(0deg, #050B20 0%, rgba(5, 11, 32, 0) 100%); |
||||
} |
||||
|
||||
footer .title { |
||||
font-size: 20px; |
||||
color: #fff; |
||||
font-weight: bold; |
||||
} |
||||
footer .phone { |
||||
font-size: 32px; |
||||
font-weight: bold; |
||||
margin-bottom: 26px; |
||||
} |
||||
footer .content { |
||||
font-size: 18px; |
||||
margin-top: 34px; |
||||
} |
||||
footer .qrcode-box:first-child { |
||||
padding-right: 15px; |
||||
} |
||||
footer .qrcode-box img { |
||||
max-width: 120px; |
||||
width: 100%; |
||||
margin-bottom: 5px; |
||||
} |
||||
footer .qrcode-box .job { |
||||
font-size: 16px; |
||||
font-weight: 400; |
||||
} |
||||
footer .qrcode-box .name { |
||||
font-size: 16px; |
||||
font-weight: 500; |
||||
} |
||||
footer .hr { |
||||
width: 100%; |
||||
height: 1px; |
||||
background: #FFFFFF; |
||||
opacity: 0.2; |
||||
} |
||||
footer .menu { |
||||
padding: 30px 0; |
||||
} |
||||
footer .menu .item { |
||||
border-right: 1px solid #fff; |
||||
padding: 0 40px; |
||||
} |
||||
footer .menu .item :last-child { |
||||
border-right: none; |
||||
} |
||||
footer .copyright { |
||||
padding: 15px 0; |
||||
font-size: 16px; |
||||
color: #fff; |
||||
} |
||||
|
||||
.swiper1 { |
||||
width: 100%; |
||||
height: auto; |
||||
overflow: hidden; |
||||
margin-bottom: 30px; |
||||
} |
||||
.swiper1 img { |
||||
width: 100%; |
||||
} |
||||
|
||||
.swiper2 { |
||||
overflow: hidden; |
||||
width: 100%; |
||||
} |
||||
.swiper2 .swiper-slide { |
||||
padding: 10px; |
||||
background-color: #fff; |
||||
} |
||||
|
||||
.swiper-slide-thumb-active { |
||||
background: rgba(0, 0, 0, 0.5); |
||||
} |
||||
|
||||
.swiper-container { |
||||
padding-bottom: 140px; |
||||
padding-top: 110px; |
||||
} |
||||
|
||||
/*# sourceMappingURL=main.css.map */ |
@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["main.scss"],"names":[],"mappings":"AAAA;EACE;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;;;AAGF;EACE;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;;AAGJ;EAEI;EACA;;AAGA;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;;;AAKR;EACE;EAaE;EACA;EACA;;AAdF;EAEI;EACA;;AAGJ;EACE;EACA;;AAQF;EACE;EACA;;;AAIJ;EAGI;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EAEE;EAEF;;AACA;EACE;;;AAMJ;EACE;;AAEF;EACE;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;;;AAKN;EA+BE;;AA9BA;EACE;EACA;;AACA;EACE;;AACA;EACE;EACA;;AAEF;EACE;EACA;EACA;EAAW;EACX;;AACA;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AASR;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAGA;EACE;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;;AAEF;EACE;;AACA;EACE;EACA;;AACA;EACE;;AAIN;EACE;EACA;EACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EACE;;;AAGJ;EACE;EACA;;AACA;EACE;EACA;;;AAGJ;EACE;;;AAEF;EAEI;EACA","file":"main.css"} |
@ -0,0 +1,286 @@
|
||||
html,body{ |
||||
background-color:#050B20; |
||||
color:#fff; |
||||
} |
||||
header{ |
||||
height: 70px; |
||||
position: fixed; |
||||
top: 0; |
||||
left: 0; |
||||
background-color: transparent; |
||||
z-index: 999; |
||||
} |
||||
.container { |
||||
max-width: 1200px; |
||||
} |
||||
|
||||
.menu-container { |
||||
display: flex; |
||||
padding: 0 80px; |
||||
background-color: transparent !important; |
||||
} |
||||
.content-container{ |
||||
max-width:250px; |
||||
} |
||||
.logo { |
||||
height: 100%; |
||||
|
||||
.img { |
||||
max-height: 70px; |
||||
width: auto; |
||||
} |
||||
} |
||||
|
||||
.banner { |
||||
position: relative; |
||||
height: 100vh; |
||||
padding-left: 0; |
||||
padding-right: 0; |
||||
overflow: hidden; |
||||
.banner-mask{ |
||||
position: absolute; |
||||
z-index: 1; |
||||
left:0; |
||||
top:0; |
||||
width:100%; |
||||
height:100%; |
||||
background: linear-gradient(180deg, rgba(27,83,234,0.3) 0%, #050B20 100%); |
||||
} |
||||
} |
||||
|
||||
.menu { |
||||
display: flex; |
||||
align-items: center; |
||||
} |
||||
|
||||
.menu div { |
||||
color: #fff; |
||||
margin-right: 20px; |
||||
} |
||||
|
||||
.title-container { |
||||
position: relative; |
||||
z-index: 1; |
||||
font-size: 36px; |
||||
font-weight: bold; |
||||
color:#ffffff; |
||||
.subtitle{ |
||||
position: absolute; |
||||
top:-10px; |
||||
opacity: 0.2; |
||||
width:100%; |
||||
} |
||||
.desc{ |
||||
margin-top:18px; |
||||
font-size:14px; |
||||
color:#DBEBFD; |
||||
font-weight: normal; |
||||
opacity: 0.5; |
||||
} |
||||
} |
||||
.card-group{ |
||||
padding:{ |
||||
top:77px; |
||||
bottom:191 - 42px; |
||||
}; |
||||
.card-container{ |
||||
.content-container{ |
||||
width:100%; |
||||
margin-top:20px; |
||||
.title{ |
||||
font-size:18px; |
||||
font-weight: bold; |
||||
color:#fff; |
||||
margin-bottom:14px; |
||||
} |
||||
.desc{ |
||||
color:#fff; |
||||
font-size:14px; |
||||
margin-bottom:42px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
.icon-group{ |
||||
margin-top: 110px; |
||||
.col{ |
||||
padding:{ |
||||
top:60px; |
||||
bottom:60px; |
||||
} |
||||
} |
||||
.title{ |
||||
text-align: center; |
||||
margin-top:26px; |
||||
} |
||||
background:{ |
||||
//image:url('/static/image/ly-back.png'); |
||||
position: center center; |
||||
size: 100% 100%; |
||||
repeat: no-repeat; |
||||
} |
||||
img{ |
||||
width:100px; |
||||
height:100px; |
||||
} |
||||
} |
||||
|
||||
.send-group{ |
||||
background:{ |
||||
//image:url('/static/image/ly-back.png'); |
||||
position: center center; |
||||
size: 100% 100%; |
||||
repeat: no-repeat; |
||||
} |
||||
img{ |
||||
width:60px; |
||||
height:60px; |
||||
} |
||||
.col{ |
||||
padding:243px 0; |
||||
background:{ |
||||
color:rgba(0,0,0,0.5) |
||||
} |
||||
border-right:1px solid rgba(255,255,255,0.2); |
||||
&:last-child{ |
||||
border-right: none; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.client-group{ |
||||
.row{ |
||||
padding:0 126 - 35px; |
||||
} |
||||
.col-3{ |
||||
padding:35px; |
||||
.client-box{ |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
min-height:180px; |
||||
align-content: stretch; |
||||
border:1px solid rgba(255,255,255,0.2); |
||||
} |
||||
img{ |
||||
max-width:300px; |
||||
max-height:80px; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.book-group{ |
||||
.col-2{ |
||||
padding:0 30px 80px 30px; |
||||
overflow: hidden; |
||||
.rotate-box{ |
||||
position: relative; |
||||
.main-img{ |
||||
position: relative; |
||||
z-index: 2; |
||||
} |
||||
.rotate-img{ |
||||
position: absolute; |
||||
top:103%; |
||||
width:100%;height:100%; |
||||
z-index: 1; |
||||
.rotate{ |
||||
opacity: .3; |
||||
transform: rotateX(180deg); |
||||
} |
||||
.rotate-mask{ |
||||
position: absolute; |
||||
z-index: 1; |
||||
width:100%; |
||||
height:80px; |
||||
top:0; |
||||
left:0; |
||||
background: linear-gradient(0deg, #050B20 0%, rgba(5,11,32,0) 100%); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
margin-bottom:145px; |
||||
} |
||||
|
||||
footer{ |
||||
.title{ |
||||
font-size:20px; |
||||
color:#fff; |
||||
font-weight: bold; |
||||
} |
||||
.phone{ |
||||
font-size:32px; |
||||
font-weight: bold; |
||||
margin-bottom:26px; |
||||
} |
||||
.content{ |
||||
font-size:18px; |
||||
margin-top:34px; |
||||
} |
||||
.qrcode-box{ |
||||
&:first-child{ |
||||
padding-right:15px; |
||||
} |
||||
img{ |
||||
max-width:120px; |
||||
width:100%; |
||||
margin-bottom:5px; |
||||
} |
||||
.job{ |
||||
font-size:16px; |
||||
font-weight: 400; |
||||
} |
||||
.name{ |
||||
font-size:16px; |
||||
font-weight: 500; |
||||
} |
||||
} |
||||
.hr{ |
||||
width: 100%; |
||||
height: 1px; |
||||
background: #FFFFFF; |
||||
opacity: 0.2; |
||||
} |
||||
.menu{ |
||||
padding:30px 0; |
||||
.item{ |
||||
border-right:1px solid #fff; |
||||
padding: 0 40px; |
||||
:last-child{ |
||||
border-right: none; |
||||
} |
||||
} |
||||
} |
||||
.copyright{ |
||||
padding:15px 0; |
||||
font-size:16px; |
||||
color:#fff; |
||||
} |
||||
} |
||||
.swiper1 { |
||||
width: 100%; |
||||
height: auto; |
||||
overflow: hidden; |
||||
margin-bottom:30px; |
||||
img{ |
||||
width:100%; |
||||
} |
||||
} |
||||
.swiper2 { |
||||
overflow: hidden; |
||||
width: 100%; |
||||
.swiper-slide{ |
||||
padding:10px; |
||||
background-color:#fff; |
||||
} |
||||
} |
||||
.swiper-slide-thumb-active{ |
||||
background: rgba(0,0,0,.5); |
||||
} |
||||
.swiper-container{ |
||||
padding:{ |
||||
bottom:140px; |
||||
top:110px; |
||||
} |
||||
} |
After Width: | Height: | Size: 116 KiB |
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 115 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 1.4 MiB |
After Width: | Height: | Size: 9.2 MiB |
After Width: | Height: | Size: 137 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 307 KiB |
After Width: | Height: | Size: 339 KiB |
After Width: | Height: | Size: 325 KiB |
After Width: | Height: | Size: 164 KiB |
After Width: | Height: | Size: 338 KiB |
After Width: | Height: | Size: 180 KiB |
After Width: | Height: | Size: 108 KiB |
After Width: | Height: | Size: 348 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 3.4 MiB |
After Width: | Height: | Size: 618 B |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 1.9 MiB |
After Width: | Height: | Size: 202 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 6.6 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 6.6 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,32 @@
|
||||
import {title} from "@/config/host"; |
||||
import { createStore } from 'vuex' |
||||
import log from "@/utils/log"; |
||||
|
||||
const store = createStore({ |
||||
state () { |
||||
return { |
||||
footCheck:'home', |
||||
title:title, |
||||
userInfo:{}, |
||||
userExtends:{}, |
||||
} |
||||
}, |
||||
getters:{ |
||||
|
||||
}, |
||||
mutations: { |
||||
footCheck (state,check) { |
||||
state.footCheck = check |
||||
}, |
||||
title (state,title) { |
||||
state.title = title |
||||
}, |
||||
userInfo (state,userInfo) { |
||||
state.userInfo = userInfo |
||||
}, |
||||
userExtends (state,userExtends) { |
||||
state.userExtends = userExtends |
||||
}, |
||||
} |
||||
}) |
||||
export default store; |
@ -0,0 +1,10 @@
|
||||
uni.addInterceptor({ |
||||
returnValue (res) { |
||||
if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) { |
||||
return res; |
||||
} |
||||
return new Promise((resolve, reject) => { |
||||
res.then((res) => res[0] ? reject(res[0]) : resolve(res[1])); |
||||
}); |
||||
}, |
||||
}); |