From 51a31609472b9219d414ff3100edbea7da09d2aa Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Wed, 19 Jan 2022 16:57:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/sass/AppNotification/add.vue | 7 ------- src/store/index.js | 2 ++ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/sass/AppNotification/add.vue b/src/sass/AppNotification/add.vue index dea30e0a..725f29ab 100644 --- a/src/sass/AppNotification/add.vue +++ b/src/sass/AppNotification/add.vue @@ -108,8 +108,6 @@ export default { methods: { ...mapActions(['selectPrivilegedContact']), handleSelectUser() { - console.log(this.form.ticket) - console.log(this.form.persons) if (this.clickedUserSelect) return this.$u.toast("正在打开人员选择器") this.clickedUserSelect = true this.selectPrivilegedContact({ @@ -117,16 +115,11 @@ export default { selectedTickets: this.form.ticket ? [this.form.ticket] : [], selectedOpenUserIds: this.form.persons ? this.form.persons.map(e => e.id) : [] }).then(res => { - console.log('ticket-----') - console.log(res.selectedTicket) - console.log('返回结果') - console.log(res) this.form.persons = res.userList?.map(e => ({id: e.openUserId})) || [] this.form.ticket = res.selectedTicket this.selectedUserCount = res.selectedUserCount this.clickedUserSelect = false }).catch(e => { - console.log('错误信息') console.log(e) this.clickedUserSelect = false }) diff --git a/src/store/index.js b/src/store/index.js index 9be8e9b2..6ed25453 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -363,6 +363,8 @@ const store = new Vuex.Store({ mode: "multi", ...params }, res => { + console.log(111) + console.log(res) if (res.err_msg == "selectPrivilegedContact:ok") { if (typeof res.result == 'string') { res.result = JSON.parse(res.result)