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
1577c08f
Commit
1577c08f
authored
Jan 07, 2021
by
Gakki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
根据小区经理查小区列表
parent
a8881310
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
17 deletions
+18
-17
home.vue
src/views/home.vue
+2
-2
indCous.vue
src/views/houseData/indCous.vue
+1
-4
propertyInfoView.vue
src/views/houseData/propertyInfoView.vue
+15
-11
No files found.
src/views/home.vue
View file @
1577c08f
...
...
@@ -980,10 +980,10 @@ export default {
})
},
handleExpired
()
{
this
.
$router
.
push
({
name
:
'indCous'
,
query
:
{
type
:
'expired'
,
date
:
(
this
.
$moment
().
format
(
'L'
)).
split
(
'/'
).
join
(
''
)}})
this
.
$router
.
push
({
name
:
'indCous'
,
query
:
{
date
:
(
this
.
$moment
().
format
(
'L'
)).
split
(
'/'
).
join
(
''
)}})
},
handleWillExpire
()
{
this
.
$router
.
push
({
name
:
'indCous'
,
query
:
{
type
:
'willExpire'
,
date
:
(
this
.
$moment
().
add
(
'months'
,
5
).
format
(
'L'
)).
split
(
'/'
).
join
(
''
)}})
this
.
$router
.
push
({
name
:
'indCous'
,
query
:
{
date
:
(
this
.
$moment
().
add
(
'months'
,
5
).
format
(
'L'
)).
split
(
'/'
).
join
(
''
)}})
},
/**
* 去投诉
...
...
src/views/houseData/indCous.vue
View file @
1577c08f
...
...
@@ -198,6 +198,7 @@ export default {
mounted
(){
if
(
this
.
$route
.
name
==
'indCous'
)
{
this
.
$nextTick
(
function
()
{
this
.
form
.
setFieldsValue
({
'overdueDate'
:
this
.
$route
.
query
.
date
})
this
.
getSearchParams
()
this
.
getStreet
()
})
...
...
@@ -239,10 +240,6 @@ export default {
}
this
.
$set
(
obj
,
item
,
value
)
})
if
(
!!
this
.
$router
.
query
)
{
alert
(
'a'
)
}
const
searchParams
=
Object
.
assign
({},
{
'hocCode_l'
:
this
.
form
.
getFieldValue
(
'hocCode_l'
)
||
''
,
'hocName_l'
:
this
.
form
.
getFieldValue
(
'hocName_l'
)
||
''
,
...
...
src/views/houseData/propertyInfoView.vue
View file @
1577c08f
...
...
@@ -108,15 +108,6 @@
</a-row>
</a-col>
</a-row>
<div>
<p
style=
" text-align: left; font-weight: bold; color: #232323; font-size: 16px; text-indent: 0.5rem;
line-height: 60px; border-bottom: 1px solid #e0e0e0; margin-top: 20px;"
>
管理小区列表
</p>
<a-table
class=
"elevator-table portalTable propertyInfoViewTable"
:dataSource=
"tableData"
:columns=
"columns"
size=
"small"
:pagination=
"pagination"
rowKey=
"id"
bordered
>
</a-table>
</div>
</div>
<!-- 小区管理处 -->
<a-row
v-if=
"urls.name == 'cmDivisionView'"
type=
"flex"
justify=
"start"
>
...
...
@@ -175,6 +166,7 @@
</a-row>
<!-- 小区经理 -->
<a-row
v-if=
"urls.name == 'managerView'"
type=
"flex"
justify=
"start"
>
<a-row>
<a-col
span=
"8"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
...
...
@@ -226,6 +218,17 @@
</a-col>
</a-row>
</a-col>
</a-row>
<a-row
style=
"width: 100%"
>
<div>
<p
style=
" text-align: left; font-weight: bold; color: #232323; font-size: 16px; text-indent: 0.5rem;
line-height: 60px; border-bottom: 1px solid #e0e0e0; margin-top: 20px;"
>
管理小区列表
</p>
<a-table
:dataSource=
"tableData"
:columns=
"columns"
size=
"large"
:pagination=
"pagination"
rowKey=
"id"
bordered
>
</a-table>
</div>
</a-row>
</a-row>
<!-- 非居信息 -->
<a-row
v-if=
"urls.name == 'nonResidentsView'"
type=
"flex"
justify=
"start"
>
...
...
@@ -845,13 +848,14 @@ export default {
}
},
mounted
()
{
this
.
getStList
()
},
methods
:
{
getStList
(){
this
.
$ajax
.
get
({
url
:
this
.
$api
.
GET_BASIC_LIST
,
params
:
{
cspId
:
this
.
$route
.
query
.
id
,
'c.csmId'
:
this
.
$route
.
query
.
id
,
pageSize
:
10
,
pageNo
:
this
.
pagination
.
pageNo
}
...
...
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