lu
2024-11-10 4bca678c092d53d53140fab2ce25363026cbc6ec
DevApp/Gs.DevApp/DevFrm/Rpt/RptPreview.cs
@@ -1,6 +1,7 @@
using System;
using System.Data;
using System.IO;
using DevExpress.Utils.VisualEffects;
using DevExpress.XtraEditors;
using FastReport;
using Gs.DevApp.ToolBox;
@@ -12,10 +13,11 @@
    public partial class RptPreview : XtraForm
    {
        private readonly string _rptParameter;
        public RptPreview(string rptParameter)
        private readonly string _rptGuid;
        public RptPreview(string strGuid, string rptParameter)
        {
            _rptParameter = rptParameter;
            _rptGuid = strGuid;
            InitializeComponent();
            Text = _rptParameter + "报表查看:";
            getRptData();
@@ -28,7 +30,9 @@
        {
            var _obj = new
            {
                rptParameter = _rptParameter
                rptParameter = _rptParameter,
                guid = _rptGuid,
                isDesign = 0
            };
            try
            {