Merge branch 'master-V32-XuHaoJie' into 'master'
杭州-对比分析-编辑时优化已添加和未添加列表 See merge request !155
Showing
1 changed file
with
6 additions
and
6 deletions
@@ -199,8 +199,8 @@ export default { | @@ -199,8 +199,8 @@ export default { | ||
199 | kpiId: kpiTypeArr.value.join(','), | 199 | kpiId: kpiTypeArr.value.join(','), |
200 | busId: busTypeArr.value.join(','), | 200 | busId: busTypeArr.value.join(','), |
201 | configId: config.value, | 201 | configId: config.value, |
202 | - page:2, | ||
203 | - limit:10 | 202 | + page: 1, |
203 | + limit: 50 | ||
204 | } | 204 | } |
205 | } | 205 | } |
206 | 206 | ||
@@ -210,8 +210,8 @@ export default { | @@ -210,8 +210,8 @@ export default { | ||
210 | // } | 210 | // } |
211 | 211 | ||
212 | proxy.$http.get(`/api-web/ContrastAnalysis/added`, getParams(), function (res) { | 212 | proxy.$http.get(`/api-web/ContrastAnalysis/added`, getParams(), function (res) { |
213 | - if (res && res.data) { | ||
214 | - proxy.countFirst=res.count; | 213 | + if (res && res.success) { |
214 | + proxy.countFirst = res.count; | ||
215 | tabFirstList.value = res.data; | 215 | tabFirstList.value = res.data; |
216 | } | 216 | } |
217 | }); | 217 | }); |
@@ -222,8 +222,8 @@ export default { | @@ -222,8 +222,8 @@ export default { | ||
222 | // return false; | 222 | // return false; |
223 | // } | 223 | // } |
224 | proxy.$http.get(`/api-web/ContrastAnalysis/notAdded`, getParams(), function (res) { | 224 | proxy.$http.get(`/api-web/ContrastAnalysis/notAdded`, getParams(), function (res) { |
225 | - if (res && res.data) { | ||
226 | - proxy.count=res.count; | 225 | + if (res && res.success) { |
226 | + proxy.count = res.count; | ||
227 | tabSecondList.value = res.data; | 227 | tabSecondList.value = res.data; |
228 | } | 228 | } |
229 | }); | 229 | }); |
-
Please register or login to post a comment