|
|
|
@ -47,6 +47,9 @@
|
|
|
|
<label class="control-label mr-1">截止日期</label><input
|
|
|
|
<label class="control-label mr-1">截止日期</label><input
|
|
|
|
value="{{ $before_date }}" class="form-control mr-1" name="before_date"
|
|
|
|
value="{{ $before_date }}" class="form-control mr-1" name="before_date"
|
|
|
|
data-plugin="date-picker">
|
|
|
|
data-plugin="date-picker">
|
|
|
|
|
|
|
|
@if(\App\Models\CommonModel::checkExport())
|
|
|
|
|
|
|
|
<button class="btn btn-primary ml-1" type="button" onclick="exportOrderBalanceExcel()">导出Excel</button>
|
|
|
|
|
|
|
|
@endif
|
|
|
|
@endif
|
|
|
|
@endif
|
|
|
|
<button type="submit" class="btn btn-primary ml-1">查询</button>
|
|
|
|
<button type="submit" class="btn btn-primary ml-1">查询</button>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
@ -58,7 +61,10 @@
|
|
|
|
<thead>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<th class="p-1" style="white-space: nowrap">序号</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">序号</th>
|
|
|
|
|
|
|
|
<th class="p-1" style="white-space: nowrap">项目名称</th>
|
|
|
|
|
|
|
|
<th class="p-1" style="white-space: nowrap">时点</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">订单号</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">订单号</th>
|
|
|
|
|
|
|
|
<th class="p-1" style="white-space: nowrap">订单状态</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">客户手机号</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">客户手机号</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">联系人</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">联系人</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">联系电话</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">联系电话</th>
|
|
|
|
@ -72,7 +78,10 @@
|
|
|
|
@foreach($orderBalances as $item)
|
|
|
|
@foreach($orderBalances as $item)
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td class="p-1">{{ $loop->iteration }}</td>
|
|
|
|
<td class="p-1">{{ $loop->iteration }}</td>
|
|
|
|
|
|
|
|
<td class="p-1">{{ $item->project_name }}</td>
|
|
|
|
|
|
|
|
<td class="p-1">{{ $item->point_time }}</td>
|
|
|
|
<td class="p-1">{{ $item->serial }}</td>
|
|
|
|
<td class="p-1">{{ $item->serial }}</td>
|
|
|
|
|
|
|
|
<td class="p-1">{{ $item->status_name }}</td>
|
|
|
|
<td class="p-1">{{ $item->customer_mobile }}</td>
|
|
|
|
<td class="p-1">{{ $item->customer_mobile }}</td>
|
|
|
|
<td class="p-1">{{ $item->contact }}</td>
|
|
|
|
<td class="p-1">{{ $item->contact }}</td>
|
|
|
|
<td class="p-1">{{ $item->contact_mobile }}</td>
|
|
|
|
<td class="p-1">{{ $item->contact_mobile }}</td>
|
|
|
|
@ -122,4 +131,10 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@include("plugins.datatable")
|
|
|
|
@include("plugins.datatable")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
function exportOrderBalanceExcel() {
|
|
|
|
|
|
|
|
$('.dt-buttons .buttons-excel').first().click();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
@endsection
|
|
|
|
@endsection
|
|
|
|
|