|
|
|
@ -14,6 +14,7 @@
|
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
|
|
<Table
|
|
|
|
|
:loading="loading"
|
|
|
|
|
:columns="columns1"
|
|
|
|
|
:data="data1"
|
|
|
|
|
style="margin-top: 20px;"
|
|
|
|
@ -206,7 +207,7 @@ import staff from "../../services/staff/staff";
|
|
|
|
|
showStoreName: '',
|
|
|
|
|
showStoreCode: '',
|
|
|
|
|
qrCodeImage: '',
|
|
|
|
|
loading: true,
|
|
|
|
|
loading: false,
|
|
|
|
|
spuLoading: false,
|
|
|
|
|
// 分页
|
|
|
|
|
total: 0,
|
|
|
|
@ -308,6 +309,7 @@ import staff from "../../services/staff/staff";
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
listOfLogistics() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let that = this;
|
|
|
|
|
let request = {
|
|
|
|
|
shopId: that.selectedStore,
|
|
|
|
@ -315,6 +317,7 @@ import staff from "../../services/staff/staff";
|
|
|
|
|
pageSize: that.pageSize,
|
|
|
|
|
};
|
|
|
|
|
staff.getStaffList(request, function (data) {
|
|
|
|
|
that.loading = false;
|
|
|
|
|
data = data.data;
|
|
|
|
|
if (data.code == "0000") {
|
|
|
|
|
|
|
|
|
@ -331,7 +334,9 @@ import staff from "../../services/staff/staff";
|
|
|
|
|
}
|
|
|
|
|
that.data1 = datas.records;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}, function () {
|
|
|
|
|
that.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//区域用户下的区域
|
|
|
|
|
downRegionData: function () {
|
|
|
|
|