...
|
...
|
@@ -420,20 +420,17 @@ $(document).on("click", ".edit", function () { |
|
|
var goodsgird = new common.grid({
|
|
|
el: '#goodsgird',
|
|
|
parms: function () {
|
|
|
var beginPrice = 0, endPrice = 1000000;
|
|
|
if (common.util.__input('beginPrice')) {
|
|
|
beginPrice = common.util.__input('beginPrice');
|
|
|
var price = "";
|
|
|
if (common.util.__input('beginPrice')&&common.util.__input('endPrice')) {
|
|
|
price = common.util.__input('beginPrice')+","+common.util.__input('endPrice');
|
|
|
}
|
|
|
if (common.util.__input('endPrice')) {
|
|
|
endPrice = common.util.__input('endPrice')
|
|
|
}
|
|
|
return {//status=1&sales=Y&stocknumber=1&attribute_not=2
|
|
|
return {
|
|
|
status:1,
|
|
|
sales:"Y",
|
|
|
stocknumber:"1",
|
|
|
attribute_not:"2",
|
|
|
query: common.util.__input('skns'),
|
|
|
price: beginPrice + "," + endPrice
|
|
|
price: price
|
|
|
};
|
|
|
},
|
|
|
columns: [
|
...
|
...
|
|