...
|
...
|
@@ -60,8 +60,9 @@ new common.dropDown({el: "#brand-name", ajax: "brand"}); |
|
|
new common.dropDown({el: "#supplier-name", ajax: "supplier"});
|
|
|
new common.dropDown({el: "#shop-name", ajax: "queryShopNames", params: function() {
|
|
|
return {
|
|
|
"operationStatus": authority.operationStatus,
|
|
|
"checkStatusArr": authority.checkStatusArr
|
|
|
"checkStatus": (+t.active) ? 0 : common.util.__input("status"),
|
|
|
"operationStatus": (+t.active) ? 2 : authority.operationStatus, // 店铺表中只有创建和未创建两个状态,没有operation_status为0的店铺信息
|
|
|
"checkStatusArr": (+t.active) ? "100,200,300" : authority.checkStatusArr
|
|
|
};
|
|
|
}});
|
|
|
|
...
|
...
|
|