first commit
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>${name}</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
${name}
|
||||
${Styles.src("/service/res/fadfox_2016100801.css")}
|
||||
${Scripts.src("/service/res/fadfox_2016100801.min.js")}
|
||||
${Styles.htmlOverflowHidden()}
|
||||
<#var abc="abc"/>
|
||||
@{name}
|
||||
<#-- dd -->
|
||||
<#--
|
||||
dd
|
||||
-->
|
||||
<script>
|
||||
<!--
|
||||
function doRefreshVcode()
|
||||
{
|
||||
F("#vcode").attr("src", "/service/vcode.jpg?time=" + new Date().getTime());
|
||||
}
|
||||
|
||||
function doRememberCode(rememberPass)
|
||||
{
|
||||
if (rememberPass.checked)
|
||||
{
|
||||
F("#check").checked = true;
|
||||
F("[data-id=check]").addClass("f-active");
|
||||
}
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="theForm.operatorCode.focus()" style="background-color:#dce2f1;">
|
||||
<table class="f-table f-float-center fi-w500" style="margin-top:100px;">
|
||||
<tr>
|
||||
<td>
|
||||
<form name="theForm" method="post" action="${loginUrl}" onsubmit="return validateForm(this);">
|
||||
<input type="password" style="display:none">
|
||||
<table class=" f-table f-bordered f-px14 f-float-center f-pd6" style="background-color:#f1f3f5">
|
||||
<tr>
|
||||
<th colspan="2" height="40" class="f-bold f-text-white fi-px20" style="border:1px solid #4455aa;border-bottom:none;background-color:#4455aa">${name}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150" align="right">登录名:</td>
|
||||
<td width="*">
|
||||
<input name="operatorCode" type="text" class="f-input f-large ${styleColor}" value="${operatorCode}" maxlength="32"<#if !hasAutoComplete> autocomplete="off"</#if>>
|
||||
<input data-role="f-checkbox" data-class="f-blue" id="check" type="checkbox" name="rememberCode" <#if Validates.isNotEmpty(operatorCode)>checked</#if>> 记住用户名
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">密 码:</td>
|
||||
<td>
|
||||
<input name="operatorPass" type="password" class="f-input f-large ${styleColor}" value="${operatorPass}" maxlength="32"<#if !hasAutoComplete> autocomplete="off"</#if>>
|
||||
<input data-role="f-checkbox" data-class="f-blue" type="checkbox" name="rememberPass" onclick="doRememberCode(this);" <#if Validates.isNotEmpty(operatorPass)>checked</#if>/> 记住密码
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="f-h50">
|
||||
<td colspan="2" align="center" bgcolor="#ffffff"><button type="submit" class="f-button f-blue f-w200 f-h40"><span class="f-px16">登录</span></button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
<html>
|
||||
<#for it : list>
|
||||
<#for item : it>
|
||||
双循环开始 ${item} 双循环结束
|
||||
</#for>
|
||||
</#for>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
${Styles.htmlOverflowHidden()}
|
||||
${name}
|
||||
${Styles.htmlOverflowHidden()}
|
||||
<#for item : list1>
|
||||
as ${item} sd
|
||||
</#for>
|
||||
</meta>
|
||||
</head>
|
||||
<#for item : list1>as ${item} sd </#for>最后加数据
|
||||
</body>
|
||||
<#for item : list1>as ${item} sd </#for>
|
||||
</html>
|
||||
@@ -0,0 +1,86 @@
|
||||
<#var list = new FArrayListS()/>
|
||||
@{list.add("11111")}
|
||||
@{list.add("222222")}
|
||||
|
||||
<#function showList(list)>
|
||||
<table border="1">
|
||||
<#for item : list>
|
||||
${showChild(item)}
|
||||
</#for>
|
||||
</table>
|
||||
</#function>
|
||||
|
||||
<#function showChild(item)>
|
||||
<tr>
|
||||
<td>${item}</td>
|
||||
</tr>
|
||||
</#function>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>${name}</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
${name}
|
||||
${Styles.src("/service/res/fadfox_2016100801.css")}
|
||||
${Scripts.src("/service/res/fadfox_2016100801.min.js")}
|
||||
${Styles.htmlOverflowHidden()}
|
||||
<#function abc()>
|
||||
dass
|
||||
dddf
|
||||
</#function>
|
||||
<script>
|
||||
<!--
|
||||
function doRefreshVcode()
|
||||
{
|
||||
F("#vcode").attr("src", "/service/vcode.jpg?time=" + new Date().getTime());
|
||||
}
|
||||
|
||||
function doRememberCode(rememberPass)
|
||||
{
|
||||
if (rememberPass.checked)
|
||||
{
|
||||
F("#check").checked = true;
|
||||
F("[data-id=check]").addClass("f-active");
|
||||
}
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
${abc()}
|
||||
</head>
|
||||
${abc()}333
|
||||
<body onload="theForm.operatorCode.focus()" style="background-color:#dce2f1;">
|
||||
${showList()}
|
||||
<table class="f-table f-float-center fi-w500" style="margin-top:100px;">
|
||||
<tr>
|
||||
<td>
|
||||
<form name="theForm" method="post" action="${loginUrl}" onsubmit="return validateForm(this);">
|
||||
<input type="password" style="display:none">
|
||||
<table class=" f-table f-bordered f-px14 f-float-center f-pd6" style="background-color:#f1f3f5">
|
||||
<tr>
|
||||
<th colspan="2" height="40" class="f-bold f-text-white fi-px20" style="border:1px solid #4455aa;border-bottom:none;background-color:#4455aa">${name}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="150" align="right">登录名:</td>
|
||||
<td width="*">
|
||||
<input name="operatorCode" type="text" class="f-input f-large ${styleColor}" value="${operatorCode}" maxlength="32"<#if !hasAutoComplete> autocomplete="off"</#if>>
|
||||
<input data-role="f-checkbox" data-class="f-blue" id="check" type="checkbox" name="rememberCode" <#if Validates.isNotEmpty(operatorCode)>checked</#if>> 记住用户名
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">密 码:</td>
|
||||
<td>
|
||||
<input name="operatorPass" type="password" class="f-input f-large ${styleColor}" value="${operatorPass}" maxlength="32"<#if !hasAutoComplete> autocomplete="off"</#if>>
|
||||
<input data-role="f-checkbox" data-class="f-blue" type="checkbox" name="rememberPass" onclick="doRememberCode(this);" <#if Validates.isNotEmpty(operatorPass)>checked</#if>/> 记住密码
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="f-h50">
|
||||
<td colspan="2" align="center" bgcolor="#ffffff"><button type="submit" class="f-button f-blue f-w200 f-h40"><span class="f-px16">登录</span></button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,39 @@
|
||||
<html>
|
||||
<#if hasAutoComplete>${hasAutoComplete}</#if>
|
||||
<#if status == 1>${status}<#elseif status == 2>${status}
|
||||
<#else>${status}</#if>
|
||||
<#if type == 1>${type}<#elseif type == 2>${type}<#else>${type}</#if>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
${Styles.htmlOverflowHidden()}
|
||||
${name}
|
||||
${Styles.htmlOverflowHidden()}
|
||||
<#if !hasAutoComplete>
|
||||
${hasAutoComplete}
|
||||
</#if>
|
||||
</meta>
|
||||
<#if hasAutoComplete>
|
||||
${hasAutoComplete}
|
||||
</#if>
|
||||
</title>
|
||||
<#if hasAutoComplete>
|
||||
${hasAutoComplete}
|
||||
<#else>
|
||||
${hasAutoComplete}
|
||||
</#if>
|
||||
</head>
|
||||
<#if status == 1>
|
||||
${status}
|
||||
<#elseif status == 2>
|
||||
${status}
|
||||
<#else>
|
||||
${status}
|
||||
</#if>
|
||||
</body>
|
||||
<#if type == 1>
|
||||
${type}
|
||||
<#elseif type == 2>
|
||||
${type}
|
||||
<#else>
|
||||
${type}
|
||||
</#if>
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
<#include "/include_include.ftml"/>
|
||||
@@ -0,0 +1,13 @@
|
||||
<#var a="a"/>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>凡狐管理控制台</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
${Styles.bodyNoBackground()}
|
||||
<link rel="stylesheet" type="text/css" href="/service/res/fadfox_v1.3.0_r2017052801.css">
|
||||
<script type="text/javascript" src="/service/res/fadfox_v1.3.0_r2017052801.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/ftmpl/manager/green/global_2015120101.css">
|
||||
<script type="text/javascript" src="/ftmpl/manager/green/global_2015120101.js"></script>
|
||||
</head>
|
||||
@@ -0,0 +1 @@
|
||||
${false?"a":true?"b":"c"}
|
||||
@@ -0,0 +1,3 @@
|
||||
<#var ins = new ArrayListS().instance() />
|
||||
<#var var = TestVar />
|
||||
${var}
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE ZHIQIM-CONFIG PUBLIC "-//ZHIQIM //DTD Zhiqim-Config Configuration 1.4.1//EN" "http://opensource.zhiqim.com/xmldtds/zhiqim_config_1_4_1.dtd">
|
||||
<zhiqim-config>
|
||||
|
||||
<group id="boot" desc="系统启动配置">
|
||||
<item key="name" value="${name}" type="protected" desc="系统名称" />
|
||||
<item key="version" value="${version}" type="protected" desc="系统版本" />
|
||||
<item key="port" value="${port}" type="private" desc="系统监听端口,用于启动监听和命令关闭工程" />
|
||||
</group>
|
||||
|
||||
</zhiqim-config>
|
||||
Reference in New Issue
Block a user