无人机管理后台前端(已迁走)
张含笑
2025-05-30 2cb115e3942c5d98641cd70568445b7ecc4a1e05
src/views/wel/components/flyratio.vue
@@ -49,12 +49,10 @@
  industryJobNumPieChart(params).then(res => {
    const resList = res?.data?.data || [];
    jcOrder.value = resList;
    if (resList.length > 0) {
      nextTick(() => {
     nextTick(() => {
        initChart()
        pieInit(resList)
      })
    }
  });
};
watch(
@@ -66,7 +64,8 @@
  { immediate: true }
);
const pieInit = resList => {
if (!jcchart.value || !resList?.length) return
// if (!jcchart.value || !resList?.length) return
  const validData = resList?.filter(item => item.name).sort((a, b) => b.value - a.value); // 从大到小排序
  const colors = [
    '#F87E04', // 橙色
@@ -81,9 +80,11 @@
    yAxisData: validData.map(item => item.name),
    seriesData: validData.map(item => item.value),
  };
  const option = {
    title: {
      text: optionData.seriesData?.length  ? '' :'暂无数据',
      text: resList.length  ? '' :'暂无数据',
      left: 'center',
      top: 'center',
      textStyle: {