Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
yyq
7 years ago
Commit
a3a6e54977f376825b4577d60f6c0bf8fb0d801d
2 parents
5341dabe
fdbebaa4
Merge remote-tracking branch 'origin/feature/force-bind2' into release/6.5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
apps/home/models/account-service.js
config/common.js
public/js/passport/cert/dialog.js
public/scss/common/_bind-dialog.css
apps/home/models/account-service.js
View file @
a3a6e54
...
...
@@ -199,9 +199,9 @@ module.exports = class extends global.yoho.BaseModel {
formData
=
[
{
inputTxt
:
ischeckMobile
?
'输入新的手机号码'
:
'请输入手机号码'
,
key
:
ischeckMobile
?
'mobilevalue2'
:
'mobilevalue
'
,
key
:
'mobilevalue2
'
,
type
:
'text'
,
name
:
ischeckMobile
?
'mobile2'
:
'mobile
'
name
:
'mobile2
'
}
];
break
;
...
...
config/common.js
View file @
a3a6e54
...
...
@@ -110,7 +110,7 @@ module.exports = {
port
:
'4444'
// influxdb port
},
console
:
{
level
:
'
info
'
,
level
:
'
debug
'
,
colorize
:
'all'
,
prettyPrint
:
true
}
...
...
public/js/passport/cert/dialog.js
View file @
a3a6e54
...
...
@@ -10,7 +10,7 @@ exports.showBind = function(goLoginCb, goNextCb) {
content
:
infoTpl
(),
btns
:
[{
id
:
'login'
,
btnClass
:
[
'btn-cancel'
],
btnClass
:
[
'b
ind-b
tn-cancel'
],
name
:
'去登录'
,
cb
:
function
()
{
console
.
log
(
'login'
);
...
...
@@ -18,7 +18,7 @@ exports.showBind = function(goLoginCb, goNextCb) {
}
},
{
id
:
'next'
,
btnClass
:
[
'btn-ok'
],
btnClass
:
[
'b
ind-b
tn-ok'
],
name
:
'继续'
,
cb
:
function
()
{
console
.
log
(
'next'
);
...
...
@@ -38,14 +38,14 @@ exports.showBind2 = function(goLoginCb, goNextCb) {
content
:
infoTpl2
(),
btns
:
[{
id
:
'login'
,
btnClass
:
[
'btn-cancel'
],
btnClass
:
[
'b
ind-b
tn-cancel'
],
name
:
'去登录'
,
cb
:
function
()
{
goLoginCb
&&
goLoginCb
();
}
},
{
id
:
'next'
,
btnClass
:
[
'btn-ok'
],
btnClass
:
[
'b
ind-b
tn-ok'
],
name
:
'继续'
,
cb
:
function
()
{
goNextCb
&&
goNextCb
();
...
...
public/scss/common/_bind-dialog.css
View file @
a3a6e54
...
...
@@ -26,24 +26,24 @@
margin-bottom
:
43px
;
}
.btn-cancel
{
.b
ind-b
tn-cancel
{
border-radius
:
3px
;
width
:
120px
;
height
:
35px
;
line-height
:
35px
;
height
:
35px
!important
;
line-height
:
35px
!important
;
color
:
#999
;
border
:
solid
1px
#999
;
border
:
solid
1px
#999
!important
;
padding
:
0
!important
;
}
.btn-ok
{
.b
ind-b
tn-ok
{
width
:
120px
;
height
:
35px
;
height
:
35px
!important
;
color
:
white
;
background
:
#444
;
border-radius
:
3px
;
line-height
:
35px
;
border
:
solid
1px
#444
;
line-height
:
35px
!important
;
border
:
solid
1px
#444
!important
;
padding
:
0
!important
;
margin-left
:
38px
!important
;
}
...
...
Please
register
or
login
to post a comment