CD配唱片
2025-04-27 17f743d0efbae8a606d3bfaf9d4912d6f9ac7f1d
src/views/mainPlan/plateProcessStat/index.vue
@@ -95,13 +95,13 @@
const aps_plate_process_statList = ref([]);
const open = ref(false);
const loading = ref(true);
const loading = ref(false);
const showSearch = ref(true);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const title = ref("");
const height = ref(document.documentElement.clientHeight - 270 + "px;")
const height = ref(document.documentElement.clientHeight - 220 + "px;")
const data = reactive({
@@ -140,50 +140,50 @@
  {
    title: '工序名称',
    field: 'processName',
    width: 250,
  },
  {
    title: '工序号',
    field: 'routeProcessNumberTxt',
    width: 150,
    width: 100,
  },
  {
    title: '当前工序号',
    field: 'currentProcessNumberTxt',
    width: 150,
    width: 100,
  },
  {
    title: '生产数量',
    field: 'productionQuantity',
    width: 100,
    width: 80,
  },
  {
    title: '标准工时',
    field: 'standardTime',
    width: 100,
    width: 80,
  },
  {
    title: '工序总工时',
    field: 'processTotalTime',
    width: 100,
    width: 80,
  },
  {
    title: '计划开工日',
    field: 'processPlanStartDaytxt',
    width: 200,
    width: 140,
    type:'html'
  },
  {
    title: '计划完工日',
    field: 'processPlanEndDaytxt',
    width: 200,
    width: 140,
    type:'html'
  },
  {
    title: '订单完工日',
    field: 'orderPlanEndDay',
    width: 200,
    width: 120,
    format: 'YYYY-MM-DD'
  }
]);
@@ -203,7 +203,6 @@
    });
    aps_plate_process_statList.value =listValue
    debugger;
    total.value = response.total;
    loading.value = false;
  });
@@ -267,8 +266,10 @@
/** 修改按钮操作 */
function handleUpdate(row) {
  reset();
  loading.value = true;
  updateStat().then(response => {
    form.value = response.data;
    loading.value = false;
    ElMessage({
      message: '数据更新成功',
      type: 'success',