Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DoorLock
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
felix
DoorLock
Commits
8958fdc9
Commit
8958fdc9
authored
Jan 30, 2018
by
朱建香
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
绑定页面样式修改
parent
eacd00d5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
69 additions
and
63 deletions
+69
-63
dev/src/view/device/v_index.js
+1
-0
web/lib/less/addDevice/addDevice.less
+3
-2
web/lib/less/public/variables.less
+2
-2
web/resources/lang/en.json
+0
-0
web/resources/lang/zh.json
+0
-0
web/view/addDevice/addDevice.css
+11
-7
web/view/bindUser/bindUser.css
+4
-4
web/view/device/device.css
+7
-7
web/view/device/notify.css
+4
-4
web/view/device/recordList.css
+4
-4
web/view/doorlockManage/doorlockManage.css
+5
-5
web/view/doorlockUsers/doorlockUser.css
+7
-7
web/view/doorlockUsers/unlockInfo.css
+5
-5
web/view/doorlockUsers/userList.css
+4
-4
web/view/login/login.css
+4
-4
web/view/myInfo/help.css
+4
-4
web/view/myInfo/myInfo.css
+4
-4
No files found.
dev/src/view/device/v_index.js
View file @
8958fdc9
...
...
@@ -873,6 +873,7 @@ async function sdsDataPorcessing(self, data){
self
.
setRemoteOpendoorDisabledFlag
(
true
);
self
.
setRemoteOpendoorShowFlag
(
false
);
window
.
clearTimeout
(
self
.
remoteTime
);
uComponents
.
hideCommLoading
(
self
);
}
});
}
else
{
...
...
web/lib/less/addDevice/addDevice.less
View file @
8958fdc9
...
...
@@ -228,9 +228,10 @@
line-height: 1;
margin: 0 auto;
padding: 0.267rem 0;
-webkit-transition:
all
0.2s linear;
transition:
all
0.2s linear;
-webkit-transition:
background-color
0.2s linear;
transition:
background-color
0.2s linear;
background-clip: padding-box;
.tap_row(@CUSTOM-BUTTON-COMPONENT-ACTIVE-BG);
}
.custom-process-cancelButton{
...
...
web/lib/less/public/variables.less
View file @
8958fdc9
...
...
@@ -50,10 +50,10 @@
@C_GRAY_6: #50515d;
@C_GRAY_7: #C2C2C2;
@OPACITY: transparent;
@BLACK_OPACITY: fade(@C_BLACK,
8
0%);
@BLACK_OPACITY: fade(@C_BLACK,
9
0%);
@BLACK_OPACITY_1: fade(@C_BLACK,40%);
@WHITE_OPACITY: fade(@C_WHITE,0);
@BLUE_OPACITY: fade(@C_BL
UE_2,94
%);
@BLUE_OPACITY: fade(@C_BL
ACK,90
%);
@GRAY_OPACITY: fade(@C_GRAY_2,5%);
//font-sizes
...
...
web/resources/lang/en.json
View file @
8958fdc9
This diff is collapsed.
Click to expand it.
web/resources/lang/zh.json
View file @
8958fdc9
This diff is collapsed.
Click to expand it.
web/view/addDevice/addDevice.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
@@ -918,7 +918,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-process
.u-process-content
{
...
...
@@ -1168,11 +1168,15 @@ p {
line-height
:
1
;
margin
:
0
auto
;
padding
:
0.267rem
0
;
-webkit-transition
:
all
0.2s
linear
;
transition
:
all
0.2s
linear
;
-webkit-transition
:
background-color
0.2s
linear
;
transition
:
background-color
0.2s
linear
;
background-clip
:
padding-box
;
}
.custom-process-button
:active
{
background-color
:
#153D4C
;
}
.custom-process-cancelButton
{
bottom
:
0
;
width
:
2.667rem
;
...
...
web/view/bindUser/bindUser.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
web/view/device/device.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
@@ -647,7 +647,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-comm-loading
.u-comm-loading-content
{
...
...
@@ -881,7 +881,7 @@ p {
}
.custom-comm-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-comm-loading
.u-comm-loading-button
{
...
...
@@ -1641,7 +1641,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.u-notification
.u-notification-box
{
...
...
web/view/device/notify.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
web/view/device/recordList.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
web/view/doorlockManage/doorlockManage.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
@@ -1031,7 +1031,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.unbindState-dialog
div
{
...
...
web/view/doorlockUsers/doorlockUser.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
@@ -835,7 +835,7 @@ p {
width
:
100%
;
height
:
100%
;
text-align
:
center
;
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.inviteBind
li
p
span
{
...
...
@@ -868,7 +868,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.unbindState-dialog
div
{
...
...
@@ -911,7 +911,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.guide-dialog
.guideStep1
{
...
...
web/view/doorlockUsers/unlockInfo.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
@@ -1143,7 +1143,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.guide-dialog
.guideStep1
{
...
...
web/view/doorlockUsers/userList.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
web/view/login/login.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
web/view/myInfo/help.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
web/view/myInfo/myInfo.css
View file @
8958fdc9
...
...
@@ -44,7 +44,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1050
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-loading
.u-loading-box
{
...
...
@@ -100,7 +100,7 @@ p {
}
.custom-loading
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-loading
.u-loading-box
{
...
...
@@ -232,7 +232,7 @@ p {
width
:
100%
;
height
:
100%
;
z-index
:
1051
;
background-color
:
rgba
(
0
,
0
,
0
,
0.
8
);
background-color
:
rgba
(
0
,
0
,
0
,
0.
9
);
}
.u-dialog
.u-dialog-box
{
...
...
@@ -303,7 +303,7 @@ p {
}
.custom-dialog
{
background-color
:
rgba
(
36
,
38
,
53
,
0.94
);
background-color
:
rgba
(
0
,
0
,
0
,
0.9
);
}
.custom-dialog
.u-dialog-box
{
...
...
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