Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wx-program
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
陈玉桐
wx-program
Commits
5d380456
Commit
5d380456
authored
Oct 15, 2019
by
陈玉桐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
44976d49
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
36 additions
and
12 deletions
+36
-12
app.json
app.json
+7
-7
power.png
assets/power.png
+0
-0
eyesight.js
pages/eyesight/eyesight.js
+1
-0
historyDetail.wxss
pages/historyDetail/historyDetail.wxss
+1
-0
index.wxss
pages/index/index.wxss
+3
-3
plan.wxss
pages/plan/plan.wxss
+3
-0
setting.wxss
pages/setting/setting.wxss
+3
-0
starSort.wxss
pages/starSort/starSort.wxss
+3
-0
trainReport.wxml
pages/trainReport/trainReport.wxml
+1
-1
trainReport.wxss
pages/trainReport/trainReport.wxss
+8
-1
trainSort.wxss
pages/trainSort/trainSort.wxss
+3
-0
updatePlan.wxss
pages/updatePlan/updatePlan.wxss
+3
-0
No files found.
app.json
View file @
5d380456
{
{
"pages"
:
[
"pages"
:
[
"pages/index/index"
,
"pages/index/index"
,
"pages/childInfo/childInfo"
,
"pages/eyesight/eyesight"
,
"pages/setting/setting"
,
"pages/historyDetail/historyDetail"
,
"pages/trainReport/trainReport"
,
"pages/trainReport/trainReport"
,
"pages/s
tarSort/starSort
"
,
"pages/s
etting/setting
"
,
"pages/updatePlan/updatePlan"
,
"pages/updatePlan/updatePlan"
,
"pages/trainSort/trainSort"
,
"pages/user/user"
,
"pages/plan/plan"
,
"pages/plan/plan"
,
"pages/message/message"
,
"pages/message/message"
,
"pages/trainSort/trainSort"
,
"pages/starSort/starSort"
,
"pages/historyDetail/historyDetail"
,
"pages/childInfo/childInfo"
,
"pages/eyesight/eyesight"
,
"pages/user/user"
,
"pages/mine/mine"
,
"pages/mine/mine"
,
"pages/idea/idea"
,
"pages/idea/idea"
,
"pages/whiteList/whiteList"
,
"pages/whiteList/whiteList"
,
...
...
assets/power.png
View replaced file @
44976d49
View file @
5d380456
864 Bytes
|
W:
|
H:
1.28 KB
|
W:
|
H:
2-up
Swipe
Onion skin
pages/eyesight/eyesight.js
View file @
5d380456
...
@@ -150,6 +150,7 @@ Page({
...
@@ -150,6 +150,7 @@ Page({
// title: '加载中',
// title: '加载中',
// mask: true
// mask: true
// })
// })
console
if
(
me
.
data
.
ruoData
.
left
==
'无'
){
if
(
me
.
data
.
ruoData
.
left
==
'无'
){
me
.
setData
({
me
.
setData
({
ruoData
:{
left
:
''
,
right
:
me
.
data
.
ruoData
.
right
}
ruoData
:{
left
:
''
,
right
:
me
.
data
.
ruoData
.
right
}
...
...
pages/historyDetail/historyDetail.wxss
View file @
5d380456
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
display: flex;
display: flex;
flex-direction: column;
flex-direction: column;
align-items: center;
align-items: center;
justify-content: center;
padding: 20rpx 40rpx 0 60rpx;
padding: 20rpx 40rpx 0 60rpx;
}
}
#topLeft>image{
#topLeft>image{
...
...
pages/index/index.wxss
View file @
5d380456
...
@@ -197,9 +197,9 @@ page{
...
@@ -197,9 +197,9 @@ page{
}
}
#powerBox>image{
#powerBox>image{
display: block;
display: block;
width:
48
rpx;
width:
36
rpx;
height:
48
rpx;
height:
36
rpx;
margin-left:
10
rpx;
margin-left:
5
rpx;
}
}
.PowerOff{
.PowerOff{
color: #10d9b8;
color: #10d9b8;
...
...
pages/plan/plan.wxss
View file @
5d380456
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
background-color: #e6ece5;
background-color: #e6ece5;
min-height: 100vh;
min-height: 100vh;
}
}
page{
background-color: #e6ece5;
}
#planInfoBox{
#planInfoBox{
padding: 20rpx;
padding: 20rpx;
...
...
pages/setting/setting.wxss
View file @
5d380456
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
background: #EFEFF4;
background: #EFEFF4;
min-height: 100vh;
min-height: 100vh;
}
}
page{
background: #EFEFF4;
}
.useSetting{
.useSetting{
display: flex;
display: flex;
justify-content: space-between;
justify-content: space-between;
...
...
pages/starSort/starSort.wxss
View file @
5d380456
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
background-color: #e6ece5;
background-color: #e6ece5;
min-height: 100vh;
min-height: 100vh;
}
}
page{
background-color: #e6ece5;
}
#sortTop{
#sortTop{
display: flex;
display: flex;
...
...
pages/trainReport/trainReport.wxml
View file @
5d380456
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
<ec-canvas id="mychart-{{index}}" ec="{{ weekChart }}"></ec-canvas>
<ec-canvas id="mychart-{{index}}" ec="{{ weekChart }}"></ec-canvas>
</view>
</view>
<view class="reportItemChartText">
<view class="reportItemChartText">
<view wx:for="{{item.typeTrainingTitleList}}" wx:key>
<view
class="reportItemChartTextItem"
wx:for="{{item.typeTrainingTitleList}}" wx:key>
<text class="dot"></text>
<text class="dot"></text>
{{item.title}} {{item.trainingPercent}}%
{{item.title}} {{item.trainingPercent}}%
</view>
</view>
...
...
pages/trainReport/trainReport.wxss
View file @
5d380456
...
@@ -59,7 +59,14 @@ page{
...
@@ -59,7 +59,14 @@ page{
width: 12rpx;
width: 12rpx;
background: #10D9B8;
background: #10D9B8;
border-radius: 6rpx;
border-radius: 6rpx;
margin: 0 10rpx 0 30rpx;
/* margin: 0 10rpx 0 30rpx; */
margin-right: 10rpx;
}
.reportItemChartTextItem{
margin-left: 30rpx;
}
.reportItemChartTextItem:first-child{
margin-left: 0;
}
}
#taskComplete{
#taskComplete{
...
...
pages/trainSort/trainSort.wxss
View file @
5d380456
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
background-color: #e6ece5;
background-color: #e6ece5;
min-height: 100vh;
min-height: 100vh;
}
}
page{
background-color: #e6ece5;
}
#sortTop{
#sortTop{
display: flex;
display: flex;
...
...
pages/updatePlan/updatePlan.wxss
View file @
5d380456
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
background-color: #e6ece5;
background-color: #e6ece5;
min-height: 100vh;
min-height: 100vh;
}
}
page{
background-color: #e6ece5;
}
/* 视力信息 */
/* 视力信息 */
#sightInfo{
#sightInfo{
...
...
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