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.
jeecg/WebContent/webpage/system/dataRule/ruleDataList.jsp

20 lines
1.3 KiB

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="/context/mytags.jsp"%>
<t:datagrid name="operationList" title="operate.manage" actionUrl="functionController.do?ruledategrid&functionId=${functionId}" idField="id">
<t:dgCol title="common.id" field="id" hidden="true"></t:dgCol>
<t:dgCol title="规则名称" field="ruleName" width="50"></t:dgCol>
<t:dgCol title="规则字段" field="ruleColumn" width="50"></t:dgCol>
<t:dgCol title="规则条件" field="ruleConditions" width="50"></t:dgCol>
<t:dgCol title="规则值" field="ruleValue" width="50"></t:dgCol>
<t:dgCol title="common.operation" field="opt" width="100"></t:dgCol>
<t:dgDelOpt url="functionController.do?delrule&id={id}" title="common.delete"></t:dgDelOpt>
<t:dgFunOpt funname="editoperation(id,operationname)" title="common.edit"></t:dgFunOpt>
<t:dgToolBar title="common.add.param" langArg="common.operation" icon="icon-add" url="functionController.do?addorupdaterule&functionId=${functionId}" funname="add"></t:dgToolBar>
</t:datagrid>
<script type="text/javascript">
function editoperation(operationId,operationname)
{
createwindow("<t:mutiLang langKey="common.edit.param" langArg="common.operation"/>","functionController.do?addorupdaterule&functionId=${functionId}&id="+operationId);
}
</script>