Blame view

src/views/dashboard/analysis/components/VisitAnalysisBar.vue 8.46 KB
Vben authored
1
<template>
柏杨 authored
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  <div style="margin-bottom: 30px">
    <span v-if="role === ROLE.ADMIN">
      <span style="font-size: 18px; margin-right: 10px">客户编码</span>
      <a-select
        v-model:value="value1"
        show-search
        placeholder="请选择"
        style="width: 200px"
        :options="customerCodeOptions"
        :filter-option="filterOption"
        @focus="handleFocus"
        @blur="handleBlur"
        @change="handleChangeBusiness"
        mode="multiple"
      />
      <span style="right: 10px"
        ><a-button
          type="default"
          @click="clearData"
          :style="{ marginLeft: '100px', borderRadius: '5px 5px 5px 5px' }"
        >
          重置
        </a-button>
        <a-button
          :style="{ marginLeft: '20px', borderRadius: '5px 5px 5px 5px' }"
          shape="default"
          type="primary"
          @click="updateData"
          >查询</a-button
        ></span
      ></span
    >
    <div style="position: fixed; top: 80px; right: 70px">
      <a-radio-group
        v-model:value="periodChange"
        class="custom-radio-group"
        :style="{ marginLeft: '100px' }"
      >
        <a-radio-button value="MONTH" @click="handlePeriodChange('MONTH')">月</a-radio-button>
        <a-radio-button value="QUARTER" @click="handlePeriodChange('QUARTER')">季度</a-radio-button>
        <a-radio-button value="YEAR" @click="handlePeriodChange('YEAR')">年</a-radio-button>
      </a-radio-group>
    </div></div
  >
  <div v-if="role !== ROLE.ADMIN" style="margin-bottom: 60px"></div>
  <div ref="chartRef" :style="{ height: '400px', width }"></div>
Vben authored
48
</template>
49
50
51
<script lang="ts">
  import { basicProps } from './props';
</script>
52
<script lang="ts" setup>
柏杨 authored
53
  import { computed, onMounted, ref, Ref, watchEffect } from 'vue';
Vben authored
54
  import { useECharts } from '/@/hooks/web/useECharts';
柏杨 authored
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
  import { useDataStoreWithOut } from '/@/store/modules/data';
  import { businessPersonIn, customerCodeIn, useUserStoreWithOut } from '@/store/modules/user';

  //biaoji
  import type { SelectProps } from 'ant-design-vue';
  import { getCustomerSalesData } from '/@/api/project/global';
  import { useOrderStoreWithOut } from '/@/store/modules/order';
  import { useOrderInfo } from '/@/hooks/component/order';
  import { ROLE } from '/@/views/project/order/type.d';

  const userStore = useUserStoreWithOut();
  const user = userStore.getUserInfo;
  const role = computed(() => {
    return user?.roleSmallVO?.code;
  });
  const orderStore = useOrderStoreWithOut();
  onMounted(async () => {
    await orderStore.getDict();
  });
  const { customerCode: customerCodeOptions, businessPerson: businessPersonOptions } =
    useOrderInfo(orderStore);

  const periodChange = ref('MONTH');
  const searchCustomerCode = ref();
  // const businessPersonInChange = ref();
  const businessPersonInChange: string[] = [];
  const customerCodeInChange: string[] = [];
  const handleChangeBusiness = (value: string) => {
    if (businessPersonInChange.length === 0) {
      // 如果数组为空,直接将 value 值放入数组
      businessPersonInChange.push(value);
    } else {
      // 如果数组不为空,清空数组再将 value 值放入数组
      businessPersonInChange.length = 0; // 也可以使用 array.splice(0, array.length);
      businessPersonInChange.push(value);
    }
    // console.log(`5656selected ${businessPersonInChange}`);
  };
  const handleChangeCustomer = (value: string) => {
    if (customerCodeInChange.length === 0) {
      // 如果数组为空,直接将 value 值放入数组
      customerCodeInChange.push(value);
    } else {
      // 如果数组不为空,清空数组再将 value 值放入数组
      customerCodeInChange.length = 0; // 也可以使用 array.splice(0, array.length);
      customerCodeInChange.push(value);
    }
    // console.log(`5656selected ${customerCodeInChange}`);
  };
  const handleBlur = () => {};
  const handleFocus = () => {};
  const filterOption = (input: string, option: any) => {
    return option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0;
  };

  const value1 = ref();
  const value2 = ref();

  function handlePeriodChange(value) {
    periodChange.value = value;
  }
  //biaoji
Vben authored
117
118
119
120
  defineProps({
    ...basicProps,
  });
柏杨 authored
121
  const dataStore = useDataStoreWithOut();
122
123
124

  const chartRef = ref<HTMLDivElement | null>(null);
  const { setOptions } = useECharts(chartRef as Ref<HTMLDivElement>);
