Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
fashion_group
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
章建武
fashion_group
Commits
552aff5b
Commit
552aff5b
authored
Apr 14, 2021
by
martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
官网修改第三版
parent
dbcb9bd6
Pipeline
#67
failed with stages
Changes
17
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
26 additions
and
17 deletions
+26
-17
AboutController.php
app/Http/Controllers/Index/AboutController.php
+1
-0
ArticleController.php
app/Http/Controllers/Index/ArticleController.php
+1
-0
AudioController.php
app/Http/Controllers/Index/AudioController.php
+3
-1
BrandCultureController.php
app/Http/Controllers/Index/BrandCultureController.php
+1
-0
GoodsItemController.php
app/Http/Controllers/Index/GoodsItemController.php
+1
-0
GroupCultureController.php
app/Http/Controllers/Index/GroupCultureController.php
+2
-1
IndexController.php
app/Http/Controllers/Index/IndexController.php
+3
-2
JoinUsController.php
app/Http/Controllers/Index/JoinUsController.php
+1
-0
da7df3b075f8ad172215866ea59e06c1.png
.../about_images/public/da7df3b075f8ad172215866ea59e06c1.png
+0
-0
5bca7601c5c3035a2093853e118bdb17.png
public/images/5bca7601c5c3035a2093853e118bdb17.png
+0
-0
97c1c6f567afcf6bc0a1e1064e09034e.png
public/images/97c1c6f567afcf6bc0a1e1064e09034e.png
+0
-0
983e747635cfaf830019d9ecbb9bd0ae.jpg
public/images/983e747635cfaf830019d9ecbb9bd0ae.jpg
+0
-0
da7df3b075f8ad172215866ea59e06c1.png
public/images/da7df3b075f8ad172215866ea59e06c1.png
+0
-0
about.blade.php
resources/views/Index/about/about.blade.php
+2
-2
index.blade.php
resources/views/Index/index.blade.php
+7
-7
index.blade.php
resources/views/Index/join_us/index.blade.php
+1
-1
job_social.blade.php
resources/views/Index/join_us/job_social.blade.php
+3
-3
No files found.
app/Http/Controllers/Index/AboutController.php
View file @
552aff5b
...
@@ -62,6 +62,7 @@ class AboutController extends Controller
...
@@ -62,6 +62,7 @@ class AboutController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
...
app/Http/Controllers/Index/ArticleController.php
View file @
552aff5b
...
@@ -86,6 +86,7 @@ class ArticleController extends Controller
...
@@ -86,6 +86,7 @@ class ArticleController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
...
app/Http/Controllers/Index/AudioController.php
View file @
552aff5b
...
@@ -62,6 +62,7 @@ class AudioController extends Controller
...
@@ -62,6 +62,7 @@ class AudioController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
@@ -103,6 +104,7 @@ class AudioController extends Controller
...
@@ -103,6 +104,7 @@ class AudioController extends Controller
$list
=
IndexVideoUrl
::
query
()
$list
=
IndexVideoUrl
::
query
()
->
where
(
'status'
,
0
)
->
where
(
'status'
,
0
)
// ->where(['type'=>$type,'language_type'=>$language_type])
// ->where(['type'=>$type,'language_type'=>$language_type])
->
where
(
'type'
,
'='
,
$type
)
->
limit
(
3
)
->
paginate
(
3
,
[
'*'
],
'page'
,
$page
);
->
limit
(
3
)
->
paginate
(
3
,
[
'*'
],
'page'
,
$page
);
$navigation
=
IndexNavigation
::
query
()
$navigation
=
IndexNavigation
::
query
()
...
@@ -119,11 +121,11 @@ class AudioController extends Controller
...
@@ -119,11 +121,11 @@ class AudioController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
}
}
return
view
(
'Index.audio.play'
,
compact
(
'data'
))
return
view
(
'Index.audio.play'
,
compact
(
'data'
))
->
with
(
'IndexNav'
,
$navigation
)
->
with
(
'IndexNav'
,
$navigation
)
->
with
(
'language_type'
,
$language_type
)
->
with
(
'language_type'
,
$language_type
)
...
...
app/Http/Controllers/Index/BrandCultureController.php
View file @
552aff5b
...
@@ -46,6 +46,7 @@ class BrandCultureController extends Controller
...
@@ -46,6 +46,7 @@ class BrandCultureController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
...
app/Http/Controllers/Index/GoodsItemController.php
View file @
552aff5b
...
@@ -46,6 +46,7 @@ class GoodsItemController extends Controller
...
@@ -46,6 +46,7 @@ class GoodsItemController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
...
app/Http/Controllers/Index/GroupCultureController.php
View file @
552aff5b
...
@@ -46,6 +46,7 @@ class GroupCultureController extends Controller
...
@@ -46,6 +46,7 @@ class GroupCultureController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
@@ -91,7 +92,7 @@ class GroupCultureController extends Controller
...
@@ -91,7 +92,7 @@ class GroupCultureController extends Controller
->
where
(
'parent_id'
,
0
)
->
where
(
'parent_id'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'language_type'
,
$language_type
)
->
where
(
'language_type'
,
$language_type
)
->
orderBy
(
'id'
,
'
a
sc'
)
->
orderBy
(
'id'
,
'
de
sc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
...
...
app/Http/Controllers/Index/IndexController.php
View file @
552aff5b
...
@@ -85,7 +85,7 @@ class IndexController extends Controller
...
@@ -85,7 +85,7 @@ class IndexController extends Controller
->
where
([
'status'
=>
0
])
->
where
([
'status'
=>
0
])
->
limit
(
4
)
->
limit
(
4
)
->
get
();
->
get
();
$events
=
IndexEvents
::
query
()
->
where
(
'language_type'
,
'='
,
$language_type
)
->
get
();
$events
=
IndexEvents
::
query
()
->
where
(
'language_type'
,
'='
,
0
)
->
get
();
$setting
=
IndexSetting
::
query
()
->
first
();
$setting
=
IndexSetting
::
query
()
->
first
();
$navigation
=
IndexNavigation
::
query
()
$navigation
=
IndexNavigation
::
query
()
...
@@ -96,12 +96,12 @@ class IndexController extends Controller
...
@@ -96,12 +96,12 @@ class IndexController extends Controller
->
orderBy
(
'id'
,
'asc'
)
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
foreach
(
$navigation
as
$k
=>
&
$v
){
foreach
(
$navigation
as
$k
=>
&
$v
){
$children
=
IndexNavigation
::
query
()
$children
=
IndexNavigation
::
query
()
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
@@ -156,6 +156,7 @@ class IndexController extends Controller
...
@@ -156,6 +156,7 @@ class IndexController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
...
app/Http/Controllers/Index/JoinUsController.php
View file @
552aff5b
...
@@ -39,6 +39,7 @@ class JoinUsController extends Controller
...
@@ -39,6 +39,7 @@ class JoinUsController extends Controller
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'is_show'
,
0
)
->
where
(
'parent_id'
,
$v
[
'id'
])
->
where
(
'parent_id'
,
$v
[
'id'
])
->
orderBy
(
'id'
,
'asc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
$v
[
'children'
]
=
$children
;
$v
[
'children'
]
=
$children
;
...
...
public/about_images/public/da7df3b075f8ad172215866ea59e06c1.png
0 → 100644
View file @
552aff5b
91.7 KB
public/images/5bca7601c5c3035a2093853e118bdb17.png
0 → 100644
View file @
552aff5b
19.7 KB
public/images/97c1c6f567afcf6bc0a1e1064e09034e.png
0 → 100644
View file @
552aff5b
6.08 KB
public/images/983e747635cfaf830019d9ecbb9bd0ae.jpg
0 → 100644
View file @
552aff5b
168 KB
public/images/da7df3b075f8ad172215866ea59e06c1.png
0 → 100644
View file @
552aff5b
91.7 KB
resources/views/Index/about/about.blade.php
View file @
552aff5b
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
<h2><span style="
font
-
family
:
宋体
,
SimSun
;
">中国领先的商业地产开发运营商和旅游地产新模式开发运营商</span></h2>
<h2><span style="
font
-
family
:
宋体
,
SimSun
;
">中国领先的商业地产开发运营商和旅游地产新模式开发运营商</span></h2>
<p>
<p>
<span style="
font
-
family
:
宋体
,
SimSun
;
">
<span style="
font
-
family
:
宋体
,
SimSun
;
">
时尚集团成立于1988年,自有资产规模400多亿,2018年集团营业额
7
80亿元,
时尚集团成立于1988年,自有资产规模400多亿,2018年集团营业额
近
80亿元,
主体从事旅游商业地产、商业地产、地下商业空间开发,现于广州、深圳、南京、沈阳、阳朔等十几个城市有大型商业地产、旅游商业街投资。
主体从事旅游商业地产、商业地产、地下商业空间开发,现于广州、深圳、南京、沈阳、阳朔等十几个城市有大型商业地产、旅游商业街投资。
</span>
</span>
</p>
</p>
...
@@ -106,7 +106,7 @@
...
@@ -106,7 +106,7 @@
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<h1>fashiongroup<span>Founder / Chairman</span></h1>
<h1>fashiongroup<span>Founder / Chairman</span></h1>
@else
@else
<h1>深圳时尚商业
地产
集团股份有限公司<span>创始人/董事长</span></h1>
<h1>深圳时尚商业
科技
集团股份有限公司<span>创始人/董事长</span></h1>
@endif
@endif
</div>
</div>
<div class="
about
-
item3
-
b
clearfix
">
<div class="
about
-
item3
-
b
clearfix
">
...
...
resources/views/Index/index.blade.php
View file @
552aff5b
...
@@ -30,11 +30,11 @@
...
@@ -30,11 +30,11 @@
<div class="
panel
-
more
">
<div class="
panel
-
more
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<a href="
{{
route
(
'enabout1'
)}}{{
$val
->
anchor
}}
">
<a href="
{{
route
(
'enabout1'
)}}{{
$val
->
anchor
}}
">
<img src="
{{
asset
(
'images/
moreinfo
.png'
)}}
">
<img src="
{{
asset
(
'images/
5bca7601c5c3035a2093853e118bdb17
.png'
)}}
">
</a>
</a>
@else
@else
<a href="
{{
$val
->
anchor
}}
">
<a href="
{{
$val
->
anchor
}}
">
<img src="
{{
asset
(
'images/
ea1b4947d173a224e8dcbca0549db8a2
.png'
)}}
">
<img src="
{{
asset
(
'images/
5bca7601c5c3035a2093853e118bdb17
.png'
)}}
">
</a>
</a>
@endif
@endif
</div>
</div>
...
@@ -164,7 +164,7 @@
...
@@ -164,7 +164,7 @@
<div class="
panel
-
more
">
<div class="
panel
-
more
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<a href="
{{
$val
->
img_title
}}
">
<a href="
{{
$val
->
img_title
}}
">
<img src="
{{
asset
(
'images/
moreinfo
.png'
)}}
">
<img src="
{{
asset
(
'images/
5bca7601c5c3035a2093853e118bdb17
.png'
)}}
">
</a>
</a>
@else
@else
<a href="
{{
$val
->
anchor
}}
">
<a href="
{{
$val
->
anchor
}}
">
...
@@ -186,7 +186,7 @@
...
@@ -186,7 +186,7 @@
<div class="
panel
-
more
">
<div class="
panel
-
more
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<a href="
{{
$vl
->
img_title
}}
">
<a href="
{{
$vl
->
img_title
}}
">
<img src="
{{
asset
(
'images/
moreinfo
.png'
)}}
">
<img src="
{{
asset
(
'images/
5bca7601c5c3035a2093853e118bdb17
.png'
)}}
">
@else
@else
<a href="
{{
$vl
->
anchor
}}
">
<a href="
{{
$vl
->
anchor
}}
">
<img src="
{{
asset
(
'images/ea1b4947d173a224e8dcbca0549db8a2.png'
)}}
">
<img src="
{{
asset
(
'images/ea1b4947d173a224e8dcbca0549db8a2.png'
)}}
">
...
@@ -200,7 +200,7 @@
...
@@ -200,7 +200,7 @@
<div class="
panel
-
more
">
<div class="
panel
-
more
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<a href="
{{
$vl
->
img_title
}}
">
<a href="
{{
$vl
->
img_title
}}
">
<img src="
{{
asset
(
'images/
moreinfo
.png'
)}}
">
<img src="
{{
asset
(
'images/
5bca7601c5c3035a2093853e118bdb17
.png'
)}}
">
</a>
</a>
@else
@else
<a href="
{{
$vl
->
anchor
}}
">
<a href="
{{
$vl
->
anchor
}}
">
...
@@ -328,7 +328,7 @@
...
@@ -328,7 +328,7 @@
<div class="
panel
-
more
">
<div class="
panel
-
more
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<a href="
{{
route
(
'enjob_social'
)}}
">
<a href="
{{
route
(
'enjob_social'
)}}
">
<img src="
{{
asset
(
'images/
moreinfo
.png'
)}}
">
<img src="
{{
asset
(
'images/
5bca7601c5c3035a2093853e118bdb17
.png'
)}}
">
</a>
</a>
@else
@else
<a href="
{{
route
(
'job_social'
)}}
">
<a href="
{{
route
(
'job_social'
)}}
">
...
@@ -584,7 +584,7 @@
...
@@ -584,7 +584,7 @@
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<p><a href="
http
://
oanew
.
fashiongz
.
com
.
cn
/
seeyon
/
index
.
jsp
" target="
_blank
"><span></span>Group OA</a></p>
<p><a href="
http
://
oanew
.
fashiongz
.
com
.
cn
/
seeyon
/
index
.
jsp
" target="
_blank
"><span></span>Group OA</a></p>
@else
@else
<p><a href="
http
://
oa
new
.
fashiongz
.
com
.
cn
/
seeyon
/
index
.
jsp
" target="
_blank
"><span></span>集团OA</a></p>
<p><a href="
http
://
oa
.
fashiongz
.
com
.
cn
/
seeyon
/
index
.
jsp
" target="
_blank
"><span></span>集团OA</a></p>
@endif
@endif
@if(
$language_type
== 1)
@if(
$language_type
== 1)
...
...
resources/views/Index/join_us/index.blade.php
View file @
552aff5b
...
@@ -99,7 +99,7 @@
...
@@ -99,7 +99,7 @@
<p><a href="
{{
url
(
'en/index'
)}}
/
#page11" class="more">See more contacts</a></p>
<p><a href="
{{
url
(
'en/index'
)}}
/
#page11" class="more">See more contacts</a></p>
@
else
@
else
<
h2
>
联系我们
</
h2
>
<
h2
>
联系我们
</
h2
>
<
p
>
深圳时尚商业
地产
集团股份有限公司
</
p
>
<
p
>
深圳时尚商业
科技
集团股份有限公司
</
p
>
<
p
>
地址
:
深圳市福田区金田南路大中华国际交易广场2301
</
p
>
<
p
>
地址
:
深圳市福田区金田南路大中华国际交易广场2301
</
p
>
<
p
>
电话
:
<
a
href
=
"tel:"
>
0755
-
82839309
</
a
></
p
>
<
p
>
电话
:
<
a
href
=
"tel:"
>
0755
-
82839309
</
a
></
p
>
<
p
>
网址
:
<
a
href
=
"http://www.fashiongroup.com.cn"
>
http
://
www
.
fashiongroup
.
com
.
cn
</
a
></
p
>
<
p
>
网址
:
<
a
href
=
"http://www.fashiongroup.com.cn"
>
http
://
www
.
fashiongroup
.
com
.
cn
</
a
></
p
>
...
...
resources/views/Index/join_us/job_social.blade.php
View file @
552aff5b
...
@@ -112,11 +112,11 @@
...
@@ -112,11 +112,11 @@
<div class="
panel
-
inner
-
b
-
btn
">
<div class="
panel
-
inner
-
b
-
btn
">
<a href="
{{
$v
->
job_link
}}
" target="
_blank
">
<a href="
{{
$v
->
job_link
}}
" target="
_blank
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
I want t
o apply
I want t
his job!
@else
@else
我要应聘
我要应聘
@endif
@endif
<span></span>
{{-- <span></span>--}}
</a>
</a>
</div>
</div>
</div>
</div>
...
@@ -132,7 +132,7 @@
...
@@ -132,7 +132,7 @@
@else
@else
我要应聘
我要应聘
@endif
@endif
<span></span>
{{-- <span></span>--}}
</a>
</a>
</div>
</div>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment