|
|
|
@ -248,6 +248,10 @@
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (data.code === '0000') {
|
|
|
|
|
that.shopList.push({
|
|
|
|
|
id:'-1',
|
|
|
|
|
name:"全部"
|
|
|
|
|
});
|
|
|
|
|
data = data.results;
|
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
|
|
|
let row = data[i];
|
|
|
|
@ -264,12 +268,16 @@
|
|
|
|
|
if(that.changeRoleId === 0){
|
|
|
|
|
roleId = null;
|
|
|
|
|
}
|
|
|
|
|
let shopId = that.changeShopId;
|
|
|
|
|
if(that.changeShopId === "-1"){
|
|
|
|
|
shopId = null;
|
|
|
|
|
}
|
|
|
|
|
let request = {
|
|
|
|
|
searchContent: that.searchContent,
|
|
|
|
|
pageNum: that.pageNum,
|
|
|
|
|
pageSize: that.pageSize,
|
|
|
|
|
roleId: roleId,
|
|
|
|
|
shopId: that.changeShopId
|
|
|
|
|
shopId: shopId
|
|
|
|
|
};
|
|
|
|
|
accountManagement.listAccountInfoApi(request, function (data) {
|
|
|
|
|
data = data.data;
|
|
|
|
|