liuzhen 5 anni fa
parent
commit
7184881215

+ 1 - 1
fuwaiCallCenterWeb.UI/src/views/systemSetup/roleSetting/menuSetup/index.vue

85
   },
85
   },
86
   methods: {
86
   methods: {
87
     getDatas() {
87
     getDatas() {
88
-      getMenuLists(this.keyword).then(response => {
88
+      getMenuLists(this.keyword.trim()).then(response => {
89
         this.loading = false
89
         this.loading = false
90
         this.menuData = this.$options.methods.buildTree(response.rows)
90
         this.menuData = this.$options.methods.buildTree(response.rows)
91
       })
91
       })

+ 1 - 1
fuwaiCallCenterWeb.UI/src/views/trafficData/IVRCallOut/index.vue

93
         const params = {
93
         const params = {
94
           pageindex: this.pageParams.pageindex, // 第几页
94
           pageindex: this.pageParams.pageindex, // 第几页
95
           pagesize: this.pageParams.pagesize, // 每页几条信息
95
           pagesize: this.pageParams.pagesize, // 每页几条信息
96
-          keyword: this.keyword //	否	string	模糊查询(呼叫号码)
96
+          keyword: this.keyword.trim() //	否	string	模糊查询(呼叫号码)
97
         }
97
         }
98
         getIVRCalloutRecord(params).then(response => {
98
         getIVRCalloutRecord(params).then(response => {
99
           this.loading = false
99
           this.loading = false

+ 1 - 1
fuwaiCallCenterWeb.UI/src/views/trafficData/extensionCallin/index.vue

145
         const params = {
145
         const params = {
146
           pageindex: this.pageParams.pageindex, // 第几页
146
           pageindex: this.pageParams.pageindex, // 第几页
147
           pagesize: this.pageParams.pagesize, // 每页几条信息
147
           pagesize: this.pageParams.pagesize, // 每页几条信息
148
-          keyword: this.keyword //	否	string	模糊查询(呼叫号码)
148
+          keyword: this.keyword.trim() //	否	string	模糊查询(呼叫号码)
149
         }
149
         }
150
         getExtCallinList(params).then(response => {
150
         getExtCallinList(params).then(response => {
151
           this.loading = false
151
           this.loading = false

+ 1 - 1
fuwaiCallCenterWeb.UI/src/views/trafficData/outcryData/index.vue

106
         const params = {
106
         const params = {
107
           pageindex: this.pageParams.pageindex, // 第几页
107
           pageindex: this.pageParams.pageindex, // 第几页
108
           pagesize: this.pageParams.pagesize, // 每页几条信息
108
           pagesize: this.pageParams.pagesize, // 每页几条信息
109
-          keyword: this.keyword //	否	string	模糊查询(呼叫号码)
109
+          keyword: this.keyword.trim() //	否	string	模糊查询(呼叫号码)
110
         }
110
         }
111
         getCallOutList(params).then(response => {
111
         getCallOutList(params).then(response => {
112
           this.loading = false
112
           this.loading = false

+ 1 - 1
fuwaiCallCenterWeb.UI/src/views/trafficData/relayCallin/index.vue

140
         const params = {
140
         const params = {
141
           pageindex: this.pageParams.pageindex, // 第几页
141
           pageindex: this.pageParams.pageindex, // 第几页
142
           pagesize: this.pageParams.pagesize, // 每页几条信息
142
           pagesize: this.pageParams.pagesize, // 每页几条信息
143
-          keyword: this.keyword //	否	string	模糊查询(呼叫号码)
143
+          keyword: this.keyword.trim() //	否	string	模糊查询(呼叫号码)
144
         }
144
         }
145
         getMwtCallinList(params).then(response => {
145
         getMwtCallinList(params).then(response => {
146
           this.loading = false
146
           this.loading = false

+ 1 - 1
fuwaiCallCenterWeb.UI/src/views/trafficData/seatsTransfer/index.vue

109
         const params = {
109
         const params = {
110
           pageindex: this.pageParams.pageindex, // 第几页
110
           pageindex: this.pageParams.pageindex, // 第几页
111
           pagesize: this.pageParams.pagesize, // 每页几条信息
111
           pagesize: this.pageParams.pagesize, // 每页几条信息
112
-          keyword: this.keyword //	否	string	模糊查询(呼叫号码)
112
+          keyword: this.keyword.trim() //	否	string	模糊查询(呼叫号码)
113
         }
113
         }
114
         getCallTransferList(params).then(response => {
114
         getCallTransferList(params).then(response => {
115
           this.loading = false
115
           this.loading = false

+ 1 - 1
fuwaiCallCenterWeb.UI/src/views/trafficData/threePartyTelCalls/index.vue

113
         const params = {
113
         const params = {
114
           pageindex: this.pageParams.pageindex, // 第几页
114
           pageindex: this.pageParams.pageindex, // 第几页
115
           pagesize: this.pageParams.pagesize, // 每页几条信息
115
           pagesize: this.pageParams.pagesize, // 每页几条信息
116
-          keyword: this.keyword //	否	string	模糊查询(呼叫号码)
116
+          keyword: this.keyword.trim() //	否	string	模糊查询(呼叫号码)
117
         }
117
         }
118
         getThreeCallList(params).then(response => {
118
         getThreeCallList(params).then(response => {
119
           this.loading = false
119
           this.loading = false