|
|
|
@ -132,6 +132,7 @@
|
|
|
|
|
sellerList: [{"id":1,"name":"一区"},{"id":2,"name":"二大区"}],
|
|
|
|
|
customerData: {},
|
|
|
|
|
vipModalWidth: 997,
|
|
|
|
|
accUserId: JSON.parse(sessionStorage.getItem("loginInfo")).userId,
|
|
|
|
|
columns1: [
|
|
|
|
|
{
|
|
|
|
|
title: '序号',
|
|
|
|
@ -239,7 +240,7 @@
|
|
|
|
|
let that = this;
|
|
|
|
|
that.data1 = [];
|
|
|
|
|
let request =
|
|
|
|
|
{ userId: 13,
|
|
|
|
|
{ userId: that.accUserId,
|
|
|
|
|
startDate: that.startDate,
|
|
|
|
|
endDate: that.endDate,
|
|
|
|
|
regionId: that.changeData(that.regionId),
|
|
|
|
@ -269,7 +270,7 @@
|
|
|
|
|
downSellerData: function () {
|
|
|
|
|
let that = this;
|
|
|
|
|
that.sellerList = [{"id":0,"name":"全部"}];
|
|
|
|
|
let request = {userId: 13, regionId: that.changeData(that.regionId), shopId:that.changeData( that.shopId)};
|
|
|
|
|
let request = {userId: that.accUserId, regionId: that.changeData(that.regionId), shopId:that.changeData( that.shopId)};
|
|
|
|
|
customerDetail.downSellerData(request, function (data) {
|
|
|
|
|
data = data.data.results;
|
|
|
|
|
if(data){
|
|
|
|
@ -286,7 +287,7 @@
|
|
|
|
|
let that = this;
|
|
|
|
|
that.shopList = [{"id":0,"name":"全部"}];
|
|
|
|
|
let request =
|
|
|
|
|
{userId: 13,regionId: that.changeData(that.regionId)};
|
|
|
|
|
{userId: that.accUserId,regionId: that.changeData(that.regionId)};
|
|
|
|
|
customerDetail.downShopData(request, function (data) {
|
|
|
|
|
data = data.data.results;
|
|
|
|
|
if(data){
|
|
|
|
@ -303,7 +304,7 @@
|
|
|
|
|
let that = this;
|
|
|
|
|
that.regionList = [{"id":0,"name":"全部"}];
|
|
|
|
|
let request =
|
|
|
|
|
{userId: 13};
|
|
|
|
|
{userId: that.accUserId};
|
|
|
|
|
customerDetail.downRegionData(request, function (data) {
|
|
|
|
|
data = data.data.results;
|
|
|
|
|
if(data){
|
|
|
|
|