|
@@ -94,7 +94,7 @@
|
|
|
</div>
|
|
|
<div class="row cl">
|
|
|
<label class="form-label col-1 col-sm-1">用户信息:</label>
|
|
|
- <div class="formControls col-5 col-sm-5">
|
|
|
+ <div class="formControls col-5 col-sm-5" style="margin-top: 2px;">
|
|
|
<label id="customerName"></label>
|
|
|
<label id="customerTel"></label>
|
|
|
</div>
|
|
@@ -165,7 +165,7 @@
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
- <div class="row cl">
|
|
|
+ <div class="row cl" id="sendMergeAddressDiv">
|
|
|
<label class="form-label col-1 col-sm-1">收货地址:</label>
|
|
|
<div class="formControls col-5 col-sm-5">
|
|
|
<label id="relationSendMergeAddress"></label>
|
|
@@ -181,7 +181,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="row cl">
|
|
|
- <label class="form-label col-1 col-sm-1">处理描述:</label>
|
|
|
+ <label class="form-label col-1 col-sm-1">客服备注:</label>
|
|
|
<div class="formControls col-7 col-sm-7" id="describeHandleDesc" style="border: 1px solid #ddd;">
|
|
|
</div>
|
|
|
</div>
|
|
@@ -289,7 +289,7 @@
|
|
|
$('#customerCounselType').html(customerCounsel);
|
|
|
$('#typeName').html(customer.typeName);
|
|
|
$('#describeTitle').html(customer.describeTitle);
|
|
|
- $('#questionProfile').html(customer.questionProfile);
|
|
|
+ $('#questionProfile').html(customer.describeHandleDesc);
|
|
|
$('#customerName').html(customer.customerName);
|
|
|
$('#customerTel').html(customer.customerTel);
|
|
|
var txtcustomerIsSolve = '';
|
|
@@ -299,8 +299,14 @@
|
|
|
case 3:txtcustomerIsSolve = '换新';break;
|
|
|
case 4:txtcustomerIsSolve = '维修';break;
|
|
|
case 5:txtcustomerIsSolve = '补发';break;
|
|
|
- case 6:txtcustomerIsSolve = '退货';break;
|
|
|
- case 7:txtcustomerIsSolve = '无理由退货';break;
|
|
|
+ case 6:
|
|
|
+ $('#sendMergeAddressDiv').hide();
|
|
|
+ txtcustomerIsSolve = '退货';
|
|
|
+ break;
|
|
|
+ case 7:
|
|
|
+ $('#sendMergeAddressDiv').hide();
|
|
|
+ txtcustomerIsSolve = '无理由退货';
|
|
|
+ break;
|
|
|
}
|
|
|
$('#customerIsSolve').html(txtcustomerIsSolve);
|
|
|
$('#companyName').html(convertUndefinedToEmpty(customer.companyName)+"-"+convertUndefinedToEmpty(customer.storeName));
|