Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
H
housing-estate
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
物业总平台
housing-estate
Commits
35e9c27e
提交
35e9c27e
authored
9月 01, 2023
作者:
宋雄
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改二期bug
上级
a66d164f
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
20 行增加
和
3 行删除
+20
-3
static.js
src/assets/static.js
+7
-0
SettlementDetails.vue
src/views/benefits/settlement/SettlementDetails.vue
+13
-3
没有找到文件。
src/assets/static.js
浏览文件 @
35e9c27e
...
...
@@ -115,6 +115,13 @@ export const BALANCE_STATUS = [
{
label
:
'结算驳回'
,
value
:
'4'
}
]
// 支付详情
export
const
PAY_WAY
=
[
{
label
:
'抵扣物业费'
,
value
:
'payPropertyFee'
},
{
label
:
'申请退款'
,
value
:
'refundOrder'
},
{
label
:
'扫码支付'
,
value
:
'scanQrCodePay'
}
]
/**
* 翻译字段值对应的文本
* @param children
...
...
src/views/benefits/settlement/SettlementDetails.vue
浏览文件 @
35e9c27e
...
...
@@ -36,7 +36,7 @@
</a-form>
</div>
-->
<div
class=
"ant-alert ant-alert-info"
style=
"margin-bottom: 16px;"
>
已选择
<a
style=
"font-weight: 600"
>
{{
selectionRows
.
length
}}
</a>
个对账单,共计
<span
style=
"color:red"
>
{{
totalMoney
}}
</span>
元
已选择
<a
style=
"font-weight: 600"
>
{{
selectionRows
.
length
}}
</a>
个对账单,
结算金额
共计
<span
style=
"color:red"
>
{{
totalMoney
}}
</span>
元
<a
style=
"margin-left: 24px"
v-if=
"selectedRowKeys.length > 0"
@
click=
"onClearSelected"
>
清空
</a>
</div>
<a-row>
...
...
@@ -116,7 +116,7 @@
<
script
>
import
{
getshareBalanceApi
}
from
'@/api/api'
import
{
httpAction
,
getAction
}
from
'@/api/manage'
import
{
filterDictTextByStatic
,
FENLICENTRAL_AUDIT_STATUS
}
from
'@/assets/static.js'
import
{
filterDictTextByStatic
,
FENLICENTRAL_AUDIT_STATUS
,
PAY_WAY
}
from
'@/assets/static.js'
import
{
JeecgListMixin
}
from
'@/mixins/JeecgListMixin'
import
PropertyAdvModal
from
'./modules/PropertyAdvModal'
...
...
@@ -145,11 +145,21 @@ const columns = [
key
:
'totalMoney'
,
align
:
'center'
,
},
{
title
:
'分利金额'
,
dataIndex
:
'shareMoney'
,
key
:
'shareMoney'
,
align
:
'center'
,
},
{
title
:
'支付方式'
,
dataIndex
:
'payWay'
,
key
:
'payWay'
,
align
:
'center'
,
customRender
:
function
(
text
)
{
return
filterDictTextByStatic
(
PAY_WAY
,
text
)
}
},
{
title
:
'订单来源'
,
...
...
@@ -256,7 +266,7 @@ export default {
computed
:
{
totalMoney
()
{
return
this
.
selectionRows
.
reduce
((
prev
,
cur
,
index
,
arr
)
=>
{
return
parseFloat
((
prev
+
cur
.
total
Money
).
toFixed
(
2
))
return
parseFloat
((
prev
+
cur
.
share
Money
).
toFixed
(
2
))
},
0
)
}
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论