Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
Jz-Php
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
PHP
Jz-Php
Commits
3b070731
提交
3b070731
authored
2月 12, 2020
作者:
chengye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加账单列表字段与链接
上级
5058fb5c
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
12 行增加
和
5 行删除
+12
-5
EmPayment.php
application/em/model/EmPayment.php
+3
-0
index.html
application/em/view/invoice/index.html
+6
-3
detail.html
application/em/view/payment/detail.html
+2
-1
index.html
application/em/view/payment/index.html
+1
-1
没有找到文件。
application/em/model/EmPayment.php
浏览文件 @
3b070731
...
...
@@ -38,6 +38,9 @@ class EmPayment extends Base
->
page
(
$Nowpage
,
$limits
)
->
select
()
->
toarray
();
foreach
(
$data
as
$k
=>
$item
){
$data
[
$k
][
'amount'
]
=
round
(
$data
[
$k
][
'amount'
],
3
);
}
return
$data
;
}
public
function
getPaymentCount
(
$map
){
...
...
application/em/view/invoice/index.html
浏览文件 @
3b070731
...
...
@@ -45,13 +45,14 @@
<th
lay-data=
"{type: 'checkbox', fixed: 'left'} "
></th>
<th
lay-data=
"{templet: '#invoice_id',sort: true} "
>
账单号
</th>
<th
lay-data=
"{field:'station_name'}"
>
所属基站名
</th>
<th
lay-data=
"{
field:'em_numb'
} "
>
所属电表号
</th>
<th
lay-data=
"{field:'station_name'
,sort: true
}"
>
所属基站名
</th>
<th
lay-data=
"{
templet:'#em_numb',sort: true
} "
>
所属电表号
</th>
<th
lay-data=
"{field:'payment_amount'}"
>
应缴金额
</th>
<th
lay-data=
"{field:'paid_amount'}"
>
已缴金额
</th>
<th
lay-data=
"{field: 'settle_amount'}"
>
应结金额
</th>
<th
lay-data=
"{field:'sett_amount'}"
>
已结金额
</th>
<th
lay-data=
"{field: 'status'}"
>
账单状态
</th>
<th
lay-data=
"{field: 'create_time',sort: true}"
>
创建时间
</th>
<!--<th lay-data="{fixed: 'right', align:'center', toolbar: '#barDemo'}">操作</th>-->
</tr>
</thead>
...
...
@@ -69,7 +70,9 @@
<script
type=
"text/html"
id=
"invoice_id"
>
<
a
class
=
"layui-link"
title
=
"查看"
href
=
"/invoice/{{d.id}}"
>
{{
d
.
invoice_id
}}
<
/a>
</script>
<script
type=
"text/html"
id=
"em_numb"
>
<
a
class
=
"layui-link"
title
=
"查看电表"
href
=
"/invoice/{{d.em_id}}"
>
{{
d
.
em_numb
}}
<
/a>
</script>
<script
type=
"text/javascript"
>
var
$list
=
new
Set
();
...
...
application/em/view/payment/detail.html
浏览文件 @
3b070731
...
...
@@ -116,7 +116,8 @@
<tbody>
{volist name="invs" id="item"}
<tr>
<td>
{$item.invoice_id}
</td>
<td><a
class=
"layui-link"
title=
"查看账单"
href=
"{$item.invoice_id}"
>
{$item.invoice_id}
</a>
</td>
<td>
{$item.station_name}
</td>
<td>
{$item.em_numb}
</td>
<td>
{$item.payment_amount|round=3}
</td>
...
...
application/em/view/payment/index.html
浏览文件 @
3b070731
...
...
@@ -60,7 +60,7 @@
<tr>
<th
lay-data=
"{templet: '#payment_id',sort: true} "
>
缴费单号
</th>
<th
lay-data=
"{templet: '#invoice_id',sort: true}"
>
账单号
</th>
<th
lay-data=
"{field:'em_numb'} "
>
电表识别号
</th>
<th
lay-data=
"{field:'em_numb'
,sort: true
} "
>
电表识别号
</th>
<th
lay-data=
"{field:'region_name'}"
>
区域
</th>
<th
lay-data=
"{field:'amount',sort: true}"
>
缴费金额
</th>
<th
lay-data=
"{field: 'status',sort: true}"
>
缴费状态
</th>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论