Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-blk
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
郝肖肖
8 years ago
Commit
99f11859de3ad47fc0954319a88bd653db08a94e
1 parent
4cac3f7a
修复火狐5.0浏览器个人中心 订单列表样式问题
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
8 deletions
config/common.js
public/js/product/item.page.js
public/scss/me/order/_table.css
config/common.js
View file @
99f1185
...
...
@@ -27,15 +27,15 @@ module.exports = {
// service: 'http://192.168.102.205:8080/gateway/',
// search: 'http://192.168.102.216:8080/yohosearch/'
// singleApi: 'http://single.yoho.cn/',
// api: 'http://api.yoho.yohoops.org/',
// service: 'http://service.yoho.yohoops.org/',
// search: 'http://search.yohoops.org/yohosearch/'
singleApi
:
'http://single.yoho.cn/'
,
api
:
'http://api-test3.yohops.com:9999/'
,
service
:
'http://service-test3.yohops.com:9999/'
,
api
:
'http://api.yoho.yohoops.org/'
,
service
:
'http://service.yoho.yohoops.org/'
,
search
:
'http://search.yohoops.org/yohosearch/'
// singleApi: 'http://single.yoho.cn/',
// api: 'http://api-test3.yohops.com:9999/',
// service: 'http://service-test3.yohops.com:9999/',
// search: 'http://search.yohoops.org/yohosearch/'
},
useOneapm
:
false
,
useCache
:
false
,
...
...
public/js/product/item.page.js
View file @
99f1185
...
...
@@ -339,10 +339,14 @@ $('#collect-product').click(function() {
});
$
(
'.more-brand-intro'
).
click
(
function
()
{
$
(
'body'
).
css
({
overflow
:
'hidden'
});
new
Dialog
({
className
:
'item-more-intro-dialog'
,
content
:
introHtml
,
btns
:
[]
btns
:
[],
closeCb
:
function
()
{
$
(
'body'
).
css
({
overflow
:
'auto'
});
}
}).
show
();
$
(
'.full-intro-text'
).
nanoScroller
();
});
...
...
public/scss/me/order/_table.css
View file @
99f1185
...
...
@@ -113,6 +113,7 @@
width
:
calc
(
$
bigWidth
+
$
normalWidth
+
$
space
+
3px
);
display
:
table-cell
;
box-sizing
:
border-box
;
overflow
:
hidden
;
img
{
width
:
$
goodImgWidth
;
...
...
@@ -120,6 +121,7 @@
display
:
inline-block
;
box-sizing
:
border-box
;
margin
:
$
bigSpace
$
space
;
float
:
left
;
}
.good-info
{
...
...
Please
register
or
login
to post a comment