Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
T
total-platform
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
物业总平台
total-platform
Commits
972750af
提交
972750af
authored
7月 27, 2023
作者:
宋雄
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改bug
上级
c7708c82
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
26 行增加
和
11 行删除
+26
-11
IndexChart.vue
src/views/dashboard/IndexChart.vue
+24
-9
PropertyDetails.vue
src/views/settled/PropertyDetails.vue
+1
-1
communityDetails.vue
src/views/settled/community/communityDetails.vue
+1
-1
没有找到文件。
src/views/dashboard/IndexChart.vue
浏览文件 @
972750af
...
...
@@ -48,11 +48,20 @@
<h3
class=
"box-title"
>
待处理事务(入驻待审核)
</h3>
<div
class=
"content"
v-if=
"waitAuditList.length > 0"
>
<div
class=
"item"
v-for=
"(item, index) in waitAuditList"
:key=
"index"
>
<p>
入驻物业集团名称:
{{
item
.
propertyName
}}
</p>
<p>
申请入驻小区数量:
{{
item
.
empowerCommunityNum
}}
</p>
<p>
申请入驻物业时间:
{{
item
.
createTime
}}
</p>
<p>
添加人:
{{
item
.
createBy
}}
</p>
<a-button
type=
"primary"
size=
"small"
@
click=
"toOperation(item)"
>
审核
</a-button>
<template
v-if=
"item[0].creditCode"
>
<p>
入驻物业集团名称:
{{
item
[
0
].
propertyName
}}
</p>
<p>
申请入驻小区数量:
{{
item
[
0
].
empowerCommunityNum
}}
</p>
<p>
申请入驻物业时间:
{{
item
[
0
].
createTime
}}
</p>
<p>
添加人:
{{
item
[
0
].
createBy
}}
</p>
<a-button
type=
"primary"
size=
"small"
@
click=
"toOperation(item[0], 1)"
>
审核
</a-button>
</
template
>
<
template
v-else
>
<p>
入驻社区名称:
{{
item
[
0
].
councilsName
}}
</p>
<p>
申请入驻小区数量:
{{
item
[
0
].
empowerCommunityNum
}}
</p>
<p>
申请入驻社区时间:
{{
item
[
0
].
createTime
}}
</p>
<p>
添加人:
{{
item
[
0
].
createBy
}}
</p>
<a-button
type=
"primary"
size=
"small"
@
click=
"toOperation(item[0], 2)"
>
审核
</a-button>
</
template
>
</div>
</div>
<div
class=
"content"
v-else
>
...
...
@@ -171,10 +180,16 @@ export default {
})
||
[]
this
.
mapEcharts
()
},
toOperation
(
record
)
{
this
.
$router
.
push
({
path
:
'/settled/propertyDetails?type=audit&id='
+
record
.
id
,
})
toOperation
(
record
,
type
)
{
if
(
type
===
1
)
{
this
.
$router
.
push
({
path
:
'/settled/propertyDetails?type=audit&id='
+
record
.
id
,
})
}
else
{
this
.
$router
.
push
({
path
:
'/settled/communityDetails?type=audit&id='
+
record
.
id
,
})
}
},
//地图
mapEcharts
()
{
...
...
src/views/settled/PropertyDetails.vue
浏览文件 @
972750af
...
...
@@ -103,7 +103,7 @@
<a-form-model-item
label=
"收费标准"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
prop=
"chargingStandardId"
>
<a-select
v-model=
"model.chargingStandardId"
placeholder=
"请选择收费标准"
style=
"width: 100%"
@
change=
"onValidatorNum"
>
<a-select-option
v-for=
"item in costList"
:key=
"item.id"
:value=
"item.id"
>
{{
item
.
chargingName
}}
(
{{
item
.
empowerNum
}}
个
社
区)
</a-select-option>
:value=
"item.id"
>
{{
item
.
chargingName
}}
(
{{
item
.
empowerNum
}}
个
小
区)
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
...
...
src/views/settled/community/communityDetails.vue
浏览文件 @
972750af
...
...
@@ -89,7 +89,7 @@
<a-form-model-item
label=
"收费标准"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
prop=
"chargingStandardId"
>
<a-select
v-model=
"model.chargingStandardId"
placeholder=
"请选择收费标准"
style=
"width: 100%"
@
change=
"onValidatorNum"
>
<a-select-option
v-for=
"item in costList"
:key=
"item.id"
:value=
"item.id"
>
{{
item
.
chargingName
}}
(
{{
item
.
empowerNum
}}
个
社
区)
</a-select-option>
:value=
"item.id"
>
{{
item
.
chargingName
}}
(
{{
item
.
empowerNum
}}
个
小
区)
</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论