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
f574fdfb
Commit
f574fdfb
authored
Apr 15, 2021
by
martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
官网修改文化下载板块图片
parent
b467db08
Pipeline
#74
failed with stages
Changes
8
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
56 additions
and
33 deletions
+56
-33
AudioController.php
app/Http/Controllers/Index/AudioController.php
+2
-3
BrandCultureController.php
app/Http/Controllers/Index/BrandCultureController.php
+4
-0
GroupCultureController.php
app/Http/Controllers/Index/GroupCultureController.php
+2
-1
download.blade.php
resources/views/Index/brand_culture/download.blade.php
+10
-2
index.blade.php
resources/views/Index/brand_culture/index.blade.php
+13
-13
download.blade.php
resources/views/Index/group_culture/download.blade.php
+10
-2
index.blade.php
resources/views/Index/group_culture/index.blade.php
+7
-7
index.blade.php
resources/views/Index/index.blade.php
+8
-5
No files found.
app/Http/Controllers/Index/AudioController.php
View file @
f574fdfb
...
@@ -103,10 +103,9 @@ class AudioController extends Controller
...
@@ -103,10 +103,9 @@ class AudioController extends Controller
// var_dump($data->title);exit;
// var_dump($data->title);exit;
$list
=
IndexVideoUrl
::
query
()
$list
=
IndexVideoUrl
::
query
()
->
where
(
'status'
,
0
)
->
where
(
'status'
,
0
)
// ->where(['type'=>$type,'language_type'=>$language_type
])
->
where
([
'type'
=>
$type
,
'language_type'
=>
0
])
->
where
(
'type'
,
'='
,
$type
)
//
->where('type','=',$type)
->
limit
(
3
)
->
paginate
(
3
,
[
'*'
],
'page'
,
$page
);
->
limit
(
3
)
->
paginate
(
3
,
[
'*'
],
'page'
,
$page
);
$navigation
=
IndexNavigation
::
query
()
$navigation
=
IndexNavigation
::
query
()
->
where
(
'is_link'
,
0
)
->
where
(
'is_link'
,
0
)
->
where
(
'parent_id'
,
0
)
->
where
(
'parent_id'
,
0
)
...
...
app/Http/Controllers/Index/BrandCultureController.php
View file @
f574fdfb
...
@@ -92,6 +92,7 @@ class BrandCultureController extends Controller
...
@@ -92,6 +92,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
;
...
@@ -99,6 +100,9 @@ class BrandCultureController extends Controller
...
@@ -99,6 +100,9 @@ class BrandCultureController extends Controller
$data
=
PdfModel
::
query
()
$data
=
PdfModel
::
query
()
->
where
(
'type'
,
'='
,
1
)
->
where
(
'type'
,
'='
,
1
)
->
first
();
->
first
();
// $data2 = PdfModel::query()
// ->where('type','=',2)
// ->first();
return
view
(
'Index.brand_culture.download'
,
compact
(
'data'
))
return
view
(
'Index.brand_culture.download'
,
compact
(
'data'
))
->
with
(
'IndexNav'
,
$navigation
)
->
with
(
'IndexNav'
,
$navigation
)
->
with
(
'language_type'
,
$language_type
)
->
with
(
'language_type'
,
$language_type
)
...
...
app/Http/Controllers/Index/GroupCultureController.php
View file @
f574fdfb
...
@@ -92,7 +92,7 @@ class GroupCultureController extends Controller
...
@@ -92,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'
,
'
de
sc'
)
->
orderBy
(
'id'
,
'
a
sc'
)
->
get
()
->
get
()
->
toArray
();
->
toArray
();
...
@@ -101,6 +101,7 @@ class GroupCultureController extends Controller
...
@@ -101,6 +101,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
;
...
...
resources/views/Index/brand_culture/download.blade.php
View file @
f574fdfb
...
@@ -14,7 +14,11 @@
...
@@ -14,7 +14,11 @@
<div class="
container1
">
<div class="
container1
">
<div class="
culture
-
d
-
item1
-
all
clearfix
">
<div class="
culture
-
d
-
item1
-
all
clearfix
">
<div class="
culture
-
d
-
item1
-
l
">
<div class="
culture
-
d
-
item1
-
l
">
<img src="
{{
asset
(
$data
->
img_path
)}}
" id="
imgId
">
@if(
$language_type
== 1)
<img src="
{{
asset
(
'images/da7df3b075f8ad172215866ea59e06c1.png'
)}}
" id="
imgId
">
@else
<img src="
{{
asset
(
'images/2536974b87fed7bc17e799bc490c8cc9.jpg'
)}}
" id="
imgId
">
@endif
</div>
</div>
<div class="
culture
-
d
-
item1
-
r
">
<div class="
culture
-
d
-
item1
-
r
">
<div class="
culture
-
d
-
item1
-
t
">
<div class="
culture
-
d
-
item1
-
t
">
...
@@ -60,7 +64,11 @@
...
@@ -60,7 +64,11 @@
<ul class="
clearfix
">
<ul class="
clearfix
">
<li class="
culture
-
item2
-
b1
" name="
6
">
<li class="
culture
-
item2
-
b1
" name="
6
">
<a>
<a>
<img src="
{{
asset
(
$data
->
img_path
)}}
">
@if(
$language_type
== 1)
<img src="
{{
asset
(
'images/da7df3b075f8ad172215866ea59e06c1.png'
)}}
" id="
imgId
">
@else
<img src="
{{
asset
(
'images/2536974b87fed7bc17e799bc490c8cc9.jpg'
)}}
" id="
imgId
">
@endif
<p class="
ell1
">
<p class="
ell1
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
Fashion group brand
Fashion group brand
...
...
resources/views/Index/brand_culture/index.blade.php
View file @
f574fdfb
...
@@ -20,20 +20,7 @@
...
@@ -20,20 +20,7 @@
</
div
>
</
div
>
<
div
class
="
brand
-
item1
" id="
maodian104
">
<
div
class
="
brand
-
item1
" id="
maodian104
">
<div class="
container1
">
<div class="
container1
">
<div class="
brand
-
item1
-
info
" >
<div class="
brand
-
item1
-
info
" >
@if(
$language_type
== 1)
<h1>VISION<small style="
color
:
#cda971">VISION</small></h1>
<
p
>
To
do
the
most
vitality
of
first
-
class
commercial
real
estate
and
real
estate
development
operators
In
the
world
,
the
best
companies
,
not
the
biggest
,
but
the
last
.</
p
>
<
p
>
This
is
the
fashion
group
for
the
success
of
the
attitude
and
the
attitude
of
the
enterprise
,
and
as
a
chi
,
the
pursuit
of
long
-
term
sustainable
development
of
enterprises
and
the
contribution
and
value
of
the
community
.</
p
>
@
else
<
h1
>
愿景
<
small
>
VISION
</
small
></
h1
>
<
p
>
做最有生命力的一流商业地产和旅游地产开发运营商
</
p
>
<
p
>
在全世界
,
那些最好的企业
,
不是最大的
,
而是最长久的
。
</
p
>
<
p
>
这是时尚集团对于成功企业的态度和观点
,
并以此为志
,
追求企业长久的可持续发展及对社会的贡献和价值
。
</
p
>
@
endif
</
div
>
<
div
class
="
brand
-
item1
-
info
" style="
margin
-
top
:-
30
px
;
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<h1>MISSION<small style="
color
:
#cda971">MISSION</small></h1>
<h1>MISSION<small style="
color
:
#cda971">MISSION</small></h1>
<
p
>
Let
fashion
change
the
life
so
that
fashion
fusion
art
to
create
the
possibility
of
fashion
<
p
>
Let
fashion
change
the
life
so
that
fashion
fusion
art
to
create
the
possibility
of
fashion
...
@@ -50,6 +37,19 @@
...
@@ -50,6 +37,19 @@
@
endif
@
endif
</
div
>
</
div
>
<
div
class
="
brand
-
item1
-
info
" style="
margin
-
top
:-
30
px
;
">
@if(
$language_type
== 1)
<h1>VISION<small style="
color
:
#cda971">VISION</small></h1>
<
p
>
To
do
the
most
vitality
of
first
-
class
commercial
real
estate
and
real
estate
development
operators
In
the
world
,
the
best
companies
,
not
the
biggest
,
but
the
last
.</
p
>
<
p
>
This
is
the
fashion
group
for
the
success
of
the
attitude
and
the
attitude
of
the
enterprise
,
and
as
a
chi
,
the
pursuit
of
long
-
term
sustainable
development
of
enterprises
and
the
contribution
and
value
of
the
community
.</
p
>
@
else
<
h1
>
愿景
<
small
>
VISION
</
small
></
h1
>
<
p
>
做最有生命力的一流商业地产和旅游地产开发运营商
</
p
>
<
p
>
在全世界
,
那些最好的企业
,
不是最大的
,
而是最长久的
。
</
p
>
<
p
>
这是时尚集团对于成功企业的态度和观点
,
并以此为志
,
追求企业长久的可持续发展及对社会的贡献和价值
。
</
p
>
@
endif
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
if
(
$language_type
==
1
)
@
if
(
$language_type
==
1
)
...
...
resources/views/Index/group_culture/download.blade.php
View file @
f574fdfb
...
@@ -14,7 +14,11 @@
...
@@ -14,7 +14,11 @@
<div class="
container1
">
<div class="
container1
">
<div class="
culture
-
d
-
item1
-
all
clearfix
">
<div class="
culture
-
d
-
item1
-
all
clearfix
">
<div class="
culture
-
d
-
item1
-
l
">
<div class="
culture
-
d
-
item1
-
l
">
<img src="
{{
asset
(
$data
->
img_path
)}}
" id="
imgId
">
{{-- @if(
$language_type
== 1)--}}
<img src="
{{
asset
(
'images/45394a7c53fba09fe7a3baa2b8b065c2.jpg'
)}}
" alt="">
{{-- @else--}}
{{-- <img src="
{{
asset
(
$data
->
img_path
)}}
">--}}
{{-- @endif--}}
</div>
</div>
<div class="
culture
-
d
-
item1
-
r
">
<div class="
culture
-
d
-
item1
-
r
">
<div class="
culture
-
d
-
item1
-
t
">
<div class="
culture
-
d
-
item1
-
t
">
...
@@ -68,7 +72,11 @@
...
@@ -68,7 +72,11 @@
<ul class="
clearfix
">
<ul class="
clearfix
">
<li class="
culture
-
item2
-
b1
" name="
7
">
<li class="
culture
-
item2
-
b1
" name="
7
">
<a>
<a>
<img src="
{{
asset
(
$data
->
img_path
)}}
">
{{-- @if(
$language_type
== 1)--}}
<img src="
{{
asset
(
'images/45394a7c53fba09fe7a3baa2b8b065c2.jpg'
)}}
" alt="">
{{-- @else--}}
{{-- <img src="
{{
asset
(
$data
->
img_path
)}}
">--}}
{{-- @endif--}}
<p class="
ell1
">
<p class="
ell1
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
时尚集团年报
时尚集团年报
...
...
resources/views/Index/group_culture/index.blade.php
View file @
f574fdfb
...
@@ -65,17 +65,17 @@
...
@@ -65,17 +65,17 @@
<div class="
culture
-
item2
-
b
">
<div class="
culture
-
item2
-
b
">
<ul class="
clearfix
">
<ul class="
clearfix
">
<li class="
culture
-
item2
-
b1
" >
<li class="
culture
-
item2
-
b1
" >
@if(
$language_type
== 1)
{{-- @if(
$language_type
== 1)--}}
<a href="
{{
route
(
'endownload_report'
)
}}
">
{{-- <a href="
{{
route
(
'endownload_report'
)
}}
">--}}
<img src="
{{
asset
(
'images/45394a7c53fba09fe7a3baa2b8b065c2.jpg'
)}}
">
{{-- <img src="
{{
asset
(
'images/da7df3b075f8ad172215866ea59e06c1.png'
)}}
">--}}
<p class="
ell1
">时尚集团年报</p>
{{-- <p class="
ell1
">时尚集团年报</p>--}}
</a>
{{-- </a>--}}
@else
{{-- @else--}}
<a href="
{{
route
(
'download_report'
)
}}
">
<a href="
{{
route
(
'download_report'
)
}}
">
<img src="
{{
asset
(
'images/45394a7c53fba09fe7a3baa2b8b065c2.jpg'
)}}
">
<img src="
{{
asset
(
'images/45394a7c53fba09fe7a3baa2b8b065c2.jpg'
)}}
">
<p class="
ell1
">时尚集团年报</p>
<p class="
ell1
">时尚集团年报</p>
</a>
</a>
@endif
{{-- @endif--}}
</li>
</li>
...
...
resources/views/Index/index.blade.php
View file @
f574fdfb
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
</a>
</a>
@else
@else
<a href="
{{
$val
->
anchor
}}
">
<a href="
{{
$val
->
anchor
}}
">
<img src="
{{
asset
(
'images/
5bca7601c5c3035a2093853e118bdb17
.png'
)}}
">
<img src="
{{
asset
(
'images/
ea1b4947d173a224e8dcbca0549db8a2
.png'
)}}
">
</a>
</a>
@endif
@endif
</div>
</div>
...
@@ -417,25 +417,28 @@
...
@@ -417,25 +417,28 @@
<div class="
page11
-
b
-
info
">
<div class="
page11
-
b
-
info
">
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<p>Shenzhen maichao commercial operation Co Ltd</p>
<p>Shenzhen City,a super business operations limited liability company
Shenzhen City super commercial limited liability company
</p>
{{-- <p>Shenzhen City super commercial limited liability company</p>--}}
@else
@else
<p>深圳市迈超商业运营有限责任公司</p>
<p>深圳市迈超商业运营有限责任公司</p>
@endif
@endif
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<p>Address:
entrance / exit a, Huaxin station, Huaqiangbei Metro Line 3 (Longgang line), Futian District, Shenzhen
</p>
<p>Address:
Shenzhen City,Futian District Huaqiang North Metro line three (Longgang line) Huaxin station A port
</p>
@else
@else
<p>地址:深圳市福田区华强北地铁三号线(龙岗线)华新站A口</p>
<p>地址:深圳市福田区华强北地铁三号线(龙岗线)华新站A口</p>
@endif
@endif
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<p>Telephone:<a href="
tel
:
">0755-82
839309
</a></p>
<p>Telephone:<a href="
tel
:
">0755-82
772371
</a></p>
@else
@else
<p>电话:<a href="
tel
:
">0755-82839309</a></p>
<p>电话:<a href="
tel
:
">0755-82839309</a></p>
@endif
@endif
@if(
$language_type
== 1)
@if(
$language_type
== 1)
<p>Website:<a href="
http
://
www
.
fashiongroup
.
com
.
cn
">http://www.fashiongroup.com.cn</a></p>
{{-- <p>Website:<a href="
http
://
www
.
fashiongroup
.
com
.
cn
">http://www.fashiongroup.com.cn</a></p>--}}
@else
@else
<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>
@endif
@endif
...
...
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