@ -1,13 +0,0 @@ |
|||
Component({ |
|||
properties: { |
|||
newsList: { |
|||
type: Array, |
|||
value: [] |
|||
} |
|||
}, |
|||
methods: { |
|||
navigatetoNewsDetail (e) { |
|||
this.triggerEvent('navigatetoNewsDetail', {id: e.currentTarget.dataset.newsid}) |
|||
} |
|||
} |
|||
}) |
|||
@ -1,3 +0,0 @@ |
|||
{ |
|||
"component": true |
|||
} |
|||
@ -1,24 +0,0 @@ |
|||
<wxs src="../../../../utils/filter.wxs" module="filters"></wxs> |
|||
<view class="news-list"> |
|||
<view |
|||
hover-stay-time="150" |
|||
hover-class="hover-sudoku" |
|||
class="list-item" |
|||
data-newsid="{{item.id}}" |
|||
bindtap="navigatetoNewsDetail" |
|||
wx:for="{{newsList}}" |
|||
wx:for-item="item" |
|||
wx:for-index="index" |
|||
wx:key="index"> |
|||
<view class="left"> |
|||
<image src="{{item.newsImageUrl}}" /> |
|||
</view> |
|||
<view class="right"> |
|||
<view class="title">{{item.newsTitle}}</view> |
|||
<view class="bottom"> |
|||
<view class="category">{{item.deptName}}</view> |
|||
<view class="time">{{filters.formatTimestamp(item.newsStartTime)}}</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
@ -1,71 +0,0 @@ |
|||
.news-list { |
|||
width: 100%; |
|||
background: #fff; |
|||
box-sizing: border-box; |
|||
padding: 0 35rpx; |
|||
margin-top: 20rpx; |
|||
} |
|||
.news-list .list-item { |
|||
width: 100%; |
|||
height: 205rpx; |
|||
box-sizing: border-box; |
|||
padding: 30rpx 0; |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: space-between; |
|||
} |
|||
.news-list .list-item .right { |
|||
width: calc(100% - 50rpx - 220rpx); |
|||
height: 146rpx; |
|||
} |
|||
.news-list .list-item .right .title { |
|||
color: #3f3f3f; |
|||
font-size: 30rpx; |
|||
line-height: 45rpx; |
|||
display: -webkit-box; |
|||
overflow: hidden; |
|||
text-overflow: ellipsis; |
|||
word-wrap: break-word; |
|||
white-space: normal !important; |
|||
-webkit-line-clamp: 2; |
|||
-webkit-box-orient: vertical; |
|||
height:90rpx; |
|||
} |
|||
.news-list .list-item .right .bottom { |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: space-between; |
|||
padding-top: 20rpx; |
|||
} |
|||
.news-list .list-item .right .bottom .category { |
|||
color: #aaa; |
|||
font-size: 22rpx; |
|||
line-height: 48rpx; |
|||
width: calc(100% - 150rpx); |
|||
white-space: nowrap; |
|||
overflow: hidden; |
|||
text-overflow: ellipsis; |
|||
} |
|||
.news-list .list-item .right .bottom .time { |
|||
color: #aaa; |
|||
font-size: 22rpx; |
|||
line-height: 48rpx; |
|||
width: 150rpx; |
|||
text-align: right; |
|||
} |
|||
.news-list .list-item .left { |
|||
width: 250rpx; |
|||
height: 146rpx; |
|||
border-radius: 12rpx; |
|||
overflow: hidden; |
|||
} |
|||
.news-list .list-item .left image { |
|||
width: 100%; |
|||
height:100%; |
|||
} |
|||
.news-list .list-item + .list-item { |
|||
border-top: 1rpx solid #ece9ec; |
|||
} |
|||
.news-list .hover-sudoku { |
|||
background: rgba(0,0,0,0.1); |
|||
} |
|||
@ -1,42 +0,0 @@ |
|||
Component({ |
|||
data: { |
|||
currentIndex: 0, |
|||
autoplay:false, |
|||
bannerInterval:0 |
|||
}, |
|||
properties: { |
|||
bannerList: { |
|||
type: Array, |
|||
value: [] |
|||
} |
|||
}, |
|||
lifetimes: { |
|||
|
|||
}, |
|||
pageLifetimes: { |
|||
show:function(){ |
|||
console.log("show") |
|||
this.setData({ |
|||
autoplay:true, |
|||
bannerInterval:3000 |
|||
}) |
|||
}, |
|||
hide:function(){ |
|||
this.setData({ |
|||
autoplay:false, |
|||
bannerInterval:0 |
|||
}) |
|||
} |
|||
}, |
|||
methods: { |
|||
swiperChange (e) { |
|||
this.setData({ |
|||
currentIndex: e.detail.current |
|||
}) |
|||
}, |
|||
navigatetoBannerDetail (e) { |
|||
const { id, url, newsflag } = e.currentTarget.dataset |
|||
this.triggerEvent('navigatetoBannerDetail', {id, url, newsFlag: newsflag} ) |
|||
} |
|||
} |
|||
}) |
|||
@ -1,3 +0,0 @@ |
|||
{ |
|||
"component": true |
|||
} |
|||
@ -1,28 +0,0 @@ |
|||
<view class="banner"> |
|||
<swiper circular="{{true}}" autoplay="{{autoplay}}" interval="{{bannerInterval}}" current="{{currentIndex}}" bindchange="swiperChange"> |
|||
<swiper-item |
|||
wx:for="{{bannerList}}" |
|||
wx:key="index" |
|||
wx:for-index="index" |
|||
wx:for-item="item"> |
|||
<view |
|||
class="banner-item" |
|||
data-id="{{item.id}}" |
|||
data-url="{{item.url}}" |
|||
data-newsflag="{{item.newsFlag}}" |
|||
bindtap="navigatetoBannerDetail"> |
|||
<image mode="aspectFill" class="banner-img" src="{{item.imgUrl}}" /> |
|||
<view class="banner-content"> |
|||
<view class="title"> |
|||
<view class="title-text">{{item.title}}</view> |
|||
</view> |
|||
<view class="indication"> |
|||
<block wx:for="{{bannerList}}" wx:key="index"> |
|||
<view class="spot{{index == currentIndex? ' active' : ''}}"></view> |
|||
</block> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</swiper-item> |
|||
</swiper> |
|||
</view> |
|||
@ -1,80 +0,0 @@ |
|||
.banner { |
|||
width: 100%; |
|||
height: 320rpx; |
|||
padding: 20rpx 0; |
|||
background: #fff; |
|||
} |
|||
.banner swiper { |
|||
width: 94%; |
|||
height: 320rpx; |
|||
margin:0 auto; |
|||
} |
|||
.banner-item { |
|||
width: 100%; |
|||
height: 320rpx; |
|||
position: relative; |
|||
} |
|||
.banner-item .banner-img { |
|||
position: absolute; |
|||
left: 0; |
|||
top: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
} |
|||
.banner-item .banner-content { |
|||
position: relative; |
|||
width: 100%; |
|||
height: 100%; |
|||
top: 0; |
|||
left: 0; |
|||
z-index: 100; |
|||
display: flex; |
|||
align-items: flex-end; |
|||
} |
|||
.banner-item .banner-content .title { |
|||
width: 100%; |
|||
height: 50rpx; |
|||
background: rgba(0,0,0, 0.4); |
|||
box-sizing: border-box; |
|||
padding: 0 20rpx; |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: space-between; |
|||
} |
|||
.banner-item .banner-content .title .title-text { |
|||
width: 75%; |
|||
height: 50rpx; |
|||
color: #fff; |
|||
font-size: 26rpx; |
|||
line-height: 50rpx; |
|||
overflow: hidden; |
|||
text-overflow: ellipsis; |
|||
white-space: nowrap; |
|||
} |
|||
|
|||
/* 自定义轮播指示点样式 */ |
|||
.indication { |
|||
height: 50rpx; |
|||
display:flex; |
|||
position: absolute; |
|||
bottom: -2rpx; |
|||
right: 20rpx; |
|||
flex-direction:row; |
|||
align-items:center; |
|||
justify-content:center; |
|||
} |
|||
/* 未选中指示点样式 */ |
|||
.spot{ |
|||
width: 15rpx; |
|||
height: 15rpx; |
|||
border-radius: 50%; |
|||
margin-right: 10rpx; |
|||
background-color: #c6c6c8; |
|||
} |
|||
/*选中指示样式 */ |
|||
.spot.active{ |
|||
width: 15rpx; |
|||
height: 15rpx; |
|||
border-radius: 50%; |
|||
background-color: #fff; |
|||
} |
|||
@ -1,28 +0,0 @@ |
|||
Component({ |
|||
properties: { |
|||
sudokuState: { |
|||
type: Object, |
|||
value: { |
|||
consultAvailable: '0', |
|||
appraiseAvailable: '0' |
|||
} |
|||
}, |
|||
policeInfo:{ |
|||
type:Object |
|||
} |
|||
}, |
|||
data:{ |
|||
}, |
|||
methods: { |
|||
joinGroup(e){ |
|||
this.triggerEvent("joinGroup",e); |
|||
}, |
|||
makeCall(e){ |
|||
console.log(e) |
|||
const {phone} = e.target.dataset; |
|||
wx.makePhoneCall({ |
|||
phoneNumber: phone, |
|||
}) |
|||
} |
|||
} |
|||
}) |
|||
@ -1,3 +0,0 @@ |
|||
{ |
|||
"component": true |
|||
} |
|||
@ -1,33 +0,0 @@ |
|||
<wxs src="../../../../utils/filter.wxs" module="filters"></wxs> |
|||
<view class="sudoku"> |
|||
<view class="myPolice"> |
|||
<view class="info-police" wx:for='{{policeInfo.policeList}}' wx:for-item="item" wx:for-index="index" wx:key="index"> |
|||
<image src="{{item.policeAvatar}}" class="group-pic"></image> |
|||
<view class="police-detail"> |
|||
<view class="police-name" style="border-bottom:0.5px solid #E7EEEE;"> |
|||
<image src="../../images/name.png" class="info-img"></image> |
|||
<view>姓名:{{item.policeName}}</view> |
|||
</view> |
|||
<view class="police-name"> |
|||
<image src="../../images/tel.png" class="info-img"></image> |
|||
联系方式:<view data-phone="{{item.policeTel}}" bindtap="makeCall" style="color:blue;text-decoration:underline">{{item.policeTel}}</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<view class="info-group" wx:if='{{policeInfo.policeList.length != 0 && policeInfo.policeList != undefined}}'> |
|||
<image src="{{policeInfo.groupAvatar}}" class="group-pic"></image> |
|||
<view class="group-detail"> |
|||
<view class="group-name">{{policeInfo.groupName}}</view> |
|||
<view class="group-number"><text space="nbsp">共{{policeInfo.numberGroupMember}}人 {{policeInfo.numberGroupPartyMember}}名党员</text></view> |
|||
</view> |
|||
<view class="group-join"> |
|||
<!-- <image src="../../images/property/red-join.png" class="join-button"></image> --> |
|||
<!-- <view class="join-text">加入</view> --> |
|||
<view class="join-button" data-joinStatus="{{policeInfo.groupMemberFlag}}" data-groupName="{{policeInfo.groupName}}" data-state="{{policeInfo.groupState}}" data-groupId="{{policeInfo.groupId}}" bindtap="joinGroup">{{policeInfo.groupMemberFlag=='0'?'加入':policeInfo.groupMemberFlag=='1'?'待审核':'进入'}}</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<view wx:if='{{policeInfo.policeList.length==0 || policeInfo.policeList == undefined}}' class="no-police-data"> |
|||
暂无民警信息~ |
|||
</view> |
|||
</view> |
|||
@ -1,119 +0,0 @@ |
|||
.sudoku { |
|||
background:#fff; |
|||
margin-top: 20rpx; |
|||
} |
|||
.content { |
|||
width: 100%; |
|||
display: grid; |
|||
grid-template-columns: 1fr 1fr 1fr; |
|||
grid-template-rows: 215rpx; |
|||
box-sizing: border-box; |
|||
padding-bottom: 20rpx; |
|||
} |
|||
.item { |
|||
display: flex; |
|||
flex-direction: column; |
|||
justify-content: center; |
|||
align-items: center; |
|||
} |
|||
.item image { |
|||
width:126rpx; |
|||
height:126rpx; |
|||
} |
|||
.item .name { |
|||
font-size: 28rpx; |
|||
color: #3f3f3f; |
|||
} |
|||
.sudoku .hover-sudoku { |
|||
background: rgba(0,0,0,0.1); |
|||
} |
|||
.info-group{ |
|||
width: 94%; |
|||
margin-left: 20rpx; |
|||
display: flex; |
|||
line-height: 100rpx; |
|||
padding-top: 20rpx; |
|||
} |
|||
.group-pic{ |
|||
width: 120rpx; |
|||
height: 120rpx; |
|||
border-radius: 60px; |
|||
padding: 20rpx; |
|||
} |
|||
.group-detail{ |
|||
width: 50%; |
|||
display: inline-block; |
|||
padding-left: 40rpx; |
|||
height: 120rpx; |
|||
} |
|||
.group-name{ |
|||
font-size: 30rpx; |
|||
font-weight: bold; |
|||
height: 75rpx; |
|||
word-break: break-all; |
|||
line-height: 50rpx; |
|||
} |
|||
.group-number{ |
|||
font-size: 25rpx; |
|||
color: #999; |
|||
height: 30rpx; |
|||
} |
|||
.group-join{ |
|||
display: inline-block; |
|||
margin:0 auto; |
|||
} |
|||
.join-button{ |
|||
height: 55rpx; |
|||
width: 110rpx; |
|||
border-radius: 60rpx; |
|||
background: #F82424; |
|||
color: white; |
|||
font-size: 30rpx; |
|||
text-align: center; |
|||
line-height: 50rpx; |
|||
margin-top: 50rpx; |
|||
} |
|||
.join-text{ |
|||
font-size: 30rpx; |
|||
position: relative; |
|||
color: #fff; |
|||
margin-top: -120rpx; |
|||
margin-left: 20rpx; |
|||
} |
|||
.info-police{ |
|||
width: 94%; |
|||
margin-left: 20rpx; |
|||
display: flex; |
|||
line-height: 100rpx; |
|||
padding-top: 20rpx; |
|||
} |
|||
.group-pic{ |
|||
width: 120rpx; |
|||
height: 120rpx; |
|||
border-radius: 60px; |
|||
padding: 20rpx; |
|||
} |
|||
.police-detail{ |
|||
display: grid; |
|||
padding-left: 40rpx; |
|||
height: 120rpx; |
|||
width: 70%; |
|||
} |
|||
.police-name{ |
|||
font-size: 30rpx; |
|||
height: 75rpx; |
|||
word-break: break-all; |
|||
line-height: 75rpx; |
|||
display: inline-flex; |
|||
} |
|||
.no-police-data{ |
|||
text-align: center; |
|||
height: 400rpx; |
|||
line-height: 400rpx; |
|||
} |
|||
.info-img{ |
|||
height: 45rpx; |
|||
width: 45rpx; |
|||
padding-top: 15rpx; |
|||
display: inline-block; |
|||
} |
|||
@ -1,13 +0,0 @@ |
|||
Component({ |
|||
properties: { |
|||
newsList: { |
|||
type: Array, |
|||
value: [] |
|||
} |
|||
}, |
|||
methods: { |
|||
navigatetoNewsDetail (e) { |
|||
this.triggerEvent('navigatetoNewsDetail', {id: e.currentTarget.dataset.newsid}) |
|||
} |
|||
} |
|||
}) |
|||
@ -1,3 +0,0 @@ |
|||
{ |
|||
"component": true |
|||
} |
|||
@ -1,24 +0,0 @@ |
|||
<wxs src="../../../../utils/filter.wxs" module="filters"></wxs> |
|||
<view class="news-list"> |
|||
<view |
|||
hover-stay-time="150" |
|||
hover-class="hover-sudoku" |
|||
class="list-item" |
|||
data-newsid="{{item.id}}" |
|||
bindtap="navigatetoNewsDetail" |
|||
wx:for="{{newsList}}" |
|||
wx:for-item="item" |
|||
wx:for-index="index" |
|||
wx:key="index"> |
|||
<view class="left"> |
|||
<image src="{{item.newsImageUrl}}" /> |
|||
</view> |
|||
<view class="right"> |
|||
<view class="title">{{item.newsTitle}}</view> |
|||
<view class="bottom"> |
|||
<view class="category">{{item.deptName}}</view> |
|||
<view class="time">{{filters.formatTimestamp(item.newsStartTime)}}</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
@ -1,71 +0,0 @@ |
|||
.news-list { |
|||
width: 100%; |
|||
background: #fff; |
|||
box-sizing: border-box; |
|||
padding: 0 35rpx; |
|||
margin-top: 20rpx; |
|||
} |
|||
.news-list .list-item { |
|||
width: 100%; |
|||
height: 205rpx; |
|||
box-sizing: border-box; |
|||
padding: 30rpx 0; |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: space-between; |
|||
} |
|||
.news-list .list-item .right { |
|||
width: calc(100% - 50rpx - 220rpx); |
|||
height: 146rpx; |
|||
} |
|||
.news-list .list-item .right .title { |
|||
color: #3f3f3f; |
|||
font-size: 30rpx; |
|||
line-height: 45rpx; |
|||
display: -webkit-box; |
|||
overflow: hidden; |
|||
text-overflow: ellipsis; |
|||
word-wrap: break-word; |
|||
white-space: normal !important; |
|||
-webkit-line-clamp: 2; |
|||
-webkit-box-orient: vertical; |
|||
height: 90rpx; |
|||
} |
|||
.news-list .list-item .right .bottom { |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: space-between; |
|||
padding-top: 20rpx; |
|||
} |
|||
.news-list .list-item .right .bottom .category { |
|||
color: #aaa; |
|||
font-size: 22rpx; |
|||
line-height: 48rpx; |
|||
width: calc(100% - 150rpx); |
|||
white-space: nowrap; |
|||
overflow: hidden; |
|||
text-overflow: ellipsis; |
|||
} |
|||
.news-list .list-item .right .bottom .time { |
|||
color: #aaa; |
|||
font-size: 22rpx; |
|||
line-height: 48rpx; |
|||
width: 150rpx; |
|||
text-align: right; |
|||
} |
|||
.news-list .list-item .left { |
|||
width: 250rpx; |
|||
height: 146rpx; |
|||
border-radius: 12rpx; |
|||
overflow: hidden; |
|||
} |
|||
.news-list .list-item .left image { |
|||
width: 100%; |
|||
height:100%; |
|||
} |
|||
.news-list .list-item + .list-item { |
|||
border-top: 1rpx solid #ece9ec; |
|||
} |
|||
.news-list .hover-sudoku { |
|||
background: rgba(0,0,0,0.1); |
|||
} |
|||
@ -1,24 +0,0 @@ |
|||
Component({ |
|||
properties: { |
|||
sudokuState: { |
|||
type: Object, |
|||
value: { |
|||
consultAvailable: '0', |
|||
appraiseAvailable: '0' |
|||
} |
|||
}, |
|||
}, |
|||
data:{ |
|||
}, |
|||
methods: { |
|||
showMyPolice(){ |
|||
this.triggerEvent('showMyPolice') |
|||
}, |
|||
showPrecaution(){ |
|||
this.triggerEvent('showPrecaution') |
|||
}, |
|||
showAnnouncement(){ |
|||
this.triggerEvent('showAnnouncement') |
|||
} |
|||
} |
|||
}) |
|||
@ -1,3 +0,0 @@ |
|||
{ |
|||
"component": true |
|||
} |
|||
@ -1,14 +0,0 @@ |
|||
<wxs src="../../../../utils/filter.wxs" module="filters"></wxs> |
|||
<view class="sudoku"> |
|||
<view class="content"> |
|||
<view class="item" hover-stay-time="150" bindtap="showMyPolice"> |
|||
<image src="../../images/minjing.png" /> |
|||
</view> |
|||
<view class="item" hover-stay-time="150" bindtap="showPrecaution"> |
|||
<image src="../../images/pingan.png" /> |
|||
</view> |
|||
<view class="item" hover-stay-time="150" bindtap="showAnnouncement"> |
|||
<image src="../../images/tongbao.png" /> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
@ -1,111 +0,0 @@ |
|||
.sudoku { |
|||
background:#fff; |
|||
padding: 0 10rpx; |
|||
margin-top: 20rpx; |
|||
} |
|||
.content { |
|||
width: 100%; |
|||
display: grid; |
|||
grid-template-columns: 1fr 1fr 1fr; |
|||
grid-template-rows: 215rpx; |
|||
box-sizing: border-box; |
|||
} |
|||
.item { |
|||
display: flex; |
|||
flex-direction: column; |
|||
justify-content: center; |
|||
align-items: center; |
|||
} |
|||
.item image { |
|||
width:220rpx; |
|||
height:130rpx; |
|||
} |
|||
.item .name { |
|||
font-size: 28rpx; |
|||
color: #3f3f3f; |
|||
} |
|||
.sudoku .hover-sudoku { |
|||
background: rgba(0,0,0,0.1); |
|||
} |
|||
.info-group{ |
|||
width: 94%; |
|||
margin-left: 20rpx; |
|||
display: flex; |
|||
line-height: 100rpx; |
|||
padding-top: 20rpx; |
|||
} |
|||
.group-pic{ |
|||
width: 120rpx; |
|||
height: 120rpx; |
|||
border-radius: 60px; |
|||
padding: 20rpx; |
|||
} |
|||
.group-detail{ |
|||
width: 50%; |
|||
display: inline-block; |
|||
padding-left: 40rpx; |
|||
height: 120rpx; |
|||
} |
|||
.group-name{ |
|||
font-size: 30rpx; |
|||
font-weight: bold; |
|||
height: 75rpx; |
|||
word-break: break-all; |
|||
line-height: 50rpx; |
|||
} |
|||
.group-number{ |
|||
font-size: 25rpx; |
|||
color: #999; |
|||
height: 30rpx; |
|||
} |
|||
.group-join{ |
|||
display: inline-block; |
|||
margin:0 auto; |
|||
} |
|||
.join-button{ |
|||
height: 55rpx; |
|||
width: 110rpx; |
|||
border-radius: 60rpx; |
|||
background: #F82424; |
|||
color: white; |
|||
font-size: 30rpx; |
|||
text-align: center; |
|||
line-height: 50rpx; |
|||
margin-top: 50rpx; |
|||
} |
|||
.join-text{ |
|||
font-size: 30rpx; |
|||
position: relative; |
|||
color: #fff; |
|||
margin-top: -120rpx; |
|||
margin-left: 20rpx; |
|||
} |
|||
.info-police{ |
|||
width: 94%; |
|||
margin-left: 20rpx; |
|||
display: flex; |
|||
line-height: 100rpx; |
|||
padding-top: 20rpx; |
|||
} |
|||
.group-pic{ |
|||
width: 120rpx; |
|||
height: 120rpx; |
|||
border-radius: 60px; |
|||
padding: 20rpx; |
|||
} |
|||
.police-detail{ |
|||
width: 50%; |
|||
display: inline-block; |
|||
padding-left: 40rpx; |
|||
height: 120rpx; |
|||
} |
|||
.police-name{ |
|||
font-size: 30rpx; |
|||
height: 75rpx; |
|||
word-break: break-all; |
|||
line-height: 50rpx; |
|||
} |
|||
.no-police-data{ |
|||
margin-top: 200rpx; |
|||
text-align: center; |
|||
} |
|||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 8.2 KiB |
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 48 KiB |