Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
max_android_panel
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
Zhang Xin
max_android_panel
Commits
19ef7d2d
Commit
19ef7d2d
authored
Aug 13, 2018
by
Zhang Xin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix css bug
parent
659d84c0
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
16 deletions
+11
-16
client/containers/FinishAskContainer/FinishAskContainer.jsx
+1
-1
client/containers/FinishAskContainer/index.css
+0
-3
client/containers/OtherQuestionContainer/OtherQuestionContainer.jsx
+1
-1
client/containers/OtherQuestionContainer/index.css
+0
-4
client/containers/PageContainer/PageContainer.jsx
+5
-2
client/containers/PageContainer/index.css
+4
-0
client/reducers/error.js
+0
-3
client/util/socket.js
+0
-2
No files found.
client/containers/FinishAskContainer/FinishAskContainer.jsx
View file @
19ef7d2d
...
...
@@ -47,7 +47,7 @@ export default class FinishAskContainer extends React.Component{
this
.
props
.
showPopup
({
popupText
:
'检测到店铺反常,请站出店铺,关闭店铺门后重新验证您的身份'
,
popupButtons
:[
btnDom
,
clockDom
],
classNames
:
'
finishCloseDoor
'
classNames
:
'
popupExtClass
'
})
this
.
props
.
uploadErrs
(
2
);
}
...
...
client/containers/FinishAskContainer/index.css
View file @
19ef7d2d
...
...
@@ -22,6 +22,3 @@
display
:
inline-block
;
align-items
:
center
;
}
.finishCloseDoor
.defaultPopup
.defaultPopupText
{
margin-top
:
0.525rem
!important
;
}
client/containers/OtherQuestionContainer/OtherQuestionContainer.jsx
View file @
19ef7d2d
...
...
@@ -173,7 +173,7 @@ export default class OtherQuestionContainer extends React.Component{
popupInfo
:{
"popupText"
:
"提交前请输入相关信息,如果不想提交可以直接跳过(右上角)"
,
"showPopup"
:
true
,
"classNames"
:
'
finishCloseDoor
'
,
"classNames"
:
'
popupExtClass
'
,
"popupButtons"
:
[<
ButtonComponent
key=
{
"btn"
}
option=
{
this
.
handleShowPopo
.
bind
(
this
)
}
text=
{
"确定"
}
/>]
}
})
...
...
client/containers/OtherQuestionContainer/index.css
View file @
19ef7d2d
...
...
@@ -110,7 +110,3 @@
.OtherQuestionContainer
.opeationContainer
.noMoreBtn
{
}
.finishCloseDoor
.defaultPopup
.defaultPopupText
{
margin-top
:
0.525rem
!important
;
}
client/containers/PageContainer/PageContainer.jsx
View file @
19ef7d2d
...
...
@@ -188,10 +188,13 @@ class PageContainer extends React.Component {
}
showError
(
errMsg
){
let
btnDom
=
<
Button
key=
{
"pagecountBack1"
}
style=
{
{
'width'
:
UTILPATH
.
getRemByPx
(
260
)}
}
text=
{
'确定'
}
option=
{
this
.
hideError
}
/>
let
className
=
errMsg
.
length
>
24
?
'popupExtClass'
:
''
;
let
style
=
{
'width'
:
UTILPATH
.
getRemByPx
(
260
)}
let
btnDom
=
<
Button
key=
{
"pagecountBack1"
}
style=
{
style
}
text=
{
'确定'
}
option=
{
this
.
hideError
}
/>
this
.
showPopup
({
popupText
:
errMsg
,
popupButtons
:[
btnDom
]
popupButtons
:[
btnDom
],
classNames
:
className
})
}
...
...
client/containers/PageContainer/index.css
View file @
19ef7d2d
...
...
@@ -8,3 +8,6 @@
.pageContainer.backColfff
{
background-color
:
#ffffff
;
}
.popupExtClass
.defaultPopup
.defaultPopupText
{
margin-top
:
0.525rem
!important
;
}
\ No newline at end of file
client/reducers/error.js
View file @
19ef7d2d
...
...
@@ -2,9 +2,6 @@ import actionTypes from '../actiontype/error';
const
addErrors
=
(
state
,
data
)
=>
{
console
.
log
(
state
);
console
.
log
(
data
);
return
Object
.
assign
({},
state
,{
errMsg
:
data
});
}
...
...
client/util/socket.js
View file @
19ef7d2d
...
...
@@ -39,7 +39,6 @@ const getIp = ()=>{
// credentials : 'include',
method
:
'GET'
,
mode
:
'cors'
,
body
:
{}
}).
then
(
checkStatus
)
.
then
(
parseJson
)
.
then
((
data
)
=>
{
...
...
@@ -83,7 +82,6 @@ const testIp = (ip) => {
// credentials : 'include',
method
:
'GET'
,
mode
:
'cors'
,
body
:
{}
}).
then
(
checkStatus
)
.
then
(
parseJson
)
.
then
((
data
)
=>
{
...
...
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