Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHO-ACTIVITY-PHP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
Lynnic
2015-11-30 11:25:02 +0800
Commit
a371c36c1103502c8a10731eba129e95aa45d3da
2 parents
732ba5d3
2735309f
Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
static/js/me/coupons.js
static/sass/me/_address.scss
template/m.yohobuy.com/partials/me/address/edit-address.phtml
static/js/me/coupons.js
View file @
a371c36
...
...
@@ -3,6 +3,7 @@ var $ = require('jquery'),
var
employ
;
window
.
rePosFooter
();
$
(
'.yoho-footer'
).
css
(
'border-top'
,
'1px solid #e0e0e0'
);
$
(
'.employ span'
).
each
(
function
(
index
)
{
employ
=
new
Hammer
(
$
(
'.employ span'
)[
index
]);
employ
.
on
(
'tap'
,
function
(
e
)
{
...
...
static/sass/me/_address.scss
View file @
a371c36
...
...
@@ -19,6 +19,14 @@
font-weight
:
bold
;
}
.name
{
display
:
inline-block
;
max-width
:
pxToRem
(
380px
);
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
.tel
{
float
:
right
;
}
...
...
template/m.yohobuy.com/partials/me/address/edit-address.phtml
View file @
a371c36
...
...
@@ -3,7 +3,7 @@
<input type="hidden" name="id" value="">
<label class="username">
收件人姓名
<input type="text" name="consignee" value="">
<input type="text" name="consignee"
maxlength="20"
value="">
</label>
<label class="mobile">
手机号码
...
...
@@ -17,7 +17,7 @@
</label>
<label class="address">
详细地址
<textarea name="address"></textarea>
<textarea name="address"
maxlength="100"
></textarea>
</label>
</form>
...
...
Please
register
or
login
to post a comment