Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3a7b689d
authored
Jul 31, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_export_20180730' into development
parents
da27b8b1
4c23c690
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
21 deletions
resources/views/detail/sendSales.blade.php
resources/views/detail/sendSales.blade.php
View file @
3a7b689d
...
@@ -13,19 +13,15 @@
...
@@ -13,19 +13,15 @@
<td
class=
"check-table-title"
width=
"20%"
>
经理:
</td>
<td
class=
"check-table-title"
width=
"20%"
>
经理:
</td>
<td>
<td>
@if (!empty($manager))
@if (!empty($manager))
@foreach ($manager as $k => $v)
@if(($k + 1) % 8 == 1)
<ul>
<ul>
@endif
@foreach ($manager as $k => $v)
@if ($v->userId == $order_info['sale_id'])
@if ($v->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$v->userId}}"
checked
/><span>
{{$v->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$v->userId}}"
checked
/><span>
{{$v->name}}
</span></label></li>
@else
@else
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$v->userId}}"
/><span>
{{$v->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$v->userId}}"
/><span>
{{$v->name}}
</span></label></li>
@endif
@endif
@if(($k + 1) % 8 == 0 || $k + 1 == count($manager))
</ul>
@endif
@endforeach
@endforeach
</ul>
@endif
@endif
</td>
</td>
</tr>
</tr>
...
@@ -33,57 +29,51 @@
...
@@ -33,57 +29,51 @@
<tr>
<tr>
<td
class=
"check-table-title"
width=
"20%"
>
交易员:
</td>
<td
class=
"check-table-title"
width=
"20%"
>
交易员:
</td>
<td>
<td>
@foreach ($sale_list as $key => $vo)
@if (!empty($sale_list))
@if(($key + 1) % 8 == 1)
<ul>
<ul>
@
endif
@
foreach ($sale_list as $key => $vo)
@if ($vo->userId == $order_info['sale_id'])
@if ($vo->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
@else
@else
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
@endif
@endif
@
if(($key + 1) % 8 == 0 || $key + 1 == count($sale_list))
@
endforeach
</ul>
</ul>
@endif
@endif
@endforeach
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"check-table-title"
width=
"20%"
>
客服:
</td>
<td
class=
"check-table-title"
width=
"20%"
>
客服:
</td>
<td>
<td>
@foreach ($kefu as $key => $vo)
@if (!empty($kefu))
@if(($key + 1) % 8 == 1)
<ul>
<ul>
@
endif
@
foreach ($kefu as $key => $vo)
@if ($vo->userId == $order_info['sale_id'])
@if ($vo->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
@else
@else
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
@endif
@endif
@
if(($key + 1) % 8 == 0 || $key + 1 == count($kefu))
@
endforeach
</ul>
</ul>
@endif
@endif
@endforeach
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"check-table-title"
width=
"20%"
>
测试:
</td>
<td
class=
"check-table-title"
width=
"20%"
>
测试:
</td>
<td>
<td>
@foreach ($test as $key => $vo)
@if (!empty($test))
@if(($key + 1) % 8 == 1)
<ul>
<ul>
@
endif
@
foreach ($test as $key => $vo)
@if ($vo->userId == $order_info['sale_id'])
@if ($vo->userId == $order_info['sale_id'])
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
checked
/><span>
{{$vo->name}}
</span></label></li>
@else
@else
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
<li><label><input
type=
"radio"
name=
"sale_id"
value=
"{{$vo->userId}}"
/><span>
{{$vo->name}}
</span></label></li>
@endif
@endif
@
if(($key + 1) % 8 == 0 || $key + 1 == count($test))
@
endforeach
</ul>
</ul>
@endif
@endif
@endforeach
</td>
</td>
</tr>
</tr>
</table>
</table>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment