liuzhen преди 5 години
родител
ревизия
7184881215

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

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

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

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

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

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

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

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

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

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

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

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

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

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