dc19b6d6b6
清理旧检查页面、服务和接口,补充 WBS 检查服务及数据库脚本,同步工程引用与菜单配置,收敛 CQMS 检查功能的代码组织。
33 lines
678 B
C#
33 lines
678 B
C#
using BLL;
|
|
using System;
|
|
|
|
namespace WordEdit
|
|
{
|
|
public partial class EditOffice : System.Web.UI.Page
|
|
{
|
|
public string url;
|
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
|
|
string cmd = Request.QueryString["cmd"];
|
|
var a = cmd.Split('|');
|
|
if (a[1] == "Companytemplate")
|
|
{
|
|
var model = BLL.Base_CompanytemplateService.GetBase_CompanyTemplateById(a[0]);
|
|
string filepath = model.FilePath;
|
|
url = Funs.SGGLUrl + filepath;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|