gaoluyang
2025-12-22 e4bf1b2abf8c59bbcc9f9ccbaef3e672c667c59e
src/views/productionManagement/productionDispatching/index.vue
@@ -147,32 +147,18 @@
      prop: "entryDate",
      width: 120,
   },
   {
      label: "状态",
      prop: "status",
      dataType: "tag",
      formatType: (params) => {
         if (params == '生产中') {
            return "warning";
         } else if (params == '未开始') {
            return "danger";
         } else {
            return "success";
         }
      },
   },
   {
      label: "生产进度",
      prop: "progress",
      formatData: (cellValue) => {
         // 如果值为空或undefined,显示空字符串
         if (cellValue === null || cellValue === undefined || cellValue === '') {
            return '';
         }
         // 直接在数字后面添加百分号
         return `${cellValue}%`;
      }
   },
   // {
   //    label: "生产进度",
   //    prop: "progress",
   //    formatData: (cellValue) => {
   //       // 如果值为空或undefined,显示空字符串
   //       if (cellValue === null || cellValue === undefined || cellValue === '') {
   //          return '';
   //       }
   //       // 直接在数字后面添加百分号
   //       return `${cellValue}%`;
   //    }
   // },
   {
      label: "数量",
      prop: "quantity",