Merge branch 'master-V32-XuHaoJie' into 'master'
杭州-乙方运维-电子税务局特殊处理 See merge request !325
Showing
1 changed file
with
5 additions
and
1 deletions
@@ -142,7 +142,11 @@ export default { | @@ -142,7 +142,11 @@ export default { | ||
142 | 142 | ||
143 | // 柱状图 | 143 | // 柱状图 |
144 | let score = () => { | 144 | let score = () => { |
145 | - proxy.$http.post("/api-web/bOpsScore/scoreRatio", {}, function (res) { | 145 | + let url = "/api-web/bOpsScore/scoreRatio"; |
146 | + if (props.projectId == 1) { | ||
147 | + url = "/api-web/bOpsScore/scoreRatio?ops=dzswj" | ||
148 | + } | ||
149 | + proxy.$http.post(url, {}, function (res) { | ||
146 | if (res && res.data) { | 150 | if (res && res.data) { |
147 | let arr = []; | 151 | let arr = []; |
148 | res.data.forEach(item => { | 152 | res.data.forEach(item => { |
-
Please register or login to post a comment