1
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 616 B |
Before Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 288 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 116 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 90 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 1.5 KiB |
@ -1,3 +1,4 @@
|
||||
{
|
||||
"navigationBarTitleText": "中电郑州数据创新中心"
|
||||
"navigationBarTitleText": "中电郑州数据创新中心",
|
||||
"navigationStyle": "custom"
|
||||
}
|
@ -1,22 +1,33 @@
|
||||
<view class="page">
|
||||
<view class="containerView public">
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- 园区 -->
|
||||
<view bindtap="navparkList" class="topList">
|
||||
<text style="font-size: 28rpx;">当前园区:{{parkName? parkName:'请先选择园区'}}</text>
|
||||
<text style="color: #939393;font-size: 36rpx;"> > </text>
|
||||
</view>
|
||||
|
||||
<image class="logoImg" src="{{IMG_NAME + '/profile/static/index/logo.png'}}" mode="aspectFill"></image>
|
||||
<!-- 轮播图 -->
|
||||
<swiper class='swiper-box' indicator-dots autoplay interval="3000" duration="1000" circular='true'>
|
||||
<swiper-item wx:for="{{bannerList}}" wx:key="index">
|
||||
<image class="img" src="{{IMG_NAME + item.bg}}" mode="aspectFill"></image>
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
<view class="topHead">
|
||||
<image class="scanImg" src="{{IMG_NAME + '/profile/static/index/scan.png'}}" mode="aspectFill"></image>
|
||||
<view class="title">中电郑州数据创新中心</view>
|
||||
</view>
|
||||
|
||||
<view class="loopView">
|
||||
<image class="logoImg" src="{{IMG_NAME + '/profile/static/index/logo.png'}}" mode="aspectFill"></image>
|
||||
<!-- 轮播图 -->
|
||||
<swiper class='swiper-box' indicator-dots autoplay interval="3000" duration="1000" circular='true'>
|
||||
<swiper-item wx:for="{{bannerList}}" wx:key="index">
|
||||
<image class="img" src="{{IMG_NAME + item.bg}}" mode="aspectFill"></image>
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
</view>
|
||||
|
||||
|
||||
<!-- 菜单模块 -->
|
||||
<view class="itemTitleView">
|
||||
<view class="title">我的应用</view>
|
||||
<image class="img" src="{{IMG_NAME + '/profile/static/index/scan.png'}}" mode="aspectFill"></image>
|
||||
</view>
|
||||
<view class="fixed">
|
||||
<view class="fixedbox" wx:for='{{menuList}}' wx:key='index' data-path="{{item.path}}" data-name="{{item.name}}" bindtap="navapply">
|
||||
|
@ -1,6 +1,28 @@
|
||||
@import "../../app.wxss";
|
||||
@import "../../tabBar.wxss";
|
||||
|
||||
|
||||
.topHead {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
margin: 110rpx 22rpx 50rpx;
|
||||
}
|
||||
|
||||
.topHead .scanImg {
|
||||
width: 42rpx;
|
||||
height: 42rpx;
|
||||
position: absolute;
|
||||
left: 10rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.topHead .title{
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
|
||||
.topList {
|
||||
display: none;
|
||||
width: 100%;
|
||||
@ -53,10 +75,7 @@
|
||||
color: #141414;
|
||||
}
|
||||
|
||||
.itemTitleView .img {
|
||||
width: 36rpx;
|
||||
height: 36rpx;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.fixed {
|
||||
@ -103,6 +122,10 @@
|
||||
filter: gray;
|
||||
}
|
||||
|
||||
.loopView {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.swiper-box {
|
||||
box-sizing: border-box;
|
||||
border-radius: 14rpx;
|
||||
@ -112,9 +135,9 @@
|
||||
}
|
||||
|
||||
.logoImg {
|
||||
position: fixed;
|
||||
left: 40rpx;
|
||||
top: 40rpx;
|
||||
position: absolute;
|
||||
left: 50rpx;
|
||||
top: 30rpx;
|
||||
width: 163rpx;
|
||||
height: 42rpx;
|
||||
z-index: 999;
|
||||
|