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
57249554
authored
2018-03-30 10:29:03 +0800
by
杨建斌
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
init
1 parent
121f0132
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
2 deletions
application/controllers/Work.php
application/views/work/尽调报告/index.php
application/controllers/Work.php
View file @
5724955
...
...
@@ -352,6 +352,24 @@ class Work extends CI_Controller
public
function
inquiry
(
$id
)
{
$url
=
$this
->
config
->
item
(
'apiBaseUrl'
)
.
'order/detail/'
.
$id
;
$result
=
file_get_contents
(
$url
);
$json
=
json_decode
(
$result
);
$ret
=
$json
->
data
;
if
(
!
$ret
->
clientUnitOutputVO
)
{
$ret
->
clientUnitOutputVO
=
array
();
}
if
(
!
$ret
->
clientContactOutputVOS
)
{
$ret
->
clientContactOutputVOS
=
array
();
}
$data
=
array
(
'clientInfoOutputVO'
=>
$ret
->
clientInfoOutputVO
,
'clientUnitOutputVO'
=>
$ret
->
clientUnitOutputVO
,
'clientContactOutputVOS'
=>
$ret
->
clientContactOutputVOS
,
'applyOrderVO'
=>
$ret
->
applyOrderVO
);
$this
->
load
->
view
(
'/work/尽调报告/index'
,
compact
(
'id'
));
}
}
...
...
application/views/work/尽调报告/index.php
View file @
5724955
...
...
@@ -8,8 +8,13 @@
</div>
<div
class=
"tabCon"
>
<?php
$this
->
load
->
view
(
'work/尽调报告/打工'
);
?>
<!--
<?php
$this
->
load
->
view
(
'work/尽调报告/法人'
);
?>
-->
<?php
if
(
$clientUnitInputVO
->
jobType
==
1
){
//打工类
$this
->
load
->
view
(
'work/尽调报告/打工'
);
}
else
{
// 经营类
$this
->
load
->
view
(
'work/尽调报告/法人'
);
}
?>
</div>
<div
class=
"tabCon"
>
...
...
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