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
c36047c0
authored
Jul 18, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_adjust_20180717' into development
parents
b40b81c7
64ef7570
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletions
resources/views/erpOrder/content.blade.php
resources/views/orderlist/content.blade.php
resources/views/erpOrder/content.blade.php
View file @
c36047c0
...
@@ -69,9 +69,20 @@
...
@@ -69,9 +69,20 @@
<dt>
推送业务员:
</dt>
<dt>
推送业务员:
</dt>
<dd
style=
"width: 115px;"
>
<dd
style=
"width: 115px;"
>
<select
id=
"order_send"
name=
"order_send"
class=
"form-control order_send selectpicker"
title=
"全部"
data-live-search=
"true"
>
<select
id=
"order_send"
name=
"order_send"
class=
"form-control order_send selectpicker"
title=
"全部"
data-live-search=
"true"
>
<optgroup
label=
"在职"
>
@foreach ($sale_list as $v)
@foreach ($sale_list as $v)
@if ($v->status != 4)
<option
value=
"{{$v->userId}}"
>
{{$v->name}}
</option>
<option
value=
"{{$v->userId}}"
>
{{$v->name}}
</option>
@endif
@endforeach
</optgroup>
<optgroup
label=
"离职"
>
@foreach ($sale_list as $v)
@if ($v->status == 4)
<option
value=
"{{$v->userId}}"
>
{{$v->name}}
</option>
@endif
@endforeach
@endforeach
</optgroup>
</select>
</select>
<!-- <div class="droplist" data-default="{{$condition['order_send']}}" id="order_send" name="order_send" >
<!-- <div class="droplist" data-default="{{$condition['order_send']}}" id="order_send" name="order_send" >
...
...
resources/views/orderlist/content.blade.php
View file @
c36047c0
...
@@ -80,10 +80,21 @@
...
@@ -80,10 +80,21 @@
<dl>
<dl>
<dt>
推送业务员:
</dt>
<dt>
推送业务员:
</dt>
<dd
style=
"width: 115px;"
>
<dd
style=
"width: 115px;"
>
<select
id=
"order_send"
name=
"order_send"
class=
"form-control order_send selectpicker"
title=
"全部"
data-live-search=
"true"
>
<select
id=
"order_send"
name=
"order_send"
class=
"form-control order_send selectpicker"
title=
"全部"
data-live-search=
"true"
data-size=
"7"
>
<optgroup
label=
"在职"
>
@foreach ($sale_list as $v)
@foreach ($sale_list as $v)
@if ($v->status != 4)
<option
value=
"{{$v->userId}}"
>
{{$v->name}}
</option>
<option
value=
"{{$v->userId}}"
>
{{$v->name}}
</option>
@endif
@endforeach
</optgroup>
<optgroup
label=
"离职"
>
@foreach ($sale_list as $v)
@if ($v->status == 4)
<option
value=
"{{$v->userId}}"
>
{{$v->name}}
</option>
@endif
@endforeach
@endforeach
</optgroup>
</select>
</select>
</dd>
</dd>
</dl>
</dl>
...
...
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