src/views/index.vue
@@ -152,7 +152,7 @@
    </div>
    <!-- 工序选择弹窗 -->
    <el-dialog v-model="processDialogVisible" title="选择工序" width="500px" append-to-body>
    <el-dialog v-model="processDialogVisible" title="选择部件" width="500px" append-to-body>
      <div class="process-selection-wrapper">
        <el-checkbox-group v-model="tempProcessIds">
          <div class="process-grid">
@@ -246,7 +246,7 @@
</template>
<script setup>
import { ref, onMounted, computed, reactive } from 'vue'
import { ref, onMounted, computed, reactive, getCurrentInstance } from 'vue'
import Echarts from "@/components/Echarts/echarts.vue";
import * as echarts from 'echarts';
import useUserStore from "@/store/modules/user.js";
@@ -258,12 +258,21 @@
  statisticsReceivablePayable,
  qualityInspectionStatistics
} from "@/api/viewIndex.js";
import { list } from '@/api/productionManagement/productionProcess';
const userStore = useUserStore()
const processOptions = ref([])
const { proxy } = getCurrentInstance()
const { product_process_type } = proxy.useDict('product_process_type')
// 工序选择弹窗:使用字典 product_process_type
// 字典字段:label / value,组件期望字段:name / id
const processOptions = computed(() => {
  return (product_process_type?.value || []).map(item => ({
    id: item.value,
    name: item.label
  }))
})
const selectedProcessIds = ref([])
const tempProcessIds = ref([])
const processDialogVisible = ref(false)
@@ -450,7 +459,6 @@
  statisticsReceivable()
  qualityStatisticsInfo()
  getAmountHalfYearNum()
  getProcessList()
})
// 数据统计
const getBusinessData = () => {
@@ -477,13 +485,6 @@
    todoList.value = res.data
  })
}
// 获取工序列表
const getProcessList = () => {
  list().then(res => {
    processOptions.value = res.data
  })
}
const openProcessDialog = () => {
  tempProcessIds.value = [...selectedProcessIds.value]
  processDialogVisible.value = true
@@ -703,7 +704,7 @@
const refreshProcessStats = () => {
  processDataProductionStatistics({
    type: processRange.value,
    processIds: selectedProcessIds.value.length > 0 ? selectedProcessIds.value.join(',') : null
    processTypes: selectedProcessIds.value.length > 0 ? selectedProcessIds.value.join(',') : null
  }).then(res => {
    processChartData.value = res.data.map(item => ({
      name: item.processName,