diff --git a/src/api/ebiz/goodStart/index.js b/src/api/ebiz/goodStart/index.js index 3a16577aa..f2a8ec3bc 100644 --- a/src/api/ebiz/goodStart/index.js +++ b/src/api/ebiz/goodStart/index.js @@ -79,4 +79,14 @@ export function getBranchByUser(data) { method: 'post', data }) -} \ No newline at end of file +} + +//出单榜海报列表接口 +export function queryOutPosters(data) { + return request({ + url: getUrl(`/sale/makePosters/queryOutPosters`, 1), + method: 'post', + data + }) +} + diff --git a/src/assets/images/goodStart/tuli.png b/src/assets/images/goodStart/tuli.png index 2099319ae..a02fedbd5 100644 Binary files a/src/assets/images/goodStart/tuli.png and b/src/assets/images/goodStart/tuli.png differ diff --git a/src/views/ebiz/goodStart/BusinessMap.vue b/src/views/ebiz/goodStart/BusinessMap.vue index e450ec233..5ec7e041a 100644 --- a/src/views/ebiz/goodStart/BusinessMap.vue +++ b/src/views/ebiz/goodStart/BusinessMap.vue @@ -60,7 +60,7 @@ export default { for (var i = 0; i < myseries.data.length; i++) { if (myseries.data[i].name == params.name) { res += myseries.data[i].comName + '
' - res += '预收标保' + ' : ' + myseries.data[i].sum + '万元
' + res += '承保标保' + ' : ' + myseries.data[i].sum + '万元
' res += '目标达成率' + ' : ' + myseries.data[i].rate + '%
' } } @@ -78,7 +78,8 @@ export default { { gte: 0, lte: 25, color: '#FFBDBD' }, { gte: 26, lte: 50, color: '#FF7B7B' }, { gte: 51, lte: 75, color: '#F75252' }, - { gte: 76, lte: 100, color: '#EE2020' } + { gte: 76, lte: 100, color: '#EE2020' }, + { gte: 100, color: '#B61616' }, ] // inRange: { // color: ['lightskyblue', 'yellow', 'orange','red'] diff --git a/src/views/ebiz/goodStart/IssueList.vue b/src/views/ebiz/goodStart/IssueList.vue index 9ec3de2ff..f9f4d6997 100644 --- a/src/views/ebiz/goodStart/IssueList.vue +++ b/src/views/ebiz/goodStart/IssueList.vue @@ -1,29 +1,56 @@