Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pc
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
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
wbx-PCAndMobi
pc
Commits
d7fa6acd
Commit
d7fa6acd
authored
Dec 28, 2020
by
蒋金城
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into xuhui
parents
59376f5f
cc7ed320
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
576 additions
and
3 deletions
+576
-3
routes.js
src/router/routes.js
+10
-0
api.js
src/server/api.js
+4
-0
tableAndMut.vue
src/views/components/tableAndMut.vue
+2
-2
nonBuildingInfo.vue
src/views/houseData/nonBuildingInfo.vue
+0
-0
nonBuildingList.vue
src/views/houseData/nonBuildingList.vue
+335
-0
nonResidents.vue
src/views/houseData/nonResidents.vue
+3
-0
propertyInfoView.vue
src/views/houseData/propertyInfoView.vue
+222
-1
No files found.
src/router/routes.js
View file @
d7fa6acd
...
...
@@ -155,6 +155,16 @@ const appRoutes = [
path
:
'/houseData/nonResident/:id'
,
name
:
'nonResidentsView'
,
component
:
resolve
=>
require
([
'@/views/houseData/propertyInfoView'
],
resolve
),
//PropertyInfoView,
meta
:
{
title
:
'非居详细情况'
,
menuPath
:
false
,
hideInBread
:
false
,
}
},
{
path
:
'/houseData/nonBuildingList'
,
name
:
'nonBuildingList'
,
component
:
resolve
=>
require
([
'@/views/houseData/nonBuildingList'
],
resolve
),
//PropertyInfoView,
meta
:
{
title
:
'非居门牌幢列表'
,
menuPath
:
false
,
hideInBread
:
false
,
},
children
:
[
{
path
:
'/houseData/nonBuildingList/nonBuildingInfo/:id'
,
name
:
'nonBuildingInfo'
,
component
:
resolve
=>
require
([
'@/views/houseData/propertyInfoView'
],
resolve
),
//PropertyInfoView,
meta
:
{
title
:
'非居门牌幢详情'
,
menuPath
:
false
,
hideInBread
:
false
,
}
}
]
},
]
},
]
...
...
src/server/api.js
View file @
d7fa6acd
...
...
@@ -127,6 +127,10 @@ export default {
GET_NONRESIDENTS_LIST
:
'/service-basicdatasync-ddd/nonResidents'
,
// 非居详情
GET_NONRESIDENT_ID
:
'/service-basicdatasync-ddd/nonResident/{id}'
,
// 非居门牌幢列表
GET_NONBUILDING_LIST
:
'/service-basicdatasync-ddd/nonResi/buildings'
,
// /service-basicdatasync-ddd/nonResi/buildings
// 非居门牌幢详情
GET_NONBUILDING_ID
:
'/service-basicdatasync-ddd/nonResi/building/{id}'
,
// /service-basicdatasync-ddd/nonResi/building/{id}
// 小区楼栋列表
GET_BUILDINGS_LIST
:
'/service-basicdatasync-ddd/community/buildings'
,
// 小去楼栋详情
...
...
src/views/components/tableAndMut.vue
View file @
d7fa6acd
...
...
@@ -33,7 +33,7 @@
<a-dropdown
:trigger=
"['click']"
v-if=
"customKeyEnable == 'true' || $route.name=='basicInfo' || $route.name=='propertyInfo' || $route.name=='indCous'"
>
<a
class=
"ant-dropdown-link"
href=
"#"
>
| 更多
<a-icon
type=
"down"
/></a>
<a-menu
slot=
"overlay"
>
<a-menu-item
key=
"0"
v-if=
"$route.name == 'basicInfo'"
>
<a-menu-item
key=
"0"
v-if=
"$route.name == 'basicInfo'
|| $route.name == 'nonResidents'
"
>
<a
@
click=
"$parent.toBul(record)"
>
门牌幢
</a>
</a-menu-item>
<!--
<a-menu-item
key=
"1"
v-if=
"$route.name == 'basicInfo'"
>
...
...
@@ -44,7 +44,7 @@
</a-menu-item>
<a-menu-item
key=
"3"
v-if=
"$route.name == 'propertyInfo'"
>
<a
@
click=
"$parent.toList(record.cspId)"
>
小区列表
</a>
</a-menu-item>
</a-menu-item>
<a-menu-item
key=
"4"
v-if=
"customKeyEnable == 'true'"
>
<a
@
click=
"showModal(record)"
>
拓展信息维护
</a>
</a-menu-item>
...
...
src/views/houseData/nonBuildingInfo.vue
0 → 100644
View file @
d7fa6acd
src/views/houseData/nonBuildingList.vue
0 → 100644
View file @
d7fa6acd
This diff is collapsed.
Click to expand it.
src/views/houseData/nonResidents.vue
View file @
d7fa6acd
...
...
@@ -330,6 +330,9 @@ export default {
newUrl
+=
'&token='
+
token
window
.
open
(
this
.
$api
.
BASE_URL
+
'/service-basicdatasync-ddd/export/'
+
newUrl
)
},
toBul
(
record
){
//到非居门牌幢列表
this
.
$router
.
push
({
path
:
'/houseData/nonBuildingList'
,
query
:
{
nrStId
:
record
.
id
,
stName
:
record
.
stName
}})
},
},
}
</
script
>
...
...
src/views/houseData/propertyInfoView.vue
View file @
d7fa6acd
This diff is collapsed.
Click to expand it.
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