gaoluyang
2025-12-09 539231de1e68f45a6f11bc88df665cc1f161941f
src/views/inventoryManagement/receiptManagement/index.vue
@@ -43,7 +43,7 @@
        <el-table-column label="入库人" prop="createBy" width="80" show-overflow-tooltip />
        <el-table-column fixed="right" label="操作" min-width="60" align="center">
          <template #default="scope">
            <el-button link type="primary" size="small" @click="openForm('edit', scope.row);" :disabled="scope.row.createUser !== userStore.id">编辑</el-button>
            <el-button link type="primary" size="small" @click="openForm('edit', scope.row);">编辑</el-button>
          </template>
        </el-table-column>
      </el-table>
@@ -263,7 +263,7 @@
  return stock > waiting + original;
};
const formattedNumber = (row, column, cellValue) => {
   return parseFloat(cellValue).toFixed(2);
   return parseFloat(cellValue).toFixed(5);
};
// 查询列表
/** 搜索按钮操作 */