This commit is contained in:
geh 2025-05-09 18:15:36 +08:00
parent 5931967fff
commit ac1c3ff0fc
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
using BLL;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
@ -417,8 +418,8 @@ namespace FineUIPro.Web.ProjectData
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
return;
}
string strCode = "https://lygcgs.com.cn/JT/web/index.html?ProjectUnitId=" + Grid1.SelectedRowID;
string DomainNameUrl = ConfigurationManager.AppSettings["DomainNameUrl"];
string strCode = DomainNameUrl + Grid1.SelectedRowID;
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("~/Controls/SeeQRImage.aspx?ProjectUnitId={0}&strCode={1}", Grid1.SelectedRowID, strCode), "二维码查看", 400, 400));
}
}