Authored by 陶雨

1、上架审核全部添加数量显示

2、供应商审核审核添加延时
... ... @@ -170,7 +170,7 @@ var t = new common.tab({
value: '1,4,7'
}, {
name: "all",
display: "全部商品",
display: "全部商品({all})",
value: '2,3,4,5,6,7'
}]
}).init(ENUM.tips);
... ... @@ -360,6 +360,7 @@ var loadTab = function() {
url: "/supplier/baseproduct/auditCount",
data: g.options.parms()
}, function(res) {
res.data["all"] = res.data["1"] + res.data["2"] + res.data["3"];
var __dt = $.extend({}, ENUM.tips, res.data);
t.init(__dt);
}, true);
... ...
... ... @@ -18,7 +18,9 @@ var $ = require('jquery'),
url:'/supplier/index/status',
data:fn()
},function(){
history.go(-1);
setTimeout(function() {
history.go(-1)
}, 1000);
});
});
},
... ...