You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.8 KiB
50 lines
2.8 KiB
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<QMAPP.Common.Web.Models.TemplateListModel>" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" >
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<title>查询模板</title>
|
|
<script type="text/javascript" src="<%=QMAPP.FJC.Web.MvcApplication.ManageCenterRoot %>Scripts/jquery.1.11.0.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="<%=QMAPP.FJC.Web.MvcApplication.ManageCenterRoot %>Scripts/jquery.easyui/themes/default/easyui.css" />
|
|
<link rel="stylesheet" type="text/css" href="<%=QMAPP.FJC.Web.MvcApplication.ManageCenterRoot %>Scripts/jquery.easyui/themes/icon.css" />
|
|
<script type="text/javascript" src="<%=QMAPP.FJC.Web.MvcApplication.ManageCenterRoot %>Scripts/jquery.easyui/jquery.easyui.min.js"></script>
|
|
<script type="text/javascript" src="<%=QMAPP.FJC.Web.MvcApplication.ManageCenterRoot %>Scripts/jquery.easyui/locale/easyui-lang-zh_CN.js"></script>
|
|
<script type="text/javascript" src="<%=QMAPP.FJC.Web.MvcApplication.ManageCenterRoot %>Scripts/Common-zh-CN.js"></script>
|
|
</head>
|
|
<body style="margin: 0px">
|
|
<form id="form1" runat="server">
|
|
<div id="tab_qt" class="easyui-tabs" style="height:310px;" tools="#tab-tools">
|
|
<div title="我的模板" style="padding:5px;" align="left">
|
|
<iframe src="/QueryTL/QueryTLMyList?programName=<%=Model.ProgramName %>" frameborder="0" width="100%" height="100%"></iframe>
|
|
</div>
|
|
<div title="公共模板" style="padding:5px;" align="left">
|
|
<iframe src="/QueryTL/QueryTLPubList?programName=<%=Model.ProgramName %>" frameborder="0" width="100%" height="100%"></iframe>
|
|
</div>
|
|
</div>
|
|
<div id="tab-tools">
|
|
<table>
|
|
<tr>
|
|
<th valign=middle><span style="font-family: 宋体, Arial, Helvetica, sans-serif; font-size: 10pt">当前模板</span></th>
|
|
<td valign=middle><%=Html.QReadOnlyTextboxFor(p=>p.TEMPLATENAME) %></td>
|
|
<%if (string.IsNullOrEmpty(Model.TEMPLATEID) == false)
|
|
{%>
|
|
<td valign=middle><a class="easyui-linkbutton" href="#" onclick="RemoveTemplate()" plain="false">取消应用</a></td>
|
|
<%} %>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<%=Html.HiddenFor(p=>p.TEMPLATEID) %>
|
|
<%=Html.HiddenFor(p=>p.ProgramName) %>
|
|
</form>
|
|
<script type="text/javascript">
|
|
//取消模板应用
|
|
function RemoveTemplate() {
|
|
MSQ("提示", "确定要取消应用模板吗?", function () {
|
|
submitByButton("/QueryTL/RemoveTemplate");
|
|
})
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|