123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- @extends('admin.layouts.app')
- @section('content')
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>我的线索</h5>
- <div class="ibox-tools">
- <a class="collapse-link"> <i class="fa fa-chevron-up"></i>
- </a>
- </div>
- </div>
- <div class="ibox-content">
- <div class="form-group">
- @if(role('User/Threads/addCallList'))
- <div class="col-sm-8 pull-right">
- <span id="addCallList" class="btn btn-primary pull-right fa fa-phone"
- style="display: none">添加到电话列表</span>
- </div>
- @endif
- </div>
- </div>
- {{--添加过滤条件--}}
- <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
- <tr>
- <th> 过滤条件</th>
- <form method="GET" action="" accept-charset="UTF-8" id="filter_threads">
- <th>
- <select name="process" class="form-control filter_threads">
- <option value="">有无跟进</option>
- <option value="1">有</option>
- <option value="2">无</option>
- </select>
- </th>
- {{--<th style="width: 40%">--}}
- {{--<div class="row">--}}
- {{--<div class="col-sm-5" id="data_1">--}}
- {{--<div class="input-group date">--}}
- {{--<span class="input-group-addon">--}}
- {{--<i class="fa fa-calendar"></i></span>--}}
- {{--<input type="text" id="start" class="form-control" placeholder="领取日期"--}}
- {{--name="start"--}}
- {{--value="{{Request::get('start') ? : ''}}">--}}
- {{--</div>--}}
- {{--</div>--}}
- {{--_--}}
- {{--<div class="col-sm-5" id="data_2">--}}
- {{--<div class="input-group date">--}}
- {{--<span class="input-group-addon">--}}
- {{--<i class="fa fa-calendar"></i></span>--}}
- {{--<input type="text" id="end" class="form-control" placeholder="领取日期"--}}
- {{--name="end"--}}
- {{--value="{{Request::get('end') ? : ''}}">--}}
- {{--</div>--}}
- {{--</div>--}}
- {{--</div>--}}
- {{--</th>--}}
- <th>
- <div class="input-group">
- <input type="text" class="form-control" value="{{Request::get('keyword')}}"
- placeholder="请输入企业名称"
- name="keyword">
- <span class="input-group-append">
- <span class="btn btn-sm btn-default filter_threads"
- style="height: 100%">搜索</span>
- </span>
- </div>
- </th>
- </form>
- </tr>
- </table>
- <div id="threads-list">
- @include('admin.user.threads.data')
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
- @section('js')
- <script type="text/javascript">
- /*电话全选功能*/
- var items = $('.contacts')
- $('#checkAll').click(function () {
- isChecked = $(this).prop('checked')
- items.prop('checked', isChecked)
- if (isChecked == true) {
- $('#addCallList').show()
- } else {
- $('#addCallList').hide()
- }
- })
- items.click(function () {
- checkedLength = $('.contacts:checked').length
- if (checkedLength) {
- $('#addCallList').show()
- } else {
- $('#addCallList').hide()
- }
- if (items.length == checkedLength) {
- $('#addCallList').show()
- } else {
- $('#checkAll').prop('checked', false)
- }
- })
- /*添加选择的电话到拨打列表*/
- $('#addCallList').click(function () {
- contact_ids = []
- csrf_token = "{{ csrf_token() }}"
- $('.contacts:checked').each(function () {
- contact_ids.push($(this).val())
- })
- $.ajax({
- type: 'post',
- url: '{{ U('User/Threads/addCallList') }}',
- data: {contact_ids: contact_ids, _token: csrf_token},
- success: function (data) {
- if (data == 200) {
- layer.msg('导入成功', {
- icon: 1,
- time: 2000 //2秒关闭(如果不配置,默认是3秒)
- }, function () {
- window.location.href = window.location.href
- });
- }
- }
- })
- console.log(contact_ids)
- })
- /*线索筛选*/
- $('.filter_threads').change(function () {
- data = $('#filter_threads').serialize()
- $.ajax({
- type: 'get',
- data: data,
- }).done(function (data) {
- $('#threads-list').html(data.html)
- })
- })
- $('.filter_threads').click(function () {
- data = $('#filter_threads').serialize()
- $.ajax({
- type: 'get',
- data: data,
- }).done(function (data) {
- $('#threads-list').html(data.html)
- })
- })
- /*Ajax 分页*/
- $('body').on('click', '.pagination a', function(e) {
- e.preventDefault();
- if ($(this).attr('href') != '#' ) {
- data = $('#filter_threads').serialize()
- $.ajax({
- url: $(this).attr('href'),
- type: 'get',
- data: data,
- }).done(function (data) {
- $('#threads-list').html(data.html)
- })
- }
- });
- </script>
- @endsection
|