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
Email Patches
Plain Diff
Browse Files
Authored by
hf
9 years ago
Commit
3eeb58a6f84dc7da488be1a0b3de6aa9a81961ce
1 parent
ab500e3b
fixes bug refs YW-790
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
13 deletions
library/Plugin/DataProcess/NewSaleProcess.php
library/Plugin/Helpers.php
script/nginx/conf/vhosts/nginx.test.yohobuy.conf
static/package.json
yohobuy/m.yohobuy.com/configs/application.developer.ini
yohobuy/m.yohobuy.com/configs/application.production.ini
yohobuy/m.yohobuy.com/configs/application.testing.ini
library/Plugin/DataProcess/NewSaleProcess.php
View file @
3eeb58a
...
...
@@ -47,7 +47,7 @@ class NewSaleProcess
$productsLi
=
array
();
if
(
isset
(
$single
[
'product_list'
]))
{
foreach
(
$single
[
'product_list'
]
as
$value
)
{
$productsLi
[
'goods'
][]
=
Helpers
::
formatProduct
(
$value
,
true
,
false
);
$productsLi
[
'goods'
][]
=
Helpers
::
formatProduct
(
$value
,
true
,
false
,
false
);
}
}
...
...
library/Plugin/Helpers.php
View file @
3eeb58a
...
...
@@ -43,9 +43,10 @@ class Helpers
* @param array $productData 需要格式化的商品数据
* @param bool $showTag 控制是否显示标签
* @param bool $showNew 控制是否显示NEW图标
* @param bool $showSale 控制是否显示SALE图标
* @return array | false
*/
public
static
function
formatProduct
(
$productData
,
$showTags
=
true
,
$showNew
=
true
)
public
static
function
formatProduct
(
$productData
,
$showTags
=
true
,
$showNew
=
true
,
$showSale
=
true
)
{
// 商品信息有问题,则不显示
if
(
!
isset
(
$productData
[
'product_skn'
]))
{
...
...
@@ -70,7 +71,7 @@ class Helpers
if
(
$showTags
)
{
$result
[
'tags'
]
=
array
();
$result
[
'tags'
][
'is_new'
]
=
$showNew
&&
isset
(
$productData
[
'is_new'
])
&&
$productData
[
'is_new'
]
===
'Y'
;
// 新品
$result
[
'tags'
][
'is_discount'
]
=
isset
(
$productData
[
'is_discount'
])
&&
$productData
[
'is_discount'
]
===
'Y'
;
// 在售
$result
[
'tags'
][
'is_discount'
]
=
$showSale
&&
isset
(
$productData
[
'is_discount'
])
&&
$productData
[
'is_discount'
]
===
'Y'
;
// 在售
$result
[
'tags'
][
'is_limited'
]
=
isset
(
$productData
[
'is_limited'
])
&&
$productData
[
'is_limited'
]
===
'Y'
;
// 限量
$result
[
'tags'
][
'is_yohood'
]
=
isset
(
$productData
[
'is_yohood'
])
&&
$productData
[
'is_yohood'
]
===
'Y'
;
// YOHOOD
$result
[
'tags'
][
'midYear'
]
=
isset
(
$productData
[
'mid-year'
])
&&
$productData
[
'mid-year'
]
===
'Y'
;
// 年中
...
...
script/nginx/conf/vhosts/nginx.test.yohobuy.conf
View file @
3eeb58a
server
{
listen
80
;
server_name
buy
.
test
.
yoho
.
cn
guang
.
buy
.
test
.
yoho
.
cn
;
server_name
buy
.
test
.
yoho
.
cn
;
#access_log /Data/logs/access.buy.test.yoho.cn.log combined;
error_log
/
Data
/
logs
/
error
.
buy
.
test
.
yoho
.
cn
.
log
warn
;
...
...
@@ -13,6 +13,7 @@ server
allow
218
.
94
.
75
.
50
;
allow
218
.
94
.
75
.
58
;
allow
123
.
56
.
138
.
21
;
allow
172
.
16
.
0
.
0
/
16
;
deny
all
;
location
~* \.
html
$ {
...
...
@@ -22,12 +23,17 @@ server
}
}
location
~* \.(
ico
|
woff
)$ {
expires
7
d
;
location
~* \.(
ico
|
woff
|
svg
|
eot
|
ttf
|
otf
)$ {
expires
30
d
;
}
location
= /
crossdomain
.
xml
{
expires
7
d
;
location
=/
crossdomain
.
xml
{
expires
30
d
;
}
location
=/
sitemap
.
xml
{
expires
1
d
;
}
location
=/
robots
.
txt
{
expires
1
d
;
}
location
/ {
...
...
static/package.json
View file @
3eeb58a
{
"name"
:
"yohobuy"
,
"version"
:
"0.0.
1
"
,
"version"
:
"0.0.
2
"
,
"description"
:
"yohobuy statics"
,
"keywords"
:
[],
"homepage"
:
""
,
...
...
yohobuy/m.yohobuy.com/configs/application.developer.ini
View file @
3eeb58a
...
...
@@ -50,4 +50,4 @@ application.template.ext = ".phtml"
application.assets.path
=
ROOT_PATH "/assets"
; 应用的版本号
application.version
=
"0.0.1"
\ No newline at end of file
application.version
=
"0.0.2"
\ No newline at end of file
...
...
yohobuy/m.yohobuy.com/configs/application.production.ini
View file @
3eeb58a
...
...
@@ -50,4 +50,4 @@ application.template.ext = ".phtml"
application.assets.path
=
ROOT_PATH "/assets"
; 应用的版本号
application.version
=
"0.0.1"
\ No newline at end of file
application.version
=
"0.0.2"
\ No newline at end of file
...
...
yohobuy/m.yohobuy.com/configs/application.testing.ini
View file @
3eeb58a
...
...
@@ -50,4 +50,4 @@ application.template.ext = ".phtml"
application.assets.path
=
ROOT_PATH "/assets"
; 应用的版本号
application.version
=
"0.0.1"
\ No newline at end of file
application.version
=
"0.0.2"
\ No newline at end of file
...
...
Please
register
or
login
to post a comment