Commit 0d173045 by fengzhaoyu

样式修改

parent f9209f50
...@@ -2,14 +2,14 @@ ...@@ -2,14 +2,14 @@
"pages": [ "pages": [
"pages/index/index", "pages/index/index",
"pages/place/place", "pages/place/place",
"pages/createOrEditSchedule/createOrEditSchedule",
"pages/uploadFile/uploadFile", "pages/uploadFile/uploadFile",
"pages/addRemark/addRemark",
"pages/createOrEditSchedule/createOrEditSchedule",
"pages/meetingRoomList/meetingRoomList", "pages/meetingRoomList/meetingRoomList",
"pages/uploadFile/uploadFile", "pages/uploadFile/uploadFile",
"pages/repetitionTime/repetitionTime", "pages/repetitionTime/repetitionTime",
"pages/repeatMechanism/repeatMechanism", "pages/repeatMechanism/repeatMechanism",
"pages/attendingSituation/attendingSituation", "pages/attendingSituation/attendingSituation",
"pages/addRemark/addRemark",
"pages/remind/remind", "pages/remind/remind",
"pages/scheduleDetail/scheduleDetail", "pages/scheduleDetail/scheduleDetail",
"pages/participantsDetail/participantsDetail", "pages/participantsDetail/participantsDetail",
......
...@@ -96,9 +96,16 @@ page { ...@@ -96,9 +96,16 @@ page {
} }
.participatorStaus { .participatorStaus {
width: 20rpx; width: 20rpx;
text-align: center;
line-height: 20rpx;
color: #fff;
font-size: 14rpx;
border: 1rpx solid #fff;
height: 20rpx; height: 20rpx;
border-radius: 50%; border-radius: 50%;
position: absolute; position: absolute;
bottom: 2rpx; bottom: 2rpx;
right: -5rpx; right: -4rpx;
overflow: hidden;
display: inline-block;
} }
\ No newline at end of file
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<view class="headImg"> <view class="headImg">
<image mode="scaleToFill" src="{{item.participator.headUrl}}" a:if="{{item.participator.headUrl.length}}"/> <image mode="scaleToFill" src="{{item.participator.headUrl}}" a:if="{{item.participator.headUrl.length}}"/>
<text a:else>{{item.participator.username.substring(0,1)}}</text> <text a:else>{{item.participator.username.substring(0,1)}}</text>
<text a:if="{{item.confirmAttendance!=null}}" class="participatorStaus {{item.confirmAttendance==1 || item.participator.userId == organizer?'accept':'cancel'}} " ></text> <text a:if="{{item.confirmAttendance!=null || item.participator.userId == organizer }}" class="participatorStaus iconfont {{item.confirmAttendance==1 || item.participator.userId == organizer?'accept iconduigou':'cancel iconhengxian'}} "></text>
</view> </view>
<view class="info"> <view class="info">
<text class="name">{{item.participator.username}}</text> <text class="name">{{item.participator.username}}</text>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<!-- 主题 --> <!-- 主题 -->
<view class="container {{!!scheduleItem?(organizer==permissions?'':'noPermissions'):''}}"> <view class="container {{!!scheduleItem?(organizer==permissions?'':'noPermissions'):''}}">
<view class="theme"> <view class="theme">
<input placeholder="添加主题" type="text" onInput="getTitle" value="{{title}}"/> <input placeholder="添加主题" type="text" onInput="getTitle" value="{{title}}" focus="{{true}}"/>
</view> </view>
<view class="permissions" a:if="{{!!scheduleItem?(organizer==permissions?false:true):false}}"> <view class="permissions" a:if="{{!!scheduleItem?(organizer==permissions?false:true):false}}">
</view> </view>
......
...@@ -153,6 +153,8 @@ create.Page({ ...@@ -153,6 +153,8 @@ create.Page({
week2: w2, week2: w2,
timeStaus: '' timeStaus: ''
}, () => { }, () => {
that.store.data.startTime = that.data.time1
that.store.data.endTime = that.data.time2
that.conflict() that.conflict()
}) })
} else { } else {
...@@ -162,6 +164,8 @@ create.Page({ ...@@ -162,6 +164,8 @@ create.Page({
week1: w1, week1: w1,
timeStaus: '' timeStaus: ''
}, () => { }, () => {
that.store.data.startTime = that.data.time1
that.store.data.endTime = that.data.time2
that.conflict() that.conflict()
}) })
} }
...@@ -181,6 +185,8 @@ create.Page({ ...@@ -181,6 +185,8 @@ create.Page({
week2: w1, week2: w1,
timeStaus: '' timeStaus: ''
}, () => { }, () => {
that.store.data.startTime = that.data.time1
that.store.data.endTime = that.data.time2
that.conflict() that.conflict()
}) })
} }
......
...@@ -67,11 +67,11 @@ page { ...@@ -67,11 +67,11 @@ page {
.button view { .button view {
width: 335rpx; width: 335rpx;
height: 96rpx; height: 90rpx;
border: 1px solid #3296FA; border: 1px solid #3296FA;
border-radius: 48px; border-radius: 48px;
text-align: center; text-align: center;
line-height: 96rpx; line-height: 90rpx;
font-size: 36rpx; font-size: 36rpx;
} }
......
...@@ -10,20 +10,22 @@ page { ...@@ -10,20 +10,22 @@ page {
text-align: left; text-align: left;
font-size: 32rpx; font-size: 32rpx;
color: rgba(25, 31, 37, 0.40); color: rgba(25, 31, 37, 0.40);
vertical-align: center; vertical-align: top;
margin-right: 24rpx; margin-right: 24rpx;
line-height: 1.5;
} }
.search { .search {
background: white; background: white;
display: flex; display: flex;
padding: 0 32rpx; padding: 40rpx 32rpx;
border-bottom: 1rpx solid rgba(25, 31, 37, 0.12); border-bottom: 1rpx solid rgba(25, 31, 37, 0.12);
} }
.search input { .search input {
font-size: 40rpx !important; font-size: 40rpx !important;
width: 100%; width: 100%;
vertical-align: top;
padding-left: 0; padding-left: 0;
display: block; display: block;
} }
...@@ -109,7 +111,6 @@ page { ...@@ -109,7 +111,6 @@ page {
margin-top: 13rpx; margin-top: 13rpx;
background: white; background: white;
border-bottom: 1rpx solid rgba(25, 31, 37, 0.12); border-bottom: 1rpx solid rgba(25, 31, 37, 0.12);
padding: 25rpx 32rpx; padding: 25rpx 32rpx;
} }
......
...@@ -24,17 +24,17 @@ page { ...@@ -24,17 +24,17 @@ page {
.confirm { .confirm {
background: #fff; background: #fff;
width: 682rpx; width: 682rpx;
padding: 32rpx 34rpx; padding: 24rpx 34rpx;
position: fixed; position: fixed;
bottom: 0; bottom: 0;
} }
.confirm>view { .confirm>view {
width: 100%; width: 100%;
height: 96rpx; height: 90rpx;
font-size: 36rpx; font-size: 36rpx;
text-align: center; text-align: center;
line-height: 96rpx; line-height: 90rpx;
color: #fff; color: #fff;
background: #3296FA; background: #3296FA;
border: 1prx solid rgba(25, 31, 37, 0.12); border: 1prx solid rgba(25, 31, 37, 0.12);
......
...@@ -189,6 +189,8 @@ page { ...@@ -189,6 +189,8 @@ page {
} }
.dynamicDetail .describe { .dynamicDetail .describe {
text-align: left;
padding: 0;
font-size: 26rpx; font-size: 26rpx;
line-height: 37rpx; line-height: 37rpx;
margin-top: 8rpx; margin-top: 8rpx;
...@@ -309,12 +311,19 @@ page { ...@@ -309,12 +311,19 @@ page {
} }
.participatorStaus { .participatorStaus {
border: 1rpx solid red;
width: 20rpx; width: 20rpx;
height: 20rpx; height: 20rpx;
color: #fff;
font-size: 14rpx;
line-height: 20rpx;
text-align: center;
border-radius: 50%; border-radius: 50%;
position: absolute; position: absolute;
bottom: 2rpx; bottom: 2rpx;
right: -5rpx; right: -5rpx;
display: block;
overflow: hidden;
} }
.accept { .accept {
...@@ -322,7 +331,7 @@ page { ...@@ -322,7 +331,7 @@ page {
} }
.cancel { .cancel {
background: #E60012; background: #F25643;
} }
.blank { .blank {
......
...@@ -52,7 +52,10 @@ ...@@ -52,7 +52,10 @@
<text> <text>
<image a:if="{{!!item.participator.headUrl}}" mode="scaleToFill" src="{{item.participator.headUrl}}"/> <image a:if="{{!!item.participator.headUrl}}" mode="scaleToFill" src="{{item.participator.headUrl}}"/>
<text a:else class="name">{{item.participator.username.substring(item.participator.username.length - 2, item.participator.username.length)}}</text> <text a:else class="name">{{item.participator.username.substring(item.participator.username.length - 2, item.participator.username.length)}}</text>
<text a:if="{{item.confirmAttendance!=null}}"class="participatorStaus {{item.confirmAttendance==1 || item.participator.userId == organizer?'accept':'cancel'}} "></text></text></text></view> <text a:if="{{item.confirmAttendance!=null || item.participator.userId == organizer }}" class="participatorStaus iconfont {{item.confirmAttendance==1 || item.participator.userId == organizer?'accept iconduigou':'cancel iconhengxian'}} "></text>
</text>
</text>
</view>
<view class="right"> <view class="right">
<text class="number">{{userList.length}}人参与</text> <text class="number">{{userList.length}}人参与</text>
<text class="iconyoujinru iconfont"></text></view></view> <text class="iconyoujinru iconfont"></text></view></view>
......
...@@ -6,7 +6,14 @@ page { ...@@ -6,7 +6,14 @@ page {
color: #191F25; color: #191F25;
padding-bottom: 180rpx; padding-bottom: 180rpx;
} }
.describe {
padding:32rpx 32rpx 0 32rpx;
}
.textarea {
padding-left: 0!important;
display: block;
}
.fileList { .fileList {
margin-top: 32rpx; margin-top: 32rpx;
padding: 0 32rpx; padding: 0 32rpx;
...@@ -49,25 +56,27 @@ page { ...@@ -49,25 +56,27 @@ page {
.add { .add {
padding: 0 32rpx; padding: 0 32rpx;
margin-top: 40rpx; margin-top: 40rpx;
height: 32rpx;
line-height: 32rpx;
} }
.icontianjia1 { .icontianjia1 {
vertical-align: top; vertical-align: top;
line-height: 33rpx; line-height: 32rpx;
color: #3296fa; color: #3296fa;
margin-right: 16rpx; margin-right: 16rpx;
} }
.addText { .addText {
margin-top: 10rpx; line-height: 32rpx;
line-height: 33rpx;
vertical-align: top; vertical-align: top;
font-size: 28rpx; font-size: 28rpx;
color: #3296FA; color: #3296FA;
} }
.save { .save {
padding: 32rpx 34rpx; padding: 24rpx 34rpx;
position: fixed; position: fixed;
bottom: 0; bottom: 0;
} }
...@@ -75,7 +84,7 @@ page { ...@@ -75,7 +84,7 @@ page {
.saveButton { .saveButton {
font-size: 36rpx; font-size: 36rpx;
width: 686rpx; width: 686rpx;
line-height: 96rpx; line-height: 90rpx;
text-align: center; text-align: center;
color: #fff; color: #fff;
background: #3296FA; background: #3296FA;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
</view> </view>
<view class="fileList" a:for="{{upLoadInfo.data}}"> <view class="fileList" a:for="{{upLoadInfo.data}}">
<view class="file"> <view class="file">
<view class="fileimage {{item.fileType==('png' || 'jpg' || 'svg' || 'jpeg' || 'JPG') ?'image': item.fileType}}"> <view class="fileimage {{item.fileType==('png' || 'PNG'|| 'jpg' || 'svg' || 'jpeg' || 'JPG') ?'image': item.fileType}}">
</view> </view>
<view class="fileName"> <view class="fileName">
{{item.fileName}} {{item.fileName}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment