Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
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
zhangxiaoru
8 years ago
Commit
9ebe1fd2d2525a14de12e50fe5e68b56e0314acb
2 parents
d2e254cd
0d01bcfa
merge goodSize
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
8 deletions
compile/m.yohobuy.com/5.3.13/.gitkeep
static/js/cart/chose-panel.js
static/sass/cart/_chose-panel.css
template/m.yohobuy.com/partials/cart/chose-panel.phtml
compile/m.yohobuy.com/5.3.13/.gitkeep
deleted
100644 → 0
View file @
d2e254c
static/js/cart/chose-panel.js
View file @
9ebe1fd
...
...
@@ -349,7 +349,9 @@ function chosedLength() {
var
$chosedL
=
$
(
'.block-list li.chosed'
),
infoHtml
,
choosedInfo
=
$
(
'.choosed-info'
),
notChoose
=
$
(
'.not-choose'
);
notChoose
=
$
(
'.not-choose'
),
chosedStr
=
$chosedL
.
eq
(
0
).
html
()
?
$chosedL
.
eq
(
0
).
html
().
replace
(
/
(
^
\s
*
)
|
(\s
*$
)
/g
,
""
)
:
''
,
strlen
=
0
;
choosedInfo
.
removeClass
(
'hide'
);
...
...
@@ -357,13 +359,26 @@ function chosedLength() {
notChoose
.
addClass
(
'hide'
);
}
for
(
var
i
=
0
;
i
<
chosedStr
.
length
;
i
++
)
{
if
(
chosedStr
.
charCodeAt
(
i
)
>
255
)
{
strlen
+=
2
;
}
else
{
strlen
++
;
}
if
(
strlen
>=
14
)
{
chosedStr
=
chosedStr
.
substring
(
0
,
i
)
+
'...'
;
break
;
}
}
if
(
$chosedL
.
length
===
2
)
{
$chosedL
.
each
(
function
(
val
)
{
infoHtml
=
'已选:'
+
$chosedL
.
eq
(
0
).
html
()
+
'、'
+
$chosedL
.
eq
(
1
).
html
();
})
infoHtml
=
'已选:'
+
chosedStr
+
'、'
+
$chosedL
.
eq
(
1
).
html
();
});
}
else
if
(
$chosedL
.
length
===
1
)
{
infoHtml
=
'已选:'
+
$chosedL
.
eq
(
0
).
html
()
;
infoHtml
=
'已选:'
+
chosedStr
;
}
else
{
choosedInfo
.
addClass
(
'hide'
);
notChoose
.
removeClass
(
'hide'
);
...
...
static/sass/cart/_chose-panel.css
View file @
9ebe1fd
...
...
@@ -20,11 +20,11 @@
.close
{
float
:
right
;
font-size
:
80%
;
width
:
30px
;
height
:
30px
;
margin
-right
:
6px
;
margin
:
16px
16px
0
0
;
text-align
:
right
;
color
:
#b1b1b1
;
}
.infos
{
...
...
@@ -45,7 +45,7 @@
.thumb
{
width
:
164px
;
/*height: 228px;*/
min-height
:
220px
;
position
:
absolute
;
top
:
-60px
;
border
:
1px
solid
#e6e6e6
;
...
...
template/m.yohobuy.com/partials/cart/chose-panel.phtml
View file @
9ebe1fd
{
{#cartInfo
}
}
<div
class=
"chose-panel"
>
<div
class=
"main"
>
<div
class=
"close
"
>X
</div>
<div
class=
"close
iconfont"
>
626
;
</div>
<div
class=
"infos {{#if ../tickets}}tickets-info{{/if}}"
>
<div
class=
"basic-info"
>
{
{#thumbs
}
}
...
...
Please
register
or
login
to post a comment