柏杨 authored
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187

  function updateData() {
    customerCodeIn.value = value1.value;
  }
  function clearData() {
    customerCodeIn.value = [];
    value1.value = [];
    value2.value = null;
  }

  watchEffect(async () => {
    // // const data1 = dataStore?.getCustomerChartData1 || {};
    // // 如果有选择的 customerCode 值
    // const customerCodeParams = customerCodeIn.value
    //   ? customerCodeIn.value.map((code) => `customerCodeIn=${encodeURIComponent(code)}`).join('&')
    //   : '';

    // // 拼接请求的完整 URL
    // const baseURL = '/basic-api/order/erp/index/totalSalesStatistics';
    // const periodParam = `period=${periodChange.value}`;
    // const fullURL = `${baseURL}?${customerCodeParams}&${periodParam}`;

    // // // 发送请求
    // // const data2 = await fetch(fullURL)
    // //   .then((response) => response.json())
    // //   .catch((error) => {
    // //     console.error('Error fetching sales data:', error);
    // //     return {};
    // //   });
    // const data2 = await getCustomerSalesData({
    //   customerCodeIn: customerCodeIn.value,
    //   period: periodChange.value,
    // });
    // const data2 = await getCustomerSalesData(
    //   {
    //     period: periodChange.value,
    //   },
    //   customerCodeParams,
    // );
    // 构造请求参数
    const customerCodeParams = customerCodeIn.value
      ? customerCodeIn.value.map((code) => `customerCodeIn=${encodeURIComponent(code)}`).join('&')
      : '';

    // 构造完整请求 URL
    const baseURL = '/basic-api/order/erp/index/salesStatusEveryCustomer';
    const periodParam = `period=${encodeURIComponent(periodChange.value)}`;
    const fullURL = `${baseURL}?${customerCodeParams}&${periodParam}`;

    // 使用 fetch 或其他请求库发送请求
    const response = await fetch(fullURL);
    const res = await response.json();
    const data2 = res.data;

    const x = [],
      y = [],
      z = [];
    for (const key in data2) {
      x.push(key);
      y.push(data2[key].salesAmount);
      z.push(data2[key].target);
    }
    const customerChartData1 = { x, y, z };
188
189
190
191
192
193
194
    setOptions({
      tooltip: {
        trigger: 'axis',
        axisPointer: {
          lineStyle: {
            width: 1,
            color: '#019680',
Vben authored
195
          },
196
197
        },
      },
柏杨 authored
198
199
200
201
      legend: {
        data: ['销售额', '销售目标'],
      },
      grid: { left: '1%', right: '1%', top: '10  %', bottom: 0, containLabel: true },
202
203
      xAxis: {
        type: 'category',
柏杨 authored
204
        data: customerChartData1?.x,
205
206
207
      },
      yAxis: {
        type: 'value',
柏杨 authored
208
209
        // // max: 8000,
        // splitNumber: 4,
210
211
212
      },
      series: [
        {
柏杨 authored
213
214
          name: '销售额',
          data: customerChartData1?.y,
215
216
217
          type: 'bar',
          barMaxWidth: 80,
        },
柏杨 authored
218
219
220
221
222
223
224
225
226
227
228
229
        {
          name: '销售目标',
          smooth: true,
          data: customerChartData1?.z,
          type: 'line',
          areaStyle: {
            color: 'rgba(255, 255, 255, 0)',
          },
          itemStyle: {
            color: 'rgba(124, 205, 214)',
          },
        },
230
231
      ],
    });
Vben authored
232
233
  });
</script>
柏杨 authored
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<style scoped>
  .custom-radio-group .ant-radio-button-wrapper {
    background-color: white; /* 未选中按钮的背景颜色为白色 */
    color: #1684fc; /* 未选中按钮的文字颜色为 #1684fc */
    border-color: #1684fc; /* 未选中按钮的边框颜色 */
  }

  .custom-radio-group .ant-radio-button-wrapper-checked {
    background-color: #1684fc; /* 选中按钮的背景颜色为 #1684fc */
    color: white; /* 选中按钮的文字颜色为白色 */
    border-color: #1684fc; /* 选中按钮的边框颜色 */
  }

  .custom-radio-group .ant-radio-button-wrapper-checked:hover {
    background-color: #1684fc; /* 悬停在选中按钮时保持相同的背景颜色 */
    color: white; /* 悬停在选中按钮时保持文字为白色 */
  }

  .custom-radio-group .ant-radio-button-wrapper:hover {
    border-color: #1684fc; /* 悬停在未选中按钮时的边框颜色 */
  }

  .custom-radio-group .ant-radio-button-wrapper:not(.ant-radio-button-wrapper-checked):hover {
    color: #1684fc; /* 悬停在未选中按钮时文字颜色为 #1684fc */
  }
</style>