yyb
9 小时以前 ca51c6068364c5c76c97b4ebad08eabe9f398604
src/views/qualityManagement/processInspection/index.vue
@@ -2,11 +2,11 @@
  <div class="app-container">
    <div class="search_form">
      <div>
        <span class="search_title">工序:</span>
        <span class="search_title">部件类型:</span>
        <el-input
            v-model="searchForm.process"
            style="width: 240px"
            placeholder="请输入工序搜索"
            placeholder="请输入部件类型搜索"
            @change="handleQuery"
            clearable
            :prefix-icon="Search"
@@ -101,9 +101,14 @@
    width: 120
  },
  {
    label: "工序",
    label: "部件类型",
    prop: "process",
    width: 230
    width: 230,
    formatData: (params) => {
      const dictItems = product_process_type?.value || []
      const hit = dictItems.find(i => String(i.value) === String(params))
      return hit?.label || params
    }
  },
  {
    label: "检验员",
@@ -245,6 +250,8 @@
const inspectionFormDia = ref()
const { proxy } = getCurrentInstance()
const userStore = useUserStore()
// 部件类型字典(value -> label)
const { product_process_type } = proxy.useDict('product_process_type')
const changeDaterange = (value) => {
  searchForm.value.entryDateStart = undefined;
  searchForm.value.entryDateEnd = undefined;
@@ -269,7 +276,8 @@
  tableLoading.value = true;
  const params = { ...searchForm.value, ...page };
  params.entryDate = undefined
  qualityInspectListPage({...params, inspectType: 1}).then(res => {
  params.processType = params.process
  qualityInspectListPage({ ...params, inspectType: 1 }).then(res => {
    tableLoading.value = false;
    tableData.value = res.data.records
    page.total = res.data.total;