feature_0521
zhenghuang 5 years ago
parent a71fcce257
commit 5c4d15a0dc

@ -312,7 +312,7 @@ export default {
} }
}, },
{ {
title: "加入时间", title: "提交时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.joinTime)); return h("span", formatDate(params.row.joinTime));
@ -387,14 +387,14 @@ export default {
} }
}, },
{ {
title: "导购", title: "发展人",
width: 80, width: 80,
render: (h, params) => { render: (h, params) => {
return h("span", params.row.fissionUser.name); return h("span", params.row.fissionUser.name);
} }
}, },
{ {
title: "加入时间", title: "提交时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.joinTime)); return h("span", formatDate(params.row.joinTime));
@ -472,14 +472,14 @@ export default {
} }
}, },
{ {
title: "导购", title: "发展人",
width: 80, width: 80,
render: (h, params) => { render: (h, params) => {
return h("span", params.row.fissionUser.name); return h("span", params.row.fissionUser.name);
} }
}, },
{ {
title: "加入时间", title: "提交时间",
width: 120, width: 120,
render: (h, params) => { render: (h, params) => {
return h("span", formatDate(params.row.joinTime)); return h("span", formatDate(params.row.joinTime));

@ -393,6 +393,12 @@ export default {
start: that.selectDate[0] === "" || that.selectDate.length == 0 ? null : that.selectDate[0], start: that.selectDate[0] === "" || that.selectDate.length == 0 ? null : that.selectDate[0],
end: that.selectDate[1] === "" || that.selectDate.length == 0 ? null : that.selectDate[1], end: that.selectDate[1] === "" || that.selectDate.length == 0 ? null : that.selectDate[1],
}; };
if (request.storeId <= 0) {
request.storeId = undefined
}
if (request.companyId <= 0) {
request.companyId = undefined
}
bulletinService.promoterList(request, function (data) { bulletinService.promoterList(request, function (data) {
that.loading = false; that.loading = false;
if (data.data.code == "0000") { if (data.data.code == "0000") {

Loading…
Cancel
Save