|
|
|
@ -269,7 +269,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
on: {
|
|
|
|
|
click: () => {
|
|
|
|
|
that.doShow(true,params.row)
|
|
|
|
|
that.doShow(true, params.row)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, '查看上下级'),
|
|
|
|
@ -366,7 +366,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
searchCustomerDataBtnClick: function () {
|
|
|
|
|
this.pageNum = 1;
|
|
|
|
|
this.getCheckList();
|
|
|
|
|
this.getPromoterList();
|
|
|
|
|
},
|
|
|
|
|
// 双击row跳转详情页面
|
|
|
|
|
onDblClickRowLister: function (row) {
|
|
|
|
@ -375,7 +375,7 @@ export default {
|
|
|
|
|
//切页处理
|
|
|
|
|
handlePage: function (value) {
|
|
|
|
|
this.pageNum = value;
|
|
|
|
|
this.getCheckList();
|
|
|
|
|
this.getPromoterList();
|
|
|
|
|
},
|
|
|
|
|
getPromoterList () {
|
|
|
|
|
let that = this;
|
|
|
|
@ -439,7 +439,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
show (index) {
|
|
|
|
|
if (index.level >= 3) {
|
|
|
|
|
that.$Message.error(`${index.name}的等级已是最高`);
|
|
|
|
|
this.$Message.error(`${index.name}的等级已是最高`);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
this.isShow = true;
|
|
|
|
@ -464,9 +464,9 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.upgradeStr = `确认将${index.name}从${str}升级成${next}吗?`;
|
|
|
|
|
},
|
|
|
|
|
doShow (ishow,currData) {
|
|
|
|
|
doShow (ishow, currData) {
|
|
|
|
|
this.showrecruit = ishow;
|
|
|
|
|
if(ishow){
|
|
|
|
|
if (ishow) {
|
|
|
|
|
this.recruitSchedule = currData;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|