diff --git a/src/main.js b/src/main.js index cd311baa..0cd8f2f9 100644 --- a/src/main.js +++ b/src/main.js @@ -28,6 +28,7 @@ Vue.prototype.$cdn = 'https://cdn.cunwuyun.cn/dvcp/h5/'; Object.keys(utils).map((e) => (Vue.prototype['$' + e] = utils[e])); App.mpType = 'app'; // process.env.NODE_ENV == 'development' && new VConsole(); +new VConsole() const app = new Vue({ store, ...App diff --git a/src/sass/AppNotification/add.vue b/src/sass/AppNotification/add.vue index ef72f41b..03efb273 100644 --- a/src/sass/AppNotification/add.vue +++ b/src/sass/AppNotification/add.vue @@ -107,6 +107,7 @@ export default { methods: { ...mapActions(['selectPrivilegedContact']), handleSelectUser() { + console.log(this.form.ticket) if (this.clickedUserSelect) return this.$u.toast("正在打开人员选择器") this.clickedUserSelect = true this.selectPrivilegedContact({ @@ -114,6 +115,7 @@ export default { selectedTickets: this.form.ticket, selectedOpenUserIds: this.form.persons?.map(e => e.id) }).then(res => { + console.log(res.selectedTicket) this.form.persons = res.userList?.map(e => ({id: e.openUserId})) || [] this.form.ticket = res?.selectedTicket this.clickedUserSelect = false