Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
杨建斌
/
page
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
1
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
0218fffd
authored
2018-03-29 23:41:48 +0800
by
wang
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
2 parents
878bb5cf
51b52e7b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
16 deletions
application/controllers/Work.php
application/views/work/审批/电核.php
application/controllers/Work.php
View file @
0218fff
...
...
@@ -214,6 +214,11 @@ class Work extends CI_Controller
$this
->
load
->
view
(
'work/审批/网查筛选'
,
$data
);
break
;
case
8
:
$url
=
$this
->
config
->
item
(
'apiBaseUrl'
)
.
'audit/phoneAudit/record/'
.
$id
;
$result
=
file_get_contents
(
$url
);
$json
=
json_decode
(
$result
);
$ret
=
$json
->
data
;
$data
[
'record'
]
=
$ret
;
$this
->
load
->
view
(
'work/审批/电核'
,
$data
);
break
;
case
9
:
...
...
@@ -231,9 +236,10 @@ class Work extends CI_Controller
}
}
public
function
telAdd
()
public
function
telAdd
(
$id
)
{
$this
->
load
->
view
(
'work/审批/电核添加'
);
$data
=
array
(
'id'
=>
$id
);
$this
->
load
->
view
(
'work/审批/电核添加'
,
$data
);
}
public
function
telRefuse
()
...
...
application/views/work/审批/电核.php
View file @
0218fff
...
...
@@ -38,26 +38,29 @@
<th>
是否拨通
</th>
<th>
电核人
</th>
<th>
备注
</th>
<th
width=
"70px"
>
操作
</th
>
<!-- <th width="70px">操作</th>--
>
</tr>
</thead>
<tbody
class=
"text-c"
>
<tr>
<td>
1
</td>
<td>
2018-01-01 00:00:00
</td>
<td>
是
</td>
<td>
张三
</td>
<td>
备注
</td>
<td><a
href=
"javascript:add();"
><i
class=
"Hui-iconfont"
>

</i>
编辑
<a></td>
</tr>
<tr>
<?php
?>
<?php
foreach
(
$record
as
$k
=>
$v
)
:?>
<
tr
>
<
td
><?=
$v
->
id
?>
</td>
<td>
<?=
$v
->
phoneAuditTime
?>
</td>
<td>
<?=
$v
->
hasPutThrough
?
'是'
:
'否'
?>
</td>
<td>
<?=
$v
->
phoneAuditEmployee
?>
</td>
<td>
<?=
$v
->
remark
?>
</td>
</tr>
<?php
endforeach
;
?>
<!--<tr>
<td>1</td>
<td>2018-01-01 00:00:00</td>
<td>是</td>
<td>张三</td>
<td>备注</td>
<td><a href="javascript:add();"><i class="Hui-iconfont"></i> 编辑<a></td>
</tr>
</tr>
-->
</tbody>
</table>
</div>
...
...
@@ -94,7 +97,7 @@
title: '电核记录',
shadeClose: true,
area: ['800px', '400px'],
content: '
<?=
site_url
(
'work/telAdd
'
)
?>
'
content: '
<?=
site_url
(
'work/telAdd
/'
.
$id
)
?>
'
});
}
...
...
@@ -135,9 +138,7 @@
error
:
function
()
{
layer
.
alert
(
"操作失败"
)
}
})
}
</script>
</body>
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment