25284
This commit is contained in:
@@ -152,10 +152,12 @@
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
count(sta) {
|
count(sta) {
|
||||||
return this.detail.attendees?.filter(e => e.joinStatus == sta)?.length;
|
return this.detail.attendees ? this.detail.attendees?.filter(e => e.joinStatus == sta)?.length : 0;
|
||||||
},
|
},
|
||||||
change(index) {
|
change(index) {
|
||||||
this.current = index;
|
this.current = index;
|
||||||
|
this.detail = {};
|
||||||
|
this.getDetail();
|
||||||
},
|
},
|
||||||
call(item) {
|
call(item) {
|
||||||
if (item.phone) {
|
if (item.phone) {
|
||||||
|
|||||||
@@ -124,11 +124,11 @@
|
|||||||
handleSelectUser() {
|
handleSelectUser() {
|
||||||
this.selectEnterpriseContact({
|
this.selectEnterpriseContact({
|
||||||
fromDepartmentId:0,
|
fromDepartmentId:0,
|
||||||
type:["user"],
|
type:["user","department"],
|
||||||
selectedUserIds: this.form.persons?.map(e=>e.id)
|
selectedUserIds: this.form.persons?.map(e=>e.id)
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
console.log(res);
|
||||||
this.form.persons = res?.userList || []
|
this.form.persons = res?.userList || []
|
||||||
console.log(this.form.persons);
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
confirm(e){
|
confirm(e){
|
||||||
|
|||||||
Reference in New Issue
Block a user