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
2bedd331
Commit
2bedd331
authored
Feb 26, 2021
by
Gakki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
物业收费标准 修改
parent
e93cc576
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
35 deletions
+33
-35
xuhuiRoutes.json
src/router/xuhuiRoutes.json
+3
-19
feeStandard.vue
src/views/houseData/feeStandard.vue
+27
-13
propertyInfoView.vue
src/views/houseData/propertyInfoView.vue
+3
-3
No files found.
src/router/xuhuiRoutes.json
View file @
2bedd331
{
{
"Layout"
:
[
"Layout"
:
[
{
{
"path"
:
"/order/disposal"
,
"name"
:
"Disposal"
,
"path"
:
"/question/month"
,
"name"
:
"month"
,
"meta"
:
{
"title"
:
"处置单列表"
,
"menuPath"
:
false
,
"menuIcon"
:
"profile"
,
"hideInBread"
:
false
},
"children"
:[
{
"path"
:
"/order/disposal/disposalList"
,
"name"
:
"disposalList"
,
"meta"
:
{
"title"
:
"处置单列表"
,
"menuPath"
:
false
,
"menuIcon"
:
"profile"
,
"hideInBread"
:
false
},
"children"
:
[
{
"path"
:
"/order/disposal/disposalView/:id"
,
"name"
:
"DisposalView"
,
"meta"
:
{
"title"
:
"处置单详情"
,
"menuPath"
:
false
,
"hideInBread"
:
false
}
}
]
}
]
},
{
"path"
:
"/order/month"
,
"name"
:
"month"
,
"meta"
:
{
"title"
:
"检查单"
,
"menuIcon"
:
"profile"
,
"menuPath"
:
false
,
"hideInBread"
:
false
},
"meta"
:
{
"title"
:
"检查单"
,
"menuIcon"
:
"profile"
,
"menuPath"
:
false
,
"hideInBread"
:
false
},
"children"
:[
"children"
:[
{
{
"path"
:
"/
order
/month/monthList"
,
"name"
:
"month"
,
"path"
:
"/
question
/month/monthList"
,
"name"
:
"month"
,
"meta"
:
{
"title"
:
"房办月查列表"
,
"menuIcon"
:
"profile"
,
"menuPath"
:
false
,
"hideInBread"
:
false
},
"meta"
:
{
"title"
:
"房办月查列表"
,
"menuIcon"
:
"profile"
,
"menuPath"
:
false
,
"hideInBread"
:
false
},
"children"
:
[
"children"
:
[
{
{
"path"
:
"/
order
/month/monthInfo"
,
"name"
:
"monthInfo"
,
"path"
:
"/
question
/month/monthInfo"
,
"name"
:
"monthInfo"
,
"meta"
:
{
"title"
:
"检查详情"
,
"menuPath"
:
false
,
"hideInBread"
:
false
}
"meta"
:
{
"title"
:
"检查详情"
,
"menuPath"
:
false
,
"hideInBread"
:
false
}
}
}
]
]
...
...
src/views/houseData/feeStandard.vue
View file @
2bedd331
...
@@ -35,6 +35,14 @@
...
@@ -35,6 +35,14 @@
<span
slot=
"charges"
slot-scope=
"text, record"
>
<span
slot=
"charges"
slot-scope=
"text, record"
>
{{
changeMeaning
(
'charges'
,
record
.
charges
)
}}
{{
changeMeaning
(
'charges'
,
record
.
charges
)
}}
</span>
</span>
<span
slot=
"area"
slot-scope=
"text, record"
>
{{
text
+
`(㎡)`
}}
</span>
<span
slot=
"charges"
slot-scope=
"text, record"
>
{{
text
+
`(元/月·㎡)`
}}
</span>
</a-table>
</a-table>
</div>
</div>
</div>
</div>
...
@@ -50,11 +58,11 @@ export default {
...
@@ -50,11 +58,11 @@ export default {
return
{
return
{
columns
:
[
// 表格展示的列
columns
:
[
// 表格展示的列
{
{
title
:
'
是否较前一份物业服务合同调整过物业服务费
'
,
title
:
'
建筑类型
'
,
dataIndex
:
'
changedCosts
'
,
dataIndex
:
'
buildingType
'
,
key
:
'
changedCosts
'
,
key
:
'
buildingType
'
,
scopedSlots
:
{
scopedSlots
:
{
customRender
:
'
changedCosts
'
customRender
:
'
buildingType
'
}
}
},
},
{
{
...
@@ -66,11 +74,11 @@ export default {
...
@@ -66,11 +74,11 @@ export default {
}
}
},
},
{
{
title
:
'
建筑类型
'
,
title
:
'
是否较前一份物业服务合同调整过物业服务费
'
,
dataIndex
:
'
buildingType
'
,
dataIndex
:
'
changedCosts
'
,
key
:
'
buildingType
'
,
key
:
'
changedCosts
'
,
scopedSlots
:
{
scopedSlots
:
{
customRender
:
'
buildingType
'
customRender
:
'
changedCosts
'
}
}
},
},
{
{
...
@@ -89,15 +97,21 @@ export default {
...
@@ -89,15 +97,21 @@ export default {
customRender
:
'houseUse'
customRender
:
'houseUse'
}
}
},
},
{
title
:
'物业费收费标准'
,
dataIndex
:
'charges'
,
key
:
'charges'
,
},
{
{
title
:
'可收费面积'
,
title
:
'可收费面积'
,
dataIndex
:
'area'
,
dataIndex
:
'area'
,
key
:
'area'
,
key
:
'area'
,
scopedSlots
:
{
customRender
:
'area'
}
},
{
title
:
'物业费收费标准'
,
dataIndex
:
'charges'
,
key
:
'charges'
,
scopedSlots
:
{
customRender
:
'charges'
}
},
},
{
{
title
:
'可收费户数/车位数(个)'
,
title
:
'可收费户数/车位数(个)'
,
...
...
src/views/houseData/propertyInfoView.vue
View file @
2bedd331
...
@@ -295,7 +295,7 @@
...
@@ -295,7 +295,7 @@
</a-row>
</a-row>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
<a-col
span=
"24"
>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"项目
经理手机号"'
:text=
'detail.csmPhone
'
/>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"项目
总自然幢数"'
:text=
'detail.stTotBuilds
'
/>
</a-col>
</a-col>
</a-row>
</a-row>
</a-col>
</a-col>
...
@@ -312,7 +312,7 @@
...
@@ -312,7 +312,7 @@
</a-row>
</a-row>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
<a-col
span=
"24"
>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"项目
总建筑面积类型"'
:text=
'detail.stCnstAreaTypeNam
e'
/>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"项目
类型"'
:text=
'detail.stUseTyp
e'
/>
</a-col>
</a-col>
</a-row>
</a-row>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
...
@@ -347,7 +347,7 @@
...
@@ -347,7 +347,7 @@
</a-row>
</a-row>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-col
span=
"24"
>
<a-col
span=
"24"
>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"项目
总自然幢数"'
:text=
'detail.stTotBuilds
'
/>
<DetailsItem
:labelSpan=
'12'
:textSpan=
"12"
:label=
'"项目
经理手机号"'
:text=
'detail.csmPhone
'
/>
</a-col>
</a-col>
</a-row>
</a-row>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
<a-row
type=
"flex"
justify=
"start"
class=
"detailsPartLine"
>
...
...
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