purchaseAppeal.js
3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
$(document).ready(function() {
/*** 查询表单验证 validator 变量为全局变量*/
globalValidator=$("#queryForm").validate({
rules:{
id:{
maxlength:19,
minlength:0,
min:1,
digits:true
},
orderId:{
maxlength:19,
minlength:0,
min:1,
digits:true
}
},
messages:{
id:{
maxlength: "最大允许输入19位数字!"
},
orderId:{
maxlength: "最大允许输入19位数字!"
}
}
});
// //处理
$("a[name='toAuditAgentSaleAppeal']").click(function(){
var reOrderId=$(this).attr("data");
window.location="/reOrder/purchase/appeal/audit/"+reOrderId+"?backUrl="+ base64encode(utf16to8(window.location));
});
//详情
$("a[name='viewAgentSaleAppeal']").click(function(){
var reOrderId=$(this).attr("data");
window.location="/reOrder/purchase/appeal/"+reOrderId+"?backUrl="+ base64encode(utf16to8(window.location));
});
$("#queryBtn").click(function(){
$("#queryForm").validate();
if($("#queryForm").valid()){
XUI.form.submit();
}
});
//提交退款申诉仲裁
$("a[name='submitAppealAuditBtn']").click(function(){
$('#appealAuditForm').ajaxForm(options);
XUI.window.confirm(function(){
$("#appealAuditForm").submit();
//修改错误提示显示
$("i").css("position","relative");
$("i").css("display","");
$("i").css("font-style","normal");
$("label[for=appealAuditComment]").css("top","0");
});
});
$("a[name='toViewThirdSaleReOrder']").click(function(){
var id = $(this).attr("data");
window.location.href="/reOrder/purchase/"+id+"?backUrl="+ base64encode(utf16to8(XUI.form.backUrl()));
});
$("a[name='toViewPurchaseOrder']").click(function(){
var id = $(this).attr("data");
window.location.href="/purchase/tabbasic/"+id;
});
//
var options = {
beforeSubmit:function(){
},
success:function(responseText, statusText, xhr){
alert(responseText.result);
if(XUI.check.isRequestExecutedSuccess(responseText)){
XUI.history.goBack($("#hiddenBackUrl").val());
}
return;
},
error:function(responseText, statusText, xhr){
alert(responseText);
}
};
//
//
// $("form[name=appealAuditForm]").validate({
// rules : {
// appealRealPrice : {
// required : true,
// range:[0.01,999999999999999.00],
// number : true
// },
// auditResult : {
// required : true,
// },
// appealAuditComment : {
// required : true,
// }
// },
// messages : {
// appealRealPrice : {
// required : "实际退款金额填写错误!",
// range: $.validator.format("实际退款金额填写错误!")
// }
// }
// });
//
//
// $("input[name=auditResult]").click(function(){
// var value=$(this).val();
// if(value=="70"){
// $("input[name=appealRealPrice]").attr("disabled","true");
// }else{
// $("input[name=appealRealPrice]").removeAttr("disabled");
// }
// });
//
// $("input[name=appealAuditComment]").change(function(){
// $("input[name=appealAuditComment]").css("width","100%");
// });
//
//
});