import PickUserView from "../main/pick/PickUserView"; import store from "../../store"; export default { install(Vue) { Vue.prototype.$pickContact = function (options) { let beforeClose = (event) => { if (event.params.confirm) { let users = event.params.users; options.successCB && options.successCB(users); } else { options.failCB && options.failCB(-1); } }; this.$modal.show( PickUserView, { users: options.users ? options.users : store.state.contact.favContactList.concat(store.state.contact.friendList), initialCheckedUsers: options.initialCheckedUsers, uncheckableUsers: options.uncheckableUsers, showCategoryLabel: options.showCategoryLabel !== false, showOrganization: !!options.showOrganization, confirmTitle: options.confirmTitle ? options.confirmTitle : '确定', }, { name: 'pick-user-modal', width: 600, height: 480, clickToClose: false, }, { // 'before-open': this.beforeOpen, 'before-close': beforeClose, // 'closed': this.closed, }) }; } }