Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mobi
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
wbx-PCAndMobi
mobi
Commits
cc9393f6
Commit
cc9393f6
authored
Dec 18, 2020
by
程卓
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into xuhui
parents
4b2ae778
e7b9db3c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
328 additions
and
2 deletions
+328
-2
routes.js
src/router/routes.js
+11
-0
api.js
src/server/api.js
+7
-1
neighborhoodCommittees.vue
src/views/houseData/neighborhoodCommittees.vue
+274
-0
propertyInfoView.vue
src/views/houseData/propertyInfoView.vue
+36
-1
No files found.
src/router/routes.js
View file @
cc9393f6
...
...
@@ -131,6 +131,16 @@ const appRoutes = [
},
]
},
{
//居委会列表
path
:
'/houseData/neighborhoodCommittees'
,
name
:
'neighborhoodCommittees'
,
component
:
resolve
=>
require
([
'@/views/houseData/neighborhoodCommittees'
],
resolve
),
//neighborhoodCommittees,
meta
:
{
title
:
'居委会信息列表'
,
menuPath
:
true
,
hideInBread
:
false
,
},
children
:
[
{
path
:
'/houseData/neighborhoodCommittees/:id'
,
name
:
'neighborhoodCommitteesView'
,
component
:
resolve
=>
require
([
'@/views/houseData/propertyInfoView'
],
resolve
),
//PropertyInfoView,
meta
:
{
title
:
'居委会详细情况'
,
menuPath
:
false
,
hideInBread
:
false
,
},
},
]
},
]
},
{
...
...
@@ -149,6 +159,7 @@ const appRoutes = [
},
]
},
],
},
{
...
...
src/server/api.js
View file @
cc9393f6
...
...
@@ -52,7 +52,8 @@ case 'huangpu-prod':
default
:
// 默认环境下(开发环境)
// BASE_URL = 'http://31.0.161.39/apiv2'
BASE_URL
=
'http://211.136.105.193/apiv2'
// BASE_URL = 'http://211.136.105.193/apiv2'
BASE_URL
=
'http://pudong.hm.omniview.pro/api'
// MOCK_URL = 'https://yapi.omniview.pro/mock/278'
break
...
...
@@ -143,6 +144,11 @@ export default {
// 首页统计列表
POST_LOGIN
:
'/service-user/public/login'
,
// 居委会列表
GET_NEI_LIST
:
'/service-basicdatasync-ddd/residentsCommittees'
,
// 居委会详情
GET_NEI_ID
:
'/service-basicdatasync-ddd/residentsCommittees/{id}'
,
/**
* SSO
*/
...
...
src/views/houseData/neighborhoodCommittees.vue
0 → 100644
View file @
cc9393f6
This diff is collapsed.
Click to expand it.
src/views/houseData/propertyInfoView.vue
View file @
cc9393f6
<
template
>
<div
class=
"routerWapper"
>
<div
v-if=
"urls.name == 'memberView' ||'cmDivisionView' || 'propertyInfoView' || 'indCouView' || 'nonResidentsView' || 'managerView' || 'buildingView'"
class=
"portalDetailWapper"
>
<div
v-if=
"urls.name == 'memberView' ||'cmDivisionView' || 'propertyInfoView' || 'indCouView' || 'nonResidentsView' || 'managerView' || 'buildingView'
||'neighborhoodCommitteesView'
"
class=
"portalDetailWapper"
>
<div
class=
"portalDetailContentWapper"
>
<div
class=
"portalDetailTitle"
>
<span
class=
"title"
>
详情
</span>
...
...
@@ -20,6 +20,7 @@
<p
v-if=
"urls.name == 'managerView'"
class=
"detailsPartTitle"
>
小区经理信息
</p>
<p
v-if=
"urls.name == 'buildingView'"
class=
"detailsPartTitle"
>
小区楼栋信息
</p>
<p
v-if=
"urls.name == 'memberView'"
class=
"detailsPartTitle"
>
成员信息
</p>
<p
v-if=
"urls.name == 'neighborhoodCommitteesView'"
class=
"detailsPartTitle"
>
业委会信息
</p>
<div
style=
"margin:0 16px;"
>
<!-- 物业 -->
<div
v-if=
"urls.name == 'propertyInfoView' "
>
...
...
@@ -591,6 +592,35 @@
</a-col>
</a-row>
</a-col>
</a-row>
<!-- 居委会 -->
<a-row
v-if=
"urls.name == 'neighborhoodCommitteesView'"
type=
"flex"
justify=
"start"
>
<a-col
span=
"8"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"居委会名称"'
:text=
'detail.cmtName'
/>
</a-col>
</a-row>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"居委会地址"'
:text=
'detail.cmtAddr'
/>
</a-col>
</a-row>
</a-col>
<a-col
span=
"8"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"居委会主任姓名"'
:text=
'detail.cmtDirectorName'
/>
</a-col>
</a-row>
</a-col>
<a-col
span=
"8"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"居委书记姓名"'
:text=
'detail.cmtSecretaryName'
/>
</a-col>
</a-row>
</a-col>
</a-row>
</div>
</div>
...
...
@@ -872,6 +902,10 @@ export default {
this
.
newUrl
=
this
.
$api
.
GET_MEMBER_ID
.
replace
(
'{id}'
,
this
.
$route
.
params
.
id
)
this
.
tbl
=
'tbl_ic_member'
break
case
'neighborhoodCommitteesView'
:
this
.
newUrl
=
this
.
$api
.
GET_NEI_ID
.
replace
(
'{id}'
,
this
.
$route
.
params
.
id
)
this
.
tbl
=
'tbl_ic_member'
break
default
:
break
}
...
...
@@ -885,6 +919,7 @@ export default {
if
(
res
.
code
==
200
)
{
//先获取全部的自定义字段列表
this
.
extList
=
this
.
$com
.
confirm
(
res
,
'data.content'
,
[])
console
.
log
(
this
.
extList
)
this
.
getList
()
}
})
...
...
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