...
|
...
|
@@ -44,7 +44,8 @@ |
|
|
width: 150,
|
|
|
editable : false,
|
|
|
data: [
|
|
|
{"text" : "违规类型", "value" : "32,33", "selected": true},
|
|
|
{"text" : "违规类型", "value" : "31,32,33", "selected": true},
|
|
|
{"text" : "卖家不卖", "value" : 31},
|
|
|
{"text" : "超时未发货", "value" : 32},
|
|
|
{"text" : "鉴定不通过", "value" : 33},
|
|
|
]
|
...
|
...
|
@@ -114,7 +115,7 @@ |
|
|
$("#uid").textbox("clear");
|
|
|
$("#merchantName").textbox("clear");
|
|
|
$("#orderCode").textbox("clear");
|
|
|
$("#violationType").combobox('setValue',"32,33");
|
|
|
$("#violationType").combobox('setValue',"31,32,33");
|
|
|
$("#marginTable").myDatagrid('loadData', []);
|
|
|
loadData();
|
|
|
}
|
...
|
...
|
@@ -128,7 +129,7 @@ |
|
|
param.merchantName = $('#merchantName').textbox('getText');
|
|
|
param.orderCode = $('#orderCode').textbox('getValue');
|
|
|
var stateList = $('#violationType').combobox('getValue').split(",");
|
|
|
param.stateList = stateList[0] == ""?[32,33]:stateList;
|
|
|
param.stateList = stateList[0] == ""?[31,32,33]:stateList;
|
|
|
if(pageNumber){
|
|
|
param.page=pageNumber;
|
|
|
}
|
...
|
...
|
|