diff --git a/src/views/bid_industry_analysis/index.vue b/src/views/bid_industry_analysis/index.vue new file mode 100644 index 0000000..89fd4c6 --- /dev/null +++ b/src/views/bid_industry_analysis/index.vue @@ -0,0 +1,275 @@ + + + + + diff --git a/src/views/bid_margin_statistics/index.vue b/src/views/bid_margin_statistics/index.vue index 1682acb..f6195f0 100644 --- a/src/views/bid_margin_statistics/index.vue +++ b/src/views/bid_margin_statistics/index.vue @@ -25,16 +25,16 @@ import * as echarts from 'echarts'; import { ref, reactive, onMounted } from "vue"; import { useRoute } from 'vue-router'; -import { apibid_margin_list } from '@/api/financial_bid_statistics' +import { apibid_margin_statistics } from '@/api/financial_bid_statistics' const route = useRoute() var chartDom: any; var option: any; var myChart: any -const chartWitdth = ref(500) +const chartWitdth = ref(1000) const chartHeight = ref(500) -const chartType = ref(1) +const chartType = ref(3) const chartTypeList = reactive([ { name: '柱状图', @@ -63,32 +63,34 @@ let option1 = { yAxis: { type: 'value' }, - legend: { - data: ['总金额', '中标金额', '未中标金额'] - }, + // legend: { + // // data: ['总金额', '中标金额', '未中标金额'] + // }, xAxis: { type: 'category', - data: ['房屋建筑工程', '化工石油工程', '矿山工程', '市政公用工程', '通信与光电工程', '其他工程', 'Sun'] + // data: ['房屋建筑工程', '化工石油工程', '矿山工程', '市政公用工程', '通信与光电工程', '其他工程', 'Sun'] + data: [] + }, series: [ // 总金额 { - name: '总金额', + // name: '总金额', data: [120, 200, 150, 80, 70, 110, 130], type: 'bar', }, - // 中标金额 - { - name: '中标金额', - data: [10, 20, 50, 10, 32, 46, 55], - type: 'bar', - }, - // 未中标金额 - { - name: '未中标金额', - data: [33, 47, 21, 80, 95, 35, 120], - type: 'bar', - } + // // 中标金额 + // { + // name: '中标金额', + // data: [10, 20, 50, 10, 32, 46, 55], + // type: 'bar', + // }, + // // 未中标金额 + // { + // name: '未中标金额', + // data: [33, 47, 21, 80, 95, 35, 120], + // type: 'bar', + // } ], }; @@ -197,10 +199,8 @@ let chartData: object; const getData = async (fetchFun: Function) => { let res = await fetchFun() chartData = res - // option1.xAxis.data = chartData.data.map(item => item.name) - // option1.series[0].data = chartData.data.map(item => item.value) - console.log(chartData, '保证金统计表') - option = option1 + option3.series[0].data = res.data + option = option3 initChart() } @@ -212,6 +212,7 @@ const initChart = () => { const changeChartType = (e: any) => { + console.log(chartData, 'chartData') switch (e) { case 1: option1.xAxis.data = chartData.data.map(item => item.name) @@ -224,7 +225,7 @@ const changeChartType = (e: any) => { option = option2 break; case 3: - option3.series[0].data = res.data + option3.series[0].data = chartData.data option = option3 break; case 4: @@ -244,7 +245,7 @@ const chartResize = () => { onMounted(() => { chartDom = document.getElementById('main'); - getData(apibid_margin_list); + getData(apibid_margin_statistics); }) diff --git a/src/views/bid_project_status/index.vue b/src/views/bid_project_status/index.vue index 4b1872e..76f952b 100644 --- a/src/views/bid_project_status/index.vue +++ b/src/views/bid_project_status/index.vue @@ -25,14 +25,14 @@ import * as echarts from 'echarts'; import { ref, reactive, onMounted } from "vue"; import { useRoute } from 'vue-router'; -import { apibid_project_status, apibid_project_number, apibid_project_analysis, apibid_industry_analysis } from '@/api/marketing_bid_statistics' +import { apibid_project_status, apibid_project_number, apibid_project_analysis } from '@/api/marketing_bid_statistics' const route = useRoute() var chartDom: any; var option: any; var myChart: any -const chartWitdth = ref(500) +const chartWitdth = ref(1000) const chartHeight = ref(500) const chartType = ref(3) const chartTypeList = reactive([ @@ -63,32 +63,34 @@ let option1 = { yAxis: { type: 'value' }, - legend: { - data: ['总金额', '中标金额', '未中标金额'] - }, + // legend: { + // // data: ['总金额', '中标金额', '未中标金额'] + // }, xAxis: { type: 'category', - data: ['房屋建筑工程', '化工石油工程', '矿山工程', '市政公用工程', '通信与光电工程', '其他工程', 'Sun'] + // data: ['房屋建筑工程', '化工石油工程', '矿山工程', '市政公用工程', '通信与光电工程', '其他工程', 'Sun'] + data: [] + }, series: [ // 总金额 { - name: '总金额', + // name: '总金额', data: [120, 200, 150, 80, 70, 110, 130], type: 'bar', }, - // 中标金额 - { - name: '中标金额', - data: [10, 20, 50, 10, 32, 46, 55], - type: 'bar', - }, - // 未中标金额 - { - name: '未中标金额', - data: [33, 47, 21, 80, 95, 35, 120], - type: 'bar', - } + // // 中标金额 + // { + // name: '中标金额', + // data: [10, 20, 50, 10, 32, 46, 55], + // type: 'bar', + // }, + // // 未中标金额 + // { + // name: '未中标金额', + // data: [33, 47, 21, 80, 95, 35, 120], + // type: 'bar', + // } ], }; @@ -246,7 +248,6 @@ onMounted(() => { if (route.path.includes('bid_project_status')) getData(apibid_project_status); if (route.path.includes('bid_project_number')) getData(apibid_project_number); if (route.path.includes('bid_project_analysis')) getData(apibid_project_analysis); - if (route.path.includes('bid_industry_analysis')) getData(apibid_industry_analysis); }) diff --git a/src/views/financial_performance_money_apply/detail.js b/src/views/financial_performance_money_apply/detail.js index 93fe341..85acf02 100644 --- a/src/views/financial_performance_money_apply/detail.js +++ b/src/views/financial_performance_money_apply/detail.js @@ -65,7 +65,6 @@ const detailConfig = { column: 1 }, - { label: "创建人", value: "create_user",