Files
F6--/张阳脚本/竞品系统数据导出/Products_page1_debug.html
T
2026-04-09 10:19:09 +08:00

1306 lines
150 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<link rel="stylesheet" href="/css/@default/../admin/bootstrap.min.css?ver=2025082801">
<link rel="stylesheet" type="text/css" href="/css/@default/common.css?ver=2025082801" media="all"/>
<link rel="stylesheet" type="text/css" href="/css/@default/form.css?ver=2025082801" media="all"/>
<link rel="stylesheet" type="text/css" href="/css/@default/table.css?ver=2025082801" media="all"/>
<link rel="stylesheet" type="text/css" href="/css/@default/button.css?ver=2025082801" media="all"/>
<link rel="stylesheet" type="text/css" href="/css/@private/style.css?ver=2025082801" media="all"/>
<title>H1车店—国内最大的微信公众服务平台</title><script type="text/javascript">var yyuc_jspath = "/@system/";</script><script type="text/javascript" src="/@system/js/jquery.js"></script><script type="text/javascript" src="/@system/js/yyucadapter.js?ver=2025082801""></script><script type="text/javascript">App = {"MODULE": "Billings", "CONTROLLER": "Lists", "CTRL": "Lists", "ACTION": "", "ACT_ADD": "add", "ACT_EDT": "edt", "ACT_DEL": "del", "AUTH_CODE": "Billings/Lists", "SITE": "https://scrm.h1cd.com/", "PAGE": "lists.html", "URL": "https://scrm.h1cd.com/admin/billings/lists.html", "REQUEST_URL": "admin/billings/lists.html", "URL_SUFFIX": ".html"}</script><script type="text/javascript" src="/@system/dialog/weui.js"></script><link rel="stylesheet" href="/@system/dialog/weui.css" /><script>if (top === self) { window.location.href = '/admin/main.html';}</script><script> var SCRM_TOKEN = "4394baa58b824ad2b3f83ba695cecd6a"; if (top !== self && SCRM_TOKEN !== top.SCRM_TOKEN) { top.location.href = "/logout.html"; }</script>
<link rel="shortcut icon" href="/favicon.ico"/>
<style>
@media screen and (max-width: 1500px) {
.order_item_2 { width: 20px; min-width: 20px; }
.order_item_5 { width: 66px; min-width: 66px; }
.order_item_8 { width: 60px !important; min-width: 60px; }
.order_item_10, .order_item_11, .order_item_15 { width: 70px; min-width: 70px; }
}
.table tbody tr .link a{ padding: 0 2px}
</style>
</head>
<body>
<div class="content-title"><h3>开单列表</h3></div>
<div id="main">
<div class="container-fluid">
<div class="panel">
<div class="panel-heading">
<form id="searchForm" class="form-inline va" action="Products.html">
<span>门店名称:</span>
<select data-storeid='12753' data-default_store_id="12754" name='storeId' id='_storeSelectId' style="width: 157px;" ><option data-store_id='0' value='0'>请选择</option><option value='12754' data-store_id='12754' >大彬汽车配件门市部</option></select> <script>
$(function () {
if($('#_storeSelectId option').length == 1){
var storeId = $('#_storeSelectId').val();
$('._storeDefaultOption' + storeId).show();
}
$('#_storeSelectId').change(storeChanged);
function storeChanged() {
var storeId = $('#_storeSelectId').find("option:selected").data('store_id') || $('#_storeSelectId').data('default_store_id') || $('._storeStaffDefault').data('default_store_id') || $('._carCheckDefault').data(' ');
$('._storeDeptDefault').each(function () {
var departments = $(this).data('depts');
var departmentOptionHtml = "<option value=''>请选择</option>";
for (var i in departments) {
i = parseInt(i);
if (departments[i]['store_id'] == storeId) {
departmentOptionHtml += "<option value='" + departments[i]['id'] + "' " + (departments[i]['id'] == $(this).data('dept_id') ? "selected" : '') + ">" + departments[i]['name'] + "</option>";
}
}
$(this).html(departmentOptionHtml);
});
$('._carCheckDefault').each(function () {
var carCheck = $(this).data('depts');
var carCheckOptionHtml = "<option value=''>请选择</option>";
for (var i in carCheck) {
i = parseInt(i);
if (carCheck[i]['store_id'] == storeId) {
carCheckOptionHtml += "<option value='" + carCheck[i]['report_name'] + "' " + (carCheck[i]['report_name'] == $(this).data('dept_name') ? "selected" : '') + ">" + carCheck[i]['report_name'] + "</option>";
}
}
$(this).html(carCheckOptionHtml);
});
$('._storeStaffDefault').each(function () {
var staffs = $(this).data('staffs');
var staffOptionHtml = "<option value=''>请选择</option>";
for (var i in staffs) {
i = parseInt(i);
if (staffs[i]['lbsid'] != storeId) {
continue;
}
if (staffs[i]['dept_name'] && (i <= 0 || staffs[i]['dept_name'] + staffs[i]['dept_id'] != staffs[i - 1]['dept_name'] + staffs[i - 1]['dept_id'])) {
staffOptionHtml += "<optgroup class='_storeDefaultOption" + staffs[i]['store_id'] + "' label = '" + staffs[i]['dept_name'] + "' >";
}
staffOptionHtml += "<option value='" + staffs[i]['id'] + "' " + (staffs[i]['id'] == $(this).data('staffid') ? "selected" : '') + ">" + staffs[i]['name'] + "</option>";
if (staffs[i]['dept_name'] && (i >= (staffs.length - 1) || staffs[i]['dept_name'] + staffs[i]['dept_id'] != staffs[i + 1]['dept_name'] + staffs[i + 1]['dept_id'])) {
staffOptionHtml += "</optgroup>";
}
}
$(this).html(staffOptionHtml);
});
}
storeChanged();
})
</script>
工单类型:
<select name="type" style="width: 60px;">
<option value="">请选择</option>
<option value="1" selected="selected">维修</option>
<option value="3" >美容</option>
<option value="7" >代办</option>
<option value="4" >精品</option>
<option value="10002" >钣喷</option>
<option value="10001" >违章/年审/保险</option>
<option value="10003" >轮胎</option>
<option value="10000" >维修保养</option>
</select>
<span>接车人:</span>
<select data-staffid='' data-default_store_id='12754' name='receive_by' style="width: 60px;" class="_storeStaffDefault" data-staffs='[{"store_id":"12754","dept_id":"7166","is_init":"1","lbsid":"12754","id":"29680","name":"\u7ba1\u7406\u5458","dept_name":"\u9ed8\u8ba4\u90e8\u95e8","is_system":"0"},{"store_id":"12754","dept_id":"7167","is_init":"0","lbsid":"12754","id":"29681","name":"\u5f20\u4e3d","dept_name":"\u603b\u7ecf\u529e","is_system":"0"}]'></select> 是否出库:
<select name="is_out" style="width: 60px;">
<option value="">请选择</option>
<option value="0" >未出库</option>
<option value="1" >已出库</option>
</select>
是否完工:
<select name="is_end" style="width: 60px;">
<option value="">请选择</option>
<option value="0" >未完工</option>
<option value="1" >已完工</option>
</select>
<br/><br/>
<label>开单日期: <input type="text" name="timeStart" style="width: 64px !important;" value="2026-02-01" placeholder="起始日期" onfocus="WdatePicker({ dateFmt:'yyyy-MM-dd'})"> - <input type="text" name="timeEnd" style="width: 64px !important;" value="" placeholder="结束日期" onfocus="WdatePicker({ dateFmt:'yyyy-MM-dd'})"></label>
<label>工单信息: <input class="input_medium" type="text" name="search" value="" placeholder="手机号/车牌号/姓名/工单号/钥匙号/工单内容/开单备注" style="width: 344px !important;"></label>
<input type="submit" class="btn btn-primary" value="查询" onclick="this.disabled = true; document.getElementById('searchForm').submit();" style="width: 91px;">
<input onclick="endNotify()" type="button" class="btn btn-primary" value="完工通知" style="width: 91px;">
<input type="button" onclick="exportOrders(this)" class="btn btn-primary tips" value="导出Excel" style="width: 92px;">
<!--Tab栏-->
<div class="row-fluid dataTables_wrapper mt10 ">
<input type="hidden" name="status" value="0" />
<ul id="navtable" class="nav nav-tabs mb10">
<li>
<a href="javascript:;" onclick="changesubmit(0)" style="background-color:#16946c;color:#fff" >全部</a>
</li>
<li>
<a href="javascript:;" onclick="changesubmit(1)" >未结算</a>
</li>
<li>
<a href="javascript:;" onclick="changesubmit(3)" >已结算</a>
</li>
<li class="ml20">
<a href="javascript:;" onclick="changesubmit(4)" >挂账中</a>
</li>
</ul>
</div>
<!--Tab栏-->
</form>
</div>
<div class="panel-body list">
<div class="table-responsive">
<div id="Scroll">
<table class="table" ><!--table-layout: fixed;-->
<tr class="tabTh">
<th class="head_th"><input type="checkbox" class="checkbox" onclick="selectAll(this);"/></th>
<th class="head_th">序号</th>
<th class="fixed-width-120">工单号</th>
<th class="fixed-width-150">工单内容</th>
<th class="fixed-width-100">车辆信息</th>
<th class="fixed-width-100">车主信息</th>
<th class="fixed-width">工单金额</th>
<th class="fixed-width-120">开单时间</th>
<th class="fixed-width-120">接车人</th>
<th class="fixed-width-120">结算信息</th>
<th class="fixed-width">是否出库</th>
<th class="fixed-width">是否完工</th>
<th class="fixed-width">状态</th>
<th class="fixed-width-150">操作</th>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="543521" disabled/></td>
<td class="table-center order_item_2">1</td>
<td>
<a href="detail.html?id=543521&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260318134112271128</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换LED灯</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_76_30.png" alt="" >
冀J986WQ</td>
<td>
王芝龙 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>15227539886 </td>
<td class="money_p order_item_8">
¥220.00 </td>
<td class="table-center fixed-width-100">
2026-03-18 13:40:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-18 13:41:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=543521&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="543521" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="543521" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="543191" disabled/></td>
<td class="table-center order_item_2">2</td>
<td>
<a href="detail.html?id=543191&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260316183428122714</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换电瓶</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_3_30.png" alt="" >
冀JEE793</td>
<td>
邱洪祥 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13303175388 </td>
<td class="money_p order_item_8">
¥700.00 </td>
<td class="table-center fixed-width-100">
2026-03-16 18:34:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-16 19:15:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=543191&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="543191" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="543191" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="543179" disabled/></td>
<td class="table-center order_item_2">3</td>
<td>
<a href="detail.html?id=543179&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260316175406545210</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>添加1升机油</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_33_30.png" alt="" >
冀J00DS7</td>
<td>
赵强 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>15103276788 </td>
<td class="money_p order_item_8">
¥80.00 </td>
<td class="table-center fixed-width-100">
2026-03-16 17:53:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p></p>
<p></p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span style="color: red;">未结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=543179&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit " href="javascript:;" onclick="edit(this);" data-id="543179" data-url="main-edt.html?id=543179&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class=" _settle" href="javascript:void(0);" onclick="settlement(this)" data-id="543179" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="543152" disabled/></td>
<td class="table-center order_item_2">4</td>
<td>
<a href="detail.html?id=543152&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260316163205892213</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换出水口<br/>添加防冻液<br/>工费<br/>更换耐油管</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_47_30.png" alt="" >
冀AML535</td>
<td>
纪执罡 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13731746999 </td>
<td class="money_p order_item_8">
¥380.00 </td>
<td class="table-center fixed-width-100">
2026-03-16 16:31:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-16 17:54:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=543152&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="543152" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="543152" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="543089" disabled/></td>
<td class="table-center order_item_2">5</td>
<td>
<a href="detail.html?id=543089&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260316143301228812</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换右倒车镜片<br/>更换右倒车镜壳<br/>更换右转向灯</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
冀JS222A</td>
<td>
刘龙升 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>17731711280 </td>
<td class="money_p order_item_8">
¥240.00 </td>
<td class="table-center fixed-width-100">
2026-03-16 14:32:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-16 14:33:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=543089&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="543089" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="543089" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="543043" disabled/></td>
<td class="table-center order_item_2">6</td>
<td>
<a href="detail.html?id=543043&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260316123329792911</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换前刹车片<br/>更换后刹车片</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_63_30.png" alt="" >
冀JR751R</td>
<td>
温浩 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>15100878817 </td>
<td class="money_p order_item_8">
¥340.00 </td>
<td class="table-center fixed-width-100">
2026-03-16 12:33:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-16 14:33:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=543043&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="543043" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="543043" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="542930" disabled/></td>
<td class="table-center order_item_2">7</td>
<td>
<a href="detail.html?id=542930&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260315174443520114</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换点火铝座<br/>工费</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
冀JC5959</td>
<td>
史永刚 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13803177311 </td>
<td class="money_p order_item_8">
¥300.00 </td>
<td class="table-center fixed-width-100">
2026-03-15 17:44:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-15 17:44:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=542930&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="542930" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="542930" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="542898" disabled/></td>
<td class="table-center order_item_2">8</td>
<td>
<a href="detail.html?id=542898&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260315165704942015</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>免拆清洗节气门</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_62_30.png" alt="" >
冀J586H2</td>
<td>
刘志强 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>18731760406 </td>
<td class="money_p order_item_8">
¥30.00 </td>
<td class="table-center fixed-width-100">
2026-03-15 16:56:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-15 16:57:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=542898&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="542898" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="542898" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="542810" disabled/></td>
<td class="table-center order_item_2">9</td>
<td>
<a href="detail.html?id=542810&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260315122250597127</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换电瓶</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_3_30.png" alt="" >
冀J22MD5</td>
<td>
高长胜 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13932794618 </td>
<td class="money_p order_item_8">
¥420.00 </td>
<td class="table-center fixed-width-100">
2026-03-15 12:22:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-15 12:22:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=542810&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="542810" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="542810" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="542640" disabled/></td>
<td class="table-center order_item_2">10</td>
<td>
<a href="detail.html?id=542640&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260314144843447337</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换点火线圈</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
冀J2Y3Y8</td>
<td>
魏元祥 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13363170292 </td>
<td class="money_p order_item_8">
¥120.00 </td>
<td class="table-center fixed-width-100">
2026-03-14 14:48:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-15 09:33:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=542640&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="542640" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="542640" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="542242" disabled/></td>
<td class="table-center order_item_2">11</td>
<td>
<a href="detail.html?id=542242&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260313100159647327</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换水箱<br/>更换节温器<br/>更换防冻液<br/>工费<br/>更换水温传感器</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_47_30.png" alt="" >
冀AML535</td>
<td>
纪执罡 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13731746999 </td>
<td class="money_p order_item_8">
¥1290.00 </td>
<td class="table-center fixed-width-100">
2026-03-13 10:00:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-13 10:02:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=542242&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="542242" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="542242" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="542094" disabled/></td>
<td class="table-center order_item_2">12</td>
<td>
<a href="detail.html?id=542094&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260312152431936013</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>免拆清洗节气门</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
冀J7688H</td>
<td>
张晨 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>15231765377 </td>
<td class="money_p order_item_8">
¥100.00 </td>
<td class="table-center fixed-width-100">
2026-03-12 15:24:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-12 15:24:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=542094&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="542094" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="542094" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="541372" disabled/></td>
<td class="table-center order_item_2">13</td>
<td>
<a href="detail.html?id=541372&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260309173646627910</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换节温器盖<br/>添加防冻液<br/>工费<br/>更换机滤限压阀</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
冀JWM399</td>
<td>
高翔 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13931763551 </td>
<td class="money_p order_item_8">
¥555.00 </td>
<td class="table-center fixed-width-100">
2026-03-09 17:36:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-09 17:36:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=541372&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="541372" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="541372" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="541244" disabled/></td>
<td class="table-center order_item_2">14</td>
<td>
<a href="detail.html?id=541244&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260309115227464412</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>工费<br/>更换前减弹簧</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
冀J5M3M8</td>
<td>
李娟 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>15130714816 </td>
<td class="money_p order_item_8">
¥260.00 </td>
<td class="table-center fixed-width-100">
2026-03-09 11:52:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-09 11:52:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=541244&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="541244" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="541244" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="541218" disabled/></td>
<td class="table-center order_item_2">15</td>
<td>
<a href="detail.html?id=541218&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260309104811826148</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换升降器架前右</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
冀J80K86</td>
<td>
王昆 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13785798911 </td>
<td class="money_p order_item_8">
¥220.00 </td>
<td class="table-center fixed-width-100">
2026-03-09 10:48:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-09 11:52:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=541218&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="541218" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="541218" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="541131" disabled/></td>
<td class="table-center order_item_2">16</td>
<td>
<a href="detail.html?id=541131&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260308174242677121</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>添加1升机油</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/default.png" alt="" >
冀JUS259</td>
<td>
史振辉 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>15511766123 </td>
<td class="money_p order_item_8">
¥100.00 </td>
<td class="table-center fixed-width-100">
2026-03-08 17:42:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-12 20:11:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=541131&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="541131" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="541131" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="541027" disabled/></td>
<td class="table-center order_item_2">17</td>
<td>
<a href="detail.html?id=541027&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260308121455918610</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换进气软管<br/>工费<br/>更换氧传感器<br/>更换三元催化总成</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_1_30.png" alt="" >
沪C666JU</td>
<td>
<svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>13011994818 </td>
<td class="money_p order_item_8">
¥890.00 </td>
<td class="table-center fixed-width-100">
2026-03-08 12:14:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-08 13:12:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=541027&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="541027" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="541027" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="540977" disabled/></td>
<td class="table-center order_item_2">18</td>
<td>
<a href="detail.html?id=540977&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260308095623061027</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>添加防冻液</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_33_30.png" alt="" >
冀J00DS7</td>
<td>
赵强 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>15103276788 </td>
<td class="money_p order_item_8">
¥25.00 </td>
<td class="table-center fixed-width-100">
2026-03-08 09:56:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-08 09:56:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=540977&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="540977" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="540977" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="540903" disabled/></td>
<td class="table-center order_item_2">19</td>
<td>
<a href="detail.html?id=540903&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260307170220893812</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换刹车油<br/>工费<br/>更换真空助力泵</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_181_30.png" alt="" >
冀JGT953</td>
<td>
<svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>18633727196 </td>
<td class="money_p order_item_8">
¥660.00 </td>
<td class="table-center fixed-width-100">
2026-03-07 17:01:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-07 17:02:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=540903&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="540903" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="540903" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
<tr class="order_item">
<td class="head_th"><input type="checkbox" class="checkbox" data-id="540745" disabled/></td>
<td class="table-center order_item_2">20</td>
<td>
<a href="detail.html?id=540745&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0"> 260307103909907029</a>
<br>
<span style="color: #999">维修</span>
</td>
<td>更换右后门玻璃托架<br/>工费</td>
<td class="order_item_5" style="min-width:100px;">
<img class="img brand-code" src="/res/brand/b_3_30.png" alt="" >
冀J0G0G7</td>
<td>
马亮 <svg t="1517366896880" class="icon" style="width: 1.4em;height: 1.2em;vertical-align: text-top;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2635" data-spm-anchor-id="a313x.7781069.0.i2"><path d="M512 981.310735c-259.193227 0-469.310735-210.117508-469.310735-469.310735S252.806773 42.689265 512 42.689265s469.310735 210.117508 469.310735 469.310735-210.117508 469.310735-469.310735 469.310735z m0-209.556736c27.072589 3.721765 54.54529-10.30981 66.699098-36.374442l162.277944-348.004949c9.957793-21.355377 0.719384-46.739511-20.635993-56.698327l-38.667672-18.030655c-21.355377-9.957793-46.739511-0.719384-56.698326 20.635993L512 575.557548 399.024949 333.282642c-9.957793-21.355377-35.342949-30.594809-56.698326-20.635992l-38.667672 18.030655c-21.355377 9.957793-30.594809 35.342949-20.635993 56.698326l162.277944 348.004949c12.153808 26.063609 39.626509 40.096207 66.699098 36.373419z" p-id="2636" fill="#ffb608"></path></svg>
<br>19933718588 </td>
<td class="money_p order_item_8">
¥80.00 </td>
<td class="table-center fixed-width-100">
2026-03-07 10:38:00 </td>
<td class="table-center fixed-width-100">
张丽 </td>
<td class="table-center fixed-width-100">
<p>张丽</p>
<p>2026-03-07 10:39:00</p>
</td>
<td class="table-center">/</td>
<td class="process table-center">已完工</td>
<td class="table-center">
<span >已结算</span>
</td>
<td class="link table-center order_item_15 " >
<a href="detail.html?id=540745&refer=https%3A%2F%2Fscrm.h1cd.com%2Fadmin%2Fbillings%2FProducts.html%3FstoreId%3D0%26type%3D1%26receive_by%3D%26is_out%3D%26is_end%3D%26timeStart%3D2026-02-01%26timeEnd%3D%26search%3D%26status%3D0">详情</a>
<a class="work_edit font-gray" href="javascript:;" onclick="" data-id="540745" data-url="javascript:void(0);">编辑</a>
<a class="work_end font-gray" href="javascript:void(0);" onclick="" data-out="0" data-num="0" data-store="12754">完工</a>
<a class="font-gray _settle" href="javascript:void(0);" onclick="" data-id="540745" data-out="0" data-end="2" data-type="1" data-num="0">结算</a>
</td>
</tr>
</table>
<div class="dataTables_paginate paging_full_numbers mt10 mr10"><span><span class="paginate_non page-number">共 69 条记录,页 1/4 </span>
<span class="paginate_non prev-page">首页</span>
<span class="paginate_non prev-page">上一页</span>
<a class="paginate_active">1</a><a href="/admin/billings/Products_2.html?storeId=0&type=1&receive_by=&is_out=&is_end=&timeStart=2026-02-01&timeEnd=&search=&status=0">2</a><a href="/admin/billings/Products_3.html?storeId=0&type=1&receive_by=&is_out=&is_end=&timeStart=2026-02-01&timeEnd=&search=&status=0">3</a><a href="/admin/billings/Products_4.html?storeId=0&type=1&receive_by=&is_out=&is_end=&timeStart=2026-02-01&timeEnd=&search=&status=0">4</a> <a href="/admin/billings/Products_2.html?storeId=0&type=1&receive_by=&is_out=&is_end=&timeStart=2026-02-01&timeEnd=&search=&status=0">下一页</a>
<a href="/admin/billings/Products_4.html?storeId=0&type=1&receive_by=&is_out=&is_end=&timeStart=2026-02-01&timeEnd=&search=&status=0">末页</a>
</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
<form id="endDialog" method="post" style="display: none">
<div id="content" style="margin: 30px auto; text-align: center; font-size: 14px;">是否确认完工</div>
<div style="text-align: center;">
<label style="cursor: pointer;" class="inline-element"><input type="checkbox" name="sms" value="1" checked/>短信通知</label>  
<label style="cursor: pointer;" class="inline-element"><input type="checkbox" name="wx" value="1" checked/>微信通知</label>
<span class="gray ml15 db mt10" id="messageFee">
<span style="color:red;">短信余额不足</span>,无法发送短信通知, <a href="javascript:;" onclick="openNewUrl()" style="color: #16946c;">点此充值</a>
</span>
<span class="gray ml15 db mt10">(微信通知车主须关注公众号并绑定)</span>
</div>
<input type="hidden" name="order_id" value="0"/>
</form>
<form id="settleDialog" method="post" style="display: none">
<p class="alert alert-info">勾选完成,立即可定制工单显示内容</p>
<p class="title-border mt20">开单与结算信息</p>
<div class="control-group mt20">
<div class="ptBox">
<label class="inline-element mr14 ml15"><input type="checkbox" name="1|created_at" value="1" />开单时间</label> 
<label style="margin-right: 28px" class="inline-element ml15"><input type="checkbox" name="1|receive_by" value="1" />接车人</label> 
<label class="inline-element mr14"><input type="checkbox" name="1|operator" value="1" />施工人员</label>  
<label class="inline-element mr14 ml15"><input type="checkbox" name="1|retailer" value="1" />销售人员</label>
   <label style="margin-right: 52px" class="inline-element ml15"><input type="checkbox" name="1|preget_price" value="1" />预收款</label>
