|
@@ -39,10 +39,10 @@
|
|
|
<div class="text-c">
|
|
|
<form action="${path}/admin/customer/select_customer_list" method="post">
|
|
|
<button type="button" style="cursor:pointer; float: left;height: 35px;margin-right: 30px;margin-bottom: 10px;" class="my-btn-search" onclick="toAddCustomer();">新建客诉</button>
|
|
|
- <input type="text" class="my-input" style="width:90px;margin-right: 0px; margin-bottom: 10px;" value="${customerInfo.customerId!}" placeholder="客诉编号" id="customerId" name="customerId">
|
|
|
- <input type="text" class="my-input" style="width:90px;margin-right: 0px;margin-bottom: 10px;" value="${customerInfo.sendLogisticsNo!}" placeholder="物流编号" id="sendLogisticsNo" name="sendLogisticsNo">
|
|
|
- <input type="text" class="my-input" style="width:90px;margin-right: 0px;margin-bottom: 10px;" value="${customerInfo.customerName!}" placeholder="请输入姓名" id="customerName" name="customerName">
|
|
|
- <input type="text" class="my-input" style="width:90px;margin-right: 0px;margin-bottom: 10px;" value="${customerInfo.customerTel!}" placeholder="请输入电话号码" id="customerTel" name="customerTel">
|
|
|
+ <input type="text" class="my-input trim_input" style="width:90px;margin-right: 0px; margin-bottom: 10px;" value="${customerInfo.customerId!}" placeholder="客诉编号" id="customerId" name="customerId">
|
|
|
+ <input type="text" class="my-input trim_input" style="width:90px;margin-right: 0px;margin-bottom: 10px;" value="${customerInfo.sendLogisticsNo!}" placeholder="物流编号" id="sendLogisticsNo" name="sendLogisticsNo">
|
|
|
+ <input type="text" class="my-input trim_input" style="width:90px;margin-right: 0px;margin-bottom: 10px;" value="${customerInfo.customerName!}" placeholder="请输入姓名" id="customerName" name="customerName">
|
|
|
+ <input type="text" class="my-input trim_input" style="width:90px;margin-right: 0px;margin-bottom: 10px;" value="${customerInfo.customerTel!}" placeholder="请输入电话号码" id="customerTel" name="customerTel">
|
|
|
<input type="text" style="width:90px;height:36px;margin-right: 0px;margin-bottom: 10px;" name="startTime" id="startTime" class="input-text" placeholder="开始时间" onClick="WdatePicker({ dateFmt:'yyyy-MM-dd',skin:'whyGreen' })" value="${(customerInfo.startTime?string("yyyy-MM-dd"))!''}" readonly="readonly"/>-
|
|
|
<input type="text" style="width:90px;height:36px;margin-right: 0px;margin-bottom: 10px;" name="endTime" id="endTime" class="input-text" placeholder="结束时间" onClick="WdatePicker({ dateFmt:'yyyy-MM-dd',skin:'whyGreen' })" value="${(customerInfo.endTime?string("yyyy-MM-dd"))!''}" readonly="readonly"/>
|
|
|
|
|
@@ -752,6 +752,12 @@
|
|
|
function openLogistics(title, url, w, h) {
|
|
|
layer_show(title,url,w,h);
|
|
|
}
|
|
|
+
|
|
|
+ /* 所有trim_input 样式,input框都需要去除前后空格*/
|
|
|
+ $(".trim_input").change(function(){
|
|
|
+ var value = $.trim($(this).val());
|
|
|
+ $(this).val(value);
|
|
|
+ })
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|