|
|
@@ -540,7 +540,7 @@ export default {
|
|
|
{
|
|
|
prop: "managementSource",
|
|
|
label: "来源",
|
|
|
- sortable: false,
|
|
|
+ type: "text",
|
|
|
},
|
|
|
{
|
|
|
prop: "status",
|
|
|
@@ -710,6 +710,7 @@ export default {
|
|
|
.then((res) => {
|
|
|
if (res.code == 200 && res.data.records.length > 0) {
|
|
|
res.data.records.forEach((val) => {
|
|
|
+ val.managementSource=val.managementSource=='2'?"个代":"渠道"
|
|
|
if (val.sex && val.sex !== "" && val.sex !== null) {
|
|
|
val.sex = this.sexoptions.find(
|
|
|
(ele) => ele.value == val.sex
|
|
|
@@ -725,6 +726,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
this.tableConfig.loading = false;
|
|
|
+
|
|
|
this.pageResult = res.data.records;
|
|
|
this.pageData.pageNum = res.data.current;
|
|
|
this.pageData.pageSize = res.data.size;
|