<label class="inline-element mr14"><input type="checkbox" name="1|remark" value="1" />开单备注</label>
<label class="inline-element mr14 ml15"><input type="checkbox" name="1|settle_info" value="1" />结算信息</label>
<label class="inline-element mr14" style="margin-left: 16px"><input type="checkbox" name="1|deliver_time" value="1" />预计交车时间</label>
</div>
</div>
<p class="title-border">车辆信息</p>
<div class="control-group">
<div class="ptBox">
<label class="inline-element mr14 ml15"><input type="checkbox" name="2|chejia" value="1" />车架号</label>  
<label class="inline-element mr14 ml15"><input type="checkbox" name="2|carkilometre" value="1" />进厂公里</label>
<label class="inline-element mr14 ml15"><input type="checkbox" name="2|next_bylong" value="1" />下次保养公里</label>  
<label class="inline-element mr14" style="margin-left: -10px"><input type="checkbox" name="2|next_bytime" value="1" />下次保养时间</label>
</div>
</div>
</form>
<script src="/js/common/common.js?ver=2025082801"></script>
</body>
<script src="/@system/datePicker/WdatePicker.js?ver=2025082801"></script>
<script type="text/javascript" src="/js/layer/layer.js?ver=2025082801"></script>
<script type="text/javascript" src="/js/admin/jquery-migrate-1.2.1.js?ver=2025082801"></script>
<script>
/**
* 收银弹窗
* @param id
*/
function cash(id) {
layer.open({
type: 2,
title: '收银',
shade: 0.3,
scrollbar: false,
area: ['800px', '460px'],
content: 'cash.html?id=' + id
});
}
</script>
<script>
function direct () {
var arr = [];
arr['title'] = '下载中心';
arr['href'] = '/admin/Help/DownloadCenter.html';
parent.main.openTab(arr);
}
$(function () {
if ('products' === 'lists') {
if (parent.tab.getCurrentIFrame().attr('src').toLocaleLowerCase()
=== "Billings/Products.html".toLocaleLowerCase()) {
top.tab.setTitle('开单管理');
}
order.getAllSet();
}
});
var order = {
setDisplayContent:function () {
layer.open({
skin: 'ycf',
type: 1,
title: '定制工单显示内容',
area: ['530px', '380px'],
content: $('#settleDialog'),
btn: ['确定', '取消'],
yes: function(index){
order.getEdtSet();
layer.close(index);
}
});
},
getEdtSet: function () {
var edtArr = []; // 存储修改的数据
$('#settleDialog').find('input[type="checkbox" ]').each(function(){
var _thisVal = $(this).is(':checked') ? 1 : 0;
if ($(this).data('isshown') != _thisVal ) {
var param = $(this).attr('name') + '-' + _thisVal;
edtArr.push(param);
}
});
if (edtArr.length) {
order.edtArrSet(edtArr);
} else {
layer.msg('请勾选要修改的数据');
}
},
edtArrSet: function (data) {
$.post('Products-saveBillingSet.html', { data: data }, function(rs) {
if (rs.error === 0) {
layer.msg('操作成功');
setTimeout(function () {
window.location.reload();
}, 1500);
// $('#table-s').css('width','2500px')
} else {
layer.msg('保存失败,请重试');
}
});
},
getAllSet:function () {
$.get('Products-getBillingSet.html', { action: ""}, function (data) {
order.fillData(data);
});
},
fillData: function (data) {
var json = data;
var _this = '';
$(json).each(function (i) {
_this = $('input:checkbox[name="' + json[i].key + '"]');
if (json[i].value.is_shown == 0) {
_this.attr('data-isshown', 0);
_this.prop('checked', false);
} else {
_this.attr('data-isshown', 1);
_this.prop('checked', true);
}
});
},
};
function selectAll(dom) {
if ($(dom).is(':checked')) {
$('input:checkbox').prop('checked', true);
$('input:checkbox:disabled').prop('checked', false);
} else {
$('input:checkbox').prop('checked', false);
}
}
function openNewUrl() {
var url = '/admin/userCenter/messageFee.html?storeId=' + $("#messageFee").data('store');
var arr = [];
arr['title'] = '短信充值';
arr['href'] = url;
top.main.openTab(arr);
}
function endNotify(orderId, obj) {
if (orderId) {
var outOn = parseInt("1"), completionFlowOn = parseInt("0");
if (outOn && completionFlowOn) {
var isOut = $(obj).data('out');
var productNum = $(obj).data('num');
if (productNum && !parseInt(isOut)) {
layer.msg('该单还未出库');
return false;
}
}
$("#messageFee").data('store', '');
// 需要检查短信是否还有,如果没有话就提示
$.post('/admin/userCenter/messageFee-getMessageRemain.html', { 'storeId' : $(obj).data('store') }, function(data){
if(data.error == 0 && data.data.amount < 1){
$("#messageFee").show();
}else{
$("#messageFee").hide();
}
$("#messageFee").data('store', $(obj).data('store'));
$('#endDialog').attr('action', 'main-end' + App.URL_SUFFIX);
$('input[name="order_id"]').val(orderId);
$('#content').text('是否确认完工');
layer.open({
skin: 'ycf',
type: 1,
title: '完工通知',
area: ['400px', '240px'],
content: $('#endDialog'),
btn: ['完工', '取消'],
yes: function(index){
wordEnd(obj);
layer.close(index);
}
});
});
} else {
$("#messageFee").hide();
if ($("td input:checkbox:checked").length) {
$('#content').text('确定该' + $("td input:checkbox:checked").length + '项单据已完工?');
layer.open({
skin: 'ycf',
type: 1,
title: '批量完工通知',
area: ['400px', '240px'],
content: $('#endDialog'),
btn: ['确定', '取消'],
yes: function(index){
wordListEnd();
layer.close(index);
top.maskHide();
},
end:function () {
top.maskHide();
}
});
} else {
layer.msg('请先勾选单据再发送完工通知');
top.maskHide();
}
}
}
function wordListEnd() {
var count = $("td input:checkbox:checked").length;
$("td input:checkbox:checked").each(function (i) {
$('.list input:checkbox').prop('checked', false);
$(this).parents('tr').find('.work_end').addClass('font-gray').removeAttr('onclick');
$(this).parents('tr').find('.work_edit').addClass('font-gray').removeAttr('onclick');
$(this).parents('tr').find('.process').text('已完工');
$(this).parents('tr').find('td:last-child').find('._settle').data('end',1);
$(this).prop('disabled', true);
$('input[name="order_id"]').val($(this).data('id'));
$.post('main-end' + App.URL_SUFFIX, $('#endDialog').serialize()+'&type=2&count='+count+'&i='+i);
});
if ($("#endDialog input:checkbox:checked").length) {
layer.msg('已向勾选的客户发送完工通知');
} else {
layer.msg('操作成功');
}
}
function wordEnd(obj) {
if ($('input[name="order_id"]').val() > 0) {
$.post('main-end' + App.URL_SUFFIX, $('#endDialog').serialize(), function (data) {
if (data['error'] == 0) {
$(obj).addClass('font-gray').removeAttr('onclick');
$(obj).parents('td').find('.work_edit').addClass('font-gray').removeAttr('onclick');
$(obj).parents('tr').find('.process').text('已完工');
$(obj).parents('tr').find('.checkbox').prop('disabled', true);
$(obj).parents('td').find('._settle').data('end',1);
if ($("#endDialog input:checkbox:checked").length) {
layer.msg('已向客户发送完工通知');
} else {
layer.msg('操作成功');
}
}
});
} else {
wordListEnd();
}
}
function edit(dom) {
var id = $(dom).data('id');
window.location.href = $(dom).data('url');
}
var settleLayer;
function settlement(dom) {
var id = $(dom).data('id');
var isOut = parseInt($(dom).data('out'));
var productNum = $(dom).data('num');
var isEnd = parseInt($(dom).data('end'));
var type = parseInt($(dom).data('type'));
var outOn = parseInt("1");
var completionFlowOn = parseInt("0");
// 开启确认出库需先出完库在进行结算
if (type !== 4 && type !== 7 && outOn) {
if (completionFlowOn && !isEnd) {
layer.msg('该单还未完工');
return false;
}
if (productNum && !isOut) {
layer.msg('该单还未出库');
return false;
}
}
var url = "https://scrm.h1cd.com/admin/billings/settlement.html?id=" + id;
settleLayer = layer.open({
type: 2,
title: '结算收银',
shade: 0.3,
scrollbar: false,
area: ['800px', '500px'],
content: url,
end:function () {
top.maskHide();
}
});
}
function exportOrders(obj) {
$(obj).attr('disabled',true);
if (getCookie('orderExportAction')) {
var timeAfter = Math.round((getCookie('orderExportAction') - new Date().getTime() / 1000) / 60);
toast('导出太过频繁,请' + timeAfter + '分钟之后重试');
return;
}
$.post('lists-taskExport', $("#searchForm").serialize() ,function (res){
$(obj).attr('disabled',false);
if (res['code'] == 1) {
layer.confirm("<div class='t_align_center' style='padding: 20px 0'>预计2小时导出完毕,请耐心等待<br/>导出完毕,可前往<a href='javascript:void(0)' onclick='direct()' >“首页->下载中心”</a></div>", {
title: '导出提示',
btn: false
}, function (index) {
layer.close(index);
});
}else{
layer.confirm("<div class='t_align_center' style='padding: 20px 0'>"+res['msg']+"</div>", {
title: '导出提示',
btn: false
}, function (index) {
layer.close(index);
});
}
});
//$.StandardPost('lists/taskExport.html?storeId=0&type=1&receive_by=&is_out=&is_end=&timeStart=2026-02-01&timeEnd=&search=&status=0');
}
function autoCheck(taskId) {
var flag = false;
var that = this, ajaxLoad = function(){
$.ajax({
url: '/admin/markets/CarOwners-checkTask.html',
data: { taskId : taskId },
type: 'get',
success: function(msg){
if (msg && msg['qiniuUrl']) {
flag = true;
clearInterval(that.autoInterval);// 清除计时器
layer.msg('工单数据数据已导出,请下载');
var downloadHtml = "<a data-value='" + msg['taskId'] + "' onclick='caculateNum(this)' href=" + msg['qiniuUrl'] + ">下载</a>";
$(".download").html('');
$(".download").html(downloadHtml);
}
}
});
};
if(flag){
clearInterval(that.autoInterval);// 清除计时器
}else {
clearInterval(that.autoInterval);// 清除计时器
this.autoInterval = setInterval(ajaxLoad , 5000);
}
}
$.extend({
StandardPost: function (url, args) {
var form = $("<form method='post'></form>"),
input;
form.attr({ "action": url});
if (args) {
$.each(args, function (key, value) {
input = $("<input type='hidden'>");
input.attr({ "name": key});
input.val(value);
form.append(input);
});
}
form.appendTo(document.body);
form.submit();
document.body.removeChild(form[0]);
}
});
//tab栏选择触发
function changesubmit(status) {
$('[name="status"]:input').val(status);
$("#searchForm").submit();
}
</script>
</html>