Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
schedule
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fengzhaoyu
schedule
Commits
0d173045
Commit
0d173045
authored
Feb 28, 2020
by
fengzhaoyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
样式修改
parent
f9209f50
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
60 additions
and
23 deletions
+60
-23
app.json
app.json
+2
-2
attendingSituation.acss
pages/attendingSituation/attendingSituation.acss
+9
-1
attendingSituation.axml
pages/attendingSituation/attendingSituation.axml
+1
-1
createOrEditSchedule.axml
pages/createOrEditSchedule/createOrEditSchedule.axml
+1
-1
createOrEditSchedule.js
pages/createOrEditSchedule/createOrEditSchedule.js
+6
-0
participantsDetail.acss
pages/participantsDetail/participantsDetail.acss
+2
-2
place.acss
pages/place/place.acss
+5
-4
remind.acss
pages/remind/remind.acss
+3
-3
scheduleDetail.acss
pages/scheduleDetail/scheduleDetail.acss
+10
-1
scheduleDetail.axml
pages/scheduleDetail/scheduleDetail.axml
+6
-2
uploadFile.acss
pages/uploadFile/uploadFile.acss
+14
-5
uploadFile.axml
pages/uploadFile/uploadFile.axml
+1
-1
No files found.
app.json
View file @
0d173045
...
...
@@ -2,14 +2,14 @@
"pages"
:
[
"pages/index/index"
,
"pages/place/place"
,
"pages/createOrEditSchedule/createOrEditSchedule"
,
"pages/uploadFile/uploadFile"
,
"pages/addRemark/addRemark"
,
"pages/createOrEditSchedule/createOrEditSchedule"
,
"pages/meetingRoomList/meetingRoomList"
,
"pages/uploadFile/uploadFile"
,
"pages/repetitionTime/repetitionTime"
,
"pages/repeatMechanism/repeatMechanism"
,
"pages/attendingSituation/attendingSituation"
,
"pages/addRemark/addRemark"
,
"pages/remind/remind"
,
"pages/scheduleDetail/scheduleDetail"
,
"pages/participantsDetail/participantsDetail"
,
...
...
pages/attendingSituation/attendingSituation.acss
View file @
0d173045
...
...
@@ -96,9 +96,16 @@ page {
}
.participatorStaus {
width: 20rpx;
text-align: center;
line-height: 20rpx;
color: #fff;
font-size: 14rpx;
border: 1rpx solid #fff;
height: 20rpx;
border-radius: 50%;
position: absolute;
bottom: 2rpx;
right: -5rpx;
right: -4rpx;
overflow: hidden;
display: inline-block;
}
\ No newline at end of file
pages/attendingSituation/attendingSituation.axml
View file @
0d173045
...
...
@@ -3,7 +3,7 @@
<view class="headImg">
<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: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 class="info">
<text class="name">{{item.participator.username}}</text>
...
...
pages/createOrEditSchedule/createOrEditSchedule.axml
View file @
0d173045
...
...
@@ -3,7 +3,7 @@
<!-- 主题 -->
<view class="container {{!!scheduleItem?(organizer==permissions?'':'noPermissions'):''}}">
<view class="theme">
<input placeholder="添加主题" type="text" onInput="getTitle" value="{{title}}"/>
<input placeholder="添加主题" type="text" onInput="getTitle" value="{{title}}"
focus="{{true}}"
/>
</view>
<view class="permissions" a:if="{{!!scheduleItem?(organizer==permissions?false:true):false}}">
</view>
...
...
pages/createOrEditSchedule/createOrEditSchedule.js
View file @
0d173045
...
...
@@ -153,6 +153,8 @@ create.Page({
week2
:
w2
,
timeStaus
:
''
},
()
=>
{
that
.
store
.
data
.
startTime
=
that
.
data
.
time1
that
.
store
.
data
.
endTime
=
that
.
data
.
time2
that
.
conflict
()
})
}
else
{
...
...
@@ -162,6 +164,8 @@ create.Page({
week1
:
w1
,
timeStaus
:
''
},
()
=>
{
that
.
store
.
data
.
startTime
=
that
.
data
.
time1
that
.
store
.
data
.
endTime
=
that
.
data
.
time2
that
.
conflict
()
})
}
...
...
@@ -181,6 +185,8 @@ create.Page({
week2
:
w1
,
timeStaus
:
''
},
()
=>
{
that
.
store
.
data
.
startTime
=
that
.
data
.
time1
that
.
store
.
data
.
endTime
=
that
.
data
.
time2
that
.
conflict
()
})
}
...
...
pages/participantsDetail/participantsDetail.acss
View file @
0d173045
...
...
@@ -67,11 +67,11 @@ page {
.button view {
width: 335rpx;
height: 9
6
rpx;
height: 9
0
rpx;
border: 1px solid #3296FA;
border-radius: 48px;
text-align: center;
line-height: 9
6
rpx;
line-height: 9
0
rpx;
font-size: 36rpx;
}
...
...
pages/place/place.acss
View file @
0d173045
...
...
@@ -10,20 +10,22 @@ page {
text-align: left;
font-size: 32rpx;
color: rgba(25, 31, 37, 0.40);
vertical-align:
center
;
vertical-align:
top
;
margin-right: 24rpx;
line-height: 1.5;
}
.search {
background: white;
display: flex;
padding:
0
32rpx;
padding:
40rpx
32rpx;
border-bottom: 1rpx solid rgba(25, 31, 37, 0.12);
}
.search input {
font-size: 40rpx !important;
width: 100%;
vertical-align: top;
padding-left: 0;
display: block;
}
...
...
@@ -108,8 +110,7 @@ page {
.customLocation {
margin-top: 13rpx;
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;
}
...
...
pages/remind/remind.acss
View file @
0d173045
...
...
@@ -24,17 +24,17 @@ page {
.confirm {
background: #fff;
width: 682rpx;
padding:
32
rpx 34rpx;
padding:
24
rpx 34rpx;
position: fixed;
bottom: 0;
}
.confirm>view {
width: 100%;
height: 9
6
rpx;
height: 9
0
rpx;
font-size: 36rpx;
text-align: center;
line-height: 9
6
rpx;
line-height: 9
0
rpx;
color: #fff;
background: #3296FA;
border: 1prx solid rgba(25, 31, 37, 0.12);
...
...
pages/scheduleDetail/scheduleDetail.acss
View file @
0d173045
...
...
@@ -189,6 +189,8 @@ page {
}
.dynamicDetail .describe {
text-align: left;
padding: 0;
font-size: 26rpx;
line-height: 37rpx;
margin-top: 8rpx;
...
...
@@ -309,12 +311,19 @@ page {
}
.participatorStaus {
border: 1rpx solid red;
width: 20rpx;
height: 20rpx;
color: #fff;
font-size: 14rpx;
line-height: 20rpx;
text-align: center;
border-radius: 50%;
position: absolute;
bottom: 2rpx;
right: -5rpx;
display: block;
overflow: hidden;
}
.accept {
...
...
@@ -322,7 +331,7 @@ page {
}
.cancel {
background: #
E60012
;
background: #
F25643
;
}
.blank {
...
...
pages/scheduleDetail/scheduleDetail.axml
View file @
0d173045
...
...
@@ -52,7 +52,10 @@
<text>
<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: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">
<text class="number">{{userList.length}}人参与</text>
<text class="iconyoujinru iconfont"></text></view></view>
...
...
@@ -161,6 +164,6 @@
</view>
</view>
<!-- 编辑 删除的时候的弹窗 -->
<view class="model" onTap="hideModel" a:if="{{!!meetingLogId}}">
<view class="model" onTap="hideModel" a:if="{{!!meetingLogId}}">
</view>
</block>
\ No newline at end of file
pages/uploadFile/uploadFile.acss
View file @
0d173045
...
...
@@ -6,7 +6,14 @@ page {
color: #191F25;
padding-bottom: 180rpx;
}
.describe {
padding:32rpx 32rpx 0 32rpx;
}
.textarea {
padding-left: 0!important;
display: block;
}
.fileList {
margin-top: 32rpx;
padding: 0 32rpx;
...
...
@@ -49,25 +56,27 @@ page {
.add {
padding: 0 32rpx;
margin-top: 40rpx;
height: 32rpx;
line-height: 32rpx;
}
.icontianjia1 {
vertical-align: top;
line-height: 3
3
rpx;
line-height: 3
2
rpx;
color: #3296fa;
margin-right: 16rpx;
}
.addText {
margin-top: 10rpx;
line-height: 33rpx;
line-height: 32rpx;
vertical-align: top;
font-size: 28rpx;
color: #3296FA;
}
.save {
padding:
32
rpx 34rpx;
padding:
24
rpx 34rpx;
position: fixed;
bottom: 0;
}
...
...
@@ -75,7 +84,7 @@ page {
.saveButton {
font-size: 36rpx;
width: 686rpx;
line-height: 9
6
rpx;
line-height: 9
0
rpx;
text-align: center;
color: #fff;
background: #3296FA;
...
...
pages/uploadFile/uploadFile.axml
View file @
0d173045
...
...
@@ -4,7 +4,7 @@
</view>
<view class="fileList" a:for="{{upLoadInfo.data}}">
<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 class="fileName">
{{item.fileName}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment