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
3a576696
Commit
3a576696
authored
Mar 07, 2020
by
fengzhaoyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
样式修改
parent
1517b4e4
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
7 deletions
+20
-7
selectArea.acss
components/selectArea/selectArea.acss
+0
-1
createOrEditSchedule.acss
pages/createOrEditSchedule/createOrEditSchedule.acss
+7
-0
createOrEditSchedule.axml
pages/createOrEditSchedule/createOrEditSchedule.axml
+1
-1
index.axml
pages/index/index.axml
+1
-1
place.acss
pages/place/place.acss
+5
-0
scheduleDetail.acss
pages/scheduleDetail/scheduleDetail.acss
+4
-1
uploadFile.js
pages/uploadFile/uploadFile.js
+2
-3
No files found.
components/selectArea/selectArea.acss
View file @
3a576696
...
@@ -53,7 +53,6 @@
...
@@ -53,7 +53,6 @@
}
}
.treeLi {
.treeLi {
display: block;
display: block;
height: 70rpx;
font-size: 28rpx;
font-size: 28rpx;
line-height: 70rpx;
line-height: 70rpx;
}
}
...
...
pages/createOrEditSchedule/createOrEditSchedule.acss
View file @
3a576696
...
@@ -484,3 +484,9 @@ page {
...
@@ -484,3 +484,9 @@ page {
margin-top: 16rpx;
margin-top: 16rpx;
border-radius: 26rpx;
border-radius: 26rpx;
}
}
.placeName {
height: 100%;
width: 600rpx;
overflow-x: scroll;
white-space: nowrap;
}
\ No newline at end of file
pages/createOrEditSchedule/createOrEditSchedule.axml
View file @
3a576696
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
</view>
</view>
<view class="text" data-nextPage="place" onTap="nextPage">
<view class="text" data-nextPage="place" onTap="nextPage">
<view class="selectPlace" a:if="{{!!locationName}}">
<view class="selectPlace" a:if="{{!!locationName}}">
<text>{{locationName}}</text>
<text
class="placeName"
>{{locationName}}</text>
<text class="iconshanchu-1 iconfont" a:if="{{!!scheduleItem?(organizer==permissions?true:false):true}}" data-icon="icondingwei" catchTap="closeEditList"></text>
<text class="iconshanchu-1 iconfont" a:if="{{!!scheduleItem?(organizer==permissions?true:false):true}}" data-icon="icondingwei" catchTap="closeEditList"></text>
</view>
</view>
<text a:else>
<text a:else>
...
...
pages/index/index.axml
View file @
3a576696
<!--<mw-select></mw-select> -->
<!--<mw-select></mw-select> -->
版本号:14
2 调试版本版
版本号:14
3 版本
<view class="index">
<view class="index">
<view a:if="{{startPageOnLoad&&startPageOnShow}}">
<view a:if="{{startPageOnLoad&&startPageOnShow}}">
<scroll-view a:if="{{todayStr !== ''}}" scroll-y="{{true}}" upper-threshold="50" lower-threshold="50" onScrollToLower="lower" onScroll="onScroll" style="height: 100vh;" scroll-into-view="{{todayStr}}">
<scroll-view a:if="{{todayStr !== ''}}" scroll-y="{{true}}" upper-threshold="50" lower-threshold="50" onScrollToLower="lower" onScroll="onScroll" style="height: 100vh;" scroll-into-view="{{todayStr}}">
...
...
pages/place/place.acss
View file @
3a576696
...
@@ -64,6 +64,7 @@ page {
...
@@ -64,6 +64,7 @@ page {
.mettingRoomRight {
.mettingRoomRight {
width: 100%;
width: 100%;
overflow: hidden;
border-bottom: 1rpx solid rgba(25, 31, 37, 0.12)
border-bottom: 1rpx solid rgba(25, 31, 37, 0.12)
}
}
...
@@ -72,6 +73,9 @@ page {
...
@@ -72,6 +73,9 @@ page {
font-size: 34rpx;
font-size: 34rpx;
color: #191F25;
color: #191F25;
line-height: 34rpx;
line-height: 34rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.numIcon {
.numIcon {
...
@@ -133,6 +137,7 @@ page {
...
@@ -133,6 +137,7 @@ page {
font-size: 24rpx;
font-size: 24rpx;
color: rgba(25, 31, 37, 0.28);
color: rgba(25, 31, 37, 0.28);
}
}
.iconshebei {
.iconshebei {
margin-top: 3rpx;
margin-top: 3rpx;
vertical-align: middle;
vertical-align: middle;
...
...
pages/scheduleDetail/scheduleDetail.acss
View file @
3a576696
...
@@ -410,7 +410,6 @@ page {
...
@@ -410,7 +410,6 @@ page {
width: 100%;
width: 100%;
background: rgba(25, 31, 37, 0.12);
background: rgba(25, 31, 37, 0.12);
border-radius: 6rpx;
border-radius: 6rpx;
}
}
.line {
.line {
...
@@ -494,4 +493,7 @@ page {
...
@@ -494,4 +493,7 @@ page {
.del {
.del {
text-decoration: line-through;
text-decoration: line-through;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
\ No newline at end of file
pages/uploadFile/uploadFile.js
View file @
3a576696
...
@@ -86,8 +86,7 @@ create.Page({
...
@@ -86,8 +86,7 @@ create.Page({
}
}
},
},
// 保存的接口
// 保存的接口
// saveUpload ()
saveUpload
:
throttle
(
function
(
id
)
{
saveUpload
(
id
)
{
let
data
=
{
let
data
=
{
scheduleId
:
id
,
scheduleId
:
id
,
uploader
:
getApp
().
globalData
.
userid
,
uploader
:
getApp
().
globalData
.
userid
,
...
@@ -105,5 +104,5 @@ create.Page({
...
@@ -105,5 +104,5 @@ create.Page({
delta
:
1
delta
:
1
})
})
})
})
}
}
,
1000
)
});
});
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