Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
B
bjgee
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
shangbj
bjgee
Commits
9584f002
Commit
9584f002
authored
Aug 07, 2018
by
shangbj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
1ff49303
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
123 additions
and
31 deletions
+123
-31
common.scss
assets/css/common.scss
+7
-1
FooterBar.vue
components/FooterBar.vue
+4
-1
index.vue
pages/engineering/drinkingWater/index.vue
+13
-3
index.vue
pages/engineering/hospitalSewage/index.vue
+13
-3
index.vue
pages/engineering/mediumWater/index.vue
+13
-3
index.vue
pages/news/index.vue
+14
-4
index.vue
pages/product/disinfectant/index.vue
+13
-3
index.vue
pages/product/equipment/index.vue
+13
-3
index.vue
pages/product/index.vue
+3
-0
index.vue
pages/product/ozonizer/index.vue
+13
-3
index.vue
pages/qualifications/index.vue
+13
-3
index.js
store/index.js
+4
-4
No files found.
assets/css/common.scss
View file @
9584f002
...
@@ -120,7 +120,7 @@ ul, li, form, dd, dt, dl {
...
@@ -120,7 +120,7 @@ ul, li, form, dd, dt, dl {
width
:
690px
;
width
:
690px
;
margin
:
0
auto
;
margin
:
0
auto
;
li
{
li
{
height
:
28px
;
min-
height
:
28px
;
line-height
:
28px
;
line-height
:
28px
;
font-size
:
12px
;
font-size
:
12px
;
background
:
url(~/assets/images/11019922.gif)
repeat-x
left
bottom
;
background
:
url(~/assets/images/11019922.gif)
repeat-x
left
bottom
;
...
@@ -136,7 +136,13 @@ ul, li, form, dd, dt, dl {
...
@@ -136,7 +136,13 @@ ul, li, form, dd, dt, dl {
height
:
28px
;
height
:
28px
;
background
:
url(~/assets/images/11019911.gif)
no-repeat
center
center
;
background
:
url(~/assets/images/11019911.gif)
no-repeat
center
center
;
}
}
.contentTime
{
display
:inline-block
;
}
a
{
a
{
&
.itemTitle
{
margin-right
:
15px
;
}
color
:
#004483
;
color
:
#004483
;
}
}
}
}
...
...
components/FooterBar.vue
View file @
9584f002
<
template
>
<
template
>
<div
class=
"footer"
>
版权所有
<a
href=
"/html/folder/2208297-1.htm"
>
北京天绿恒力科技有限公司
</a>
<a
href=
"http://www.miitbeian.gov.cn/"
target=
"_blank"
>
京ICP备18028316号-1
</a>
京公网安备11010802013435号
</div>
<div
class=
"footer"
>
版权所有
北京天绿恒力科技有限公司
<a
href=
"http://www.miitbeian.gov.cn/"
target=
"_blank"
>
京ICP备18028316号-1
</a>
京公网安备11010802013435号
</div>
</
template
>
</
template
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
...
@@ -11,5 +11,8 @@
...
@@ -11,5 +11,8 @@
color
:
#000
;
color
:
#000
;
margin
:
10px
0px
20px
0px
;
margin
:
10px
0px
20px
0px
;
text-align
:
left
;
text-align
:
left
;
a
{
color
:
#00f
;
}
}
}
</
style
>
</
style
>
pages/engineering/drinkingWater/index.vue
View file @
9584f002
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"currently-node"
><div>
饮用水消毒
</div></div>
<div
class=
"currently-node"
><div>
饮用水消毒
</div></div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in data"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in data
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/engineering/drinkingWater/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/engineering/drinkingWater/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
</li>
</li>
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"data.length"
>
:total=
"data.length"
>
</el-pagination>
</el-pagination>
...
@@ -25,12 +26,21 @@ export default {
...
@@ -25,12 +26,21 @@ export default {
data
(){
data
(){
return
{
return
{
data
:
this
.
$store
.
state
.
engineering
.
data
.
drinkingWater
.
data
,
data
:
this
.
$store
.
state
.
engineering
.
data
.
drinkingWater
.
data
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
pages/engineering/hospitalSewage/index.vue
View file @
9584f002
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"currently-node"
><div>
医院污水消毒
</div></div>
<div
class=
"currently-node"
><div>
医院污水消毒
</div></div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in data"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in data
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/engineering/hospitalSewage/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/engineering/hospitalSewage/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
</li>
</li>
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"data.length"
>
:total=
"data.length"
>
</el-pagination>
</el-pagination>
...
@@ -25,12 +26,21 @@ export default {
...
@@ -25,12 +26,21 @@ export default {
data
(){
data
(){
return
{
return
{
data
:
this
.
$store
.
state
.
engineering
.
data
.
hospitalSewage
.
data
,
data
:
this
.
$store
.
state
.
engineering
.
data
.
hospitalSewage
.
data
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
pages/engineering/mediumWater/index.vue
View file @
9584f002
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"currently-node"
>
中水消毒
</div>
<div
class=
"currently-node"
>
中水消毒
</div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in data"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in data
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/engineering/mediumWater/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/engineering/mediumWater/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
</li>
</li>
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"data.length"
>
:total=
"data.length"
>
</el-pagination>
</el-pagination>
...
@@ -25,12 +26,21 @@ export default {
...
@@ -25,12 +26,21 @@ export default {
data
(){
data
(){
return
{
return
{
data
:
this
.
$store
.
state
.
engineering
.
data
.
mediumWater
.
data
,
data
:
this
.
$store
.
state
.
engineering
.
data
.
mediumWater
.
data
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
pages/news/index.vue
View file @
9584f002
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
<div
class=
"currently-node"
>
新闻动态
</div>
<div
class=
"currently-node"
>
新闻动态
</div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in newData"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in newData
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/news/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/news/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
</li>
</li>
</ul>
</ul>
</div>
</div>
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"newData.length"
>
:total=
"newData.length"
>
</el-pagination>
</el-pagination>
...
@@ -25,12 +26,21 @@ export default {
...
@@ -25,12 +26,21 @@ export default {
data
(){
data
(){
return
{
return
{
newData
:
this
.
$store
.
state
.
news
.
newsData
,
newData
:
this
.
$store
.
state
.
news
.
newsData
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
pages/product/disinfectant/index.vue
View file @
9584f002
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"currently-node"
><div>
水木兰二氧化氯消毒粉
</div></div>
<div
class=
"currently-node"
><div>
水木兰二氧化氯消毒粉
</div></div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in data"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in data
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/product/disinfectant/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/product/disinfectant/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
</li>
</li>
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"data.length"
>
:total=
"data.length"
>
</el-pagination>
</el-pagination>
...
@@ -25,12 +26,21 @@ export default {
...
@@ -25,12 +26,21 @@ export default {
data
(){
data
(){
return
{
return
{
data
:
this
.
$store
.
state
.
product
.
data
.
disinfectant
.
data
,
data
:
this
.
$store
.
state
.
product
.
data
.
disinfectant
.
data
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
pages/product/equipment/index.vue
View file @
9584f002
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"currently-node"
><div>
绿恒二氧化氯消毒设备
</div></div>
<div
class=
"currently-node"
><div>
绿恒二氧化氯消毒设备
</div></div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in data"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in data
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/product/equipment/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/product/equipment/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
</li>
</li>
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"data.length"
>
:total=
"data.length"
>
</el-pagination>
</el-pagination>
...
@@ -25,12 +26,21 @@ export default {
...
@@ -25,12 +26,21 @@ export default {
data
(){
data
(){
return
{
return
{
data
:
this
.
$store
.
state
.
product
.
data
.
equipment
.
data
,
data
:
this
.
$store
.
state
.
product
.
data
.
equipment
.
data
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
pages/product/index.vue
View file @
9584f002
...
@@ -31,6 +31,9 @@ export default {
...
@@ -31,6 +31,9 @@ export default {
ProductImgList
,
ProductImgList
,
ContactUs
,
ContactUs
,
},
},
beforeCreate
(){
window
.
location
.
href
=
"/product/equipment"
}
}
}
</
script
>
</
script
>
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
...
...
pages/product/ozonizer/index.vue
View file @
9584f002
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"currently-node"
><div>
臭氧发生器
</div></div>
<div
class=
"currently-node"
><div>
臭氧发生器
</div></div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in data"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in data
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/product/ozonizer/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/product/ozonizer/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
<span
class=
"contentTime"
>
{{
item
.
time
}}
</span>
</li>
</li>
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"data.length"
>
:total=
"data.length"
>
</el-pagination>
</el-pagination>
...
@@ -25,12 +26,21 @@ export default {
...
@@ -25,12 +26,21 @@ export default {
data
(){
data
(){
return
{
return
{
data
:
this
.
$store
.
state
.
product
.
data
.
ozonizer
.
data
,
data
:
this
.
$store
.
state
.
product
.
data
.
ozonizer
.
data
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
pages/qualifications/index.vue
View file @
9584f002
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"currently-node"
>
荣誉资质
</div>
<div
class=
"currently-node"
>
荣誉资质
</div>
<div
class=
"currently-list"
>
<div
class=
"currently-list"
>
<ul>
<ul>
<li
class=
"listItem"
v-for=
"(item, index) in data"
:key=
"index"
>
<li
class=
"listItem"
v-for=
"(item, index) in data
.slice(startPage,endPage)
"
:key=
"index"
>
<nuxt-link
:to=
"'/qualifications/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
<nuxt-link
:to=
"'/qualifications/' + item.id"
class=
"itemTitle"
>
{{
item
.
title
}}
</nuxt-link>
</li>
</li>
</ul>
</ul>
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
layout=
"prev, pager, next"
layout=
"prev, pager, next"
prev-text=
"上一页"
prev-text=
"上一页"
next-text=
"下一页"
next-text=
"下一页"
:page-size=
"pageSize"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
:total=
"data.length"
>
:total=
"data.length"
>
</el-pagination>
</el-pagination>
...
@@ -24,12 +25,21 @@ export default {
...
@@ -24,12 +25,21 @@ export default {
data
(){
data
(){
return
{
return
{
data
:
this
.
$store
.
state
.
qualifications
.
data
,
data
:
this
.
$store
.
state
.
qualifications
.
data
,
currentPage
:
1
pageSize
:
20
,
currentPage
:
1
,
}
},
computed
:{
startPage
(){
return
this
.
pageSize
*
(
this
.
currentPage
-
1
);
},
endPage
(){
return
this
.
startPage
+
this
.
pageSize
;
}
}
},
},
methods
:{
methods
:{
handleCurrentChange
(
val
){
handleCurrentChange
(
val
){
console
.
log
(
`当前页:
${
val
}
`
)
this
.
currentPage
=
val
}
}
}
}
}
}
...
...
store/index.js
View file @
9584f002
...
@@ -2,7 +2,7 @@ export const state = () => ({
...
@@ -2,7 +2,7 @@ export const state = () => ({
engineeringData
:[
engineeringData
:[
{
{
title
:
'北京朝阳区农村改水'
,
title
:
'北京朝阳区农村改水'
,
url
:
'
#
'
url
:
'
/engineering/drinkingWater/37
'
},
},
{
{
title
:
'北京市海淀区农村改水'
,
title
:
'北京市海淀区农村改水'
,
...
@@ -38,15 +38,15 @@ export const state = () => ({
...
@@ -38,15 +38,15 @@ export const state = () => ({
},
},
{
{
title
:
'北京豆各庄水厂'
,
title
:
'北京豆各庄水厂'
,
url
:
'
#
'
url
:
'
/engineering/drinkingWater/36
'
},
},
{
{
title
:
'北京航天城供水站'
,
title
:
'北京航天城供水站'
,
url
:
'
#
'
url
:
'
/engineering/drinkingWater/33
'
},
},
{
{
title
:
'北京楼梓庄水厂'
,
title
:
'北京楼梓庄水厂'
,
url
:
'
#
'
url
:
'
/engineering/drinkingWater/35
'
},
},
{
{
title
:
'珠海三灶国际机场'
,
title
:
'珠海三灶国际机场'
,
...
...
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