procedure TForm1.PostBase(Query: TQuery);
begin
  if Query.Active=True then
    Query.Close;
  Query.SQL.Clear;
  Query.SQL.Add('select * from cp_orderbase');
  Query.Open;
  Query.Append;//这里总不对,怎么改?
  with Query do
  begin
    FieldByName('OrderNo').Value:=LedtOrderNo.Text;
    FieldByName('ProduceType').Value:=CBhtlb.Text;
    ......
  end;
  try
    Query.Post;
  finally
    Query.Close;
  end;
end;