| 123456789101112131415161718192021222324 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <t:base type="jquery,easyui,tools"></t:base>
- <t:datagrid name="tBServicemanageTaskList" title="服务管理办理" actionUrl="activitiController.do?taskList&busCode=servicemanage" idField="id" fit="true">
- <t:dgCol title="编号" field="id" hidden="true"></t:dgCol>
- <t:dgCol title="上报来源" field="trapSource" ></t:dgCol>
- <t:dgCol title="服务团体" field="serviceTeam" ></t:dgCol>
- <t:dgCol title="服务目录" field="serviceItem" ></t:dgCol>
- <t:dgCol title="主题" field="subject" ></t:dgCol>
- <t:dgCol title="描述" field="content" ></t:dgCol>
- <t:dgCol title="紧急程度" field="urgentLevel" ></t:dgCol>
- <t:dgCol title="影响程度" field="effectLevel" ></t:dgCol>
- <t:dgCol title="客户端ip" field="clientIp" ></t:dgCol>
- <t:dgCol title="状态" field="TSPrjstatus_description" width="30"></t:dgCol>
- <t:dgCol title="当前环节" field="Process_task_name" width="60"></t:dgCol>
- <t:dgCol title="办理人" field="Process_task_assignee" width="30"></t:dgCol>
- <t:dgCol hidden="true" title="TASK ID(该字段隐藏)" field="Process_task_id"></t:dgCol>
- <t:dgCol hidden="true" title="key" field="Process_task_taskDefinitionKey"></t:dgCol>
- <t:dgCol title="操作" field="opt"></t:dgCol>
- <t:dgConfOpt exp="Process_task_assignee#empty#true" url="activitiController.do?claim&taskId={Process_task_id}" message="确定签收?" title="签收"></t:dgConfOpt>
- <t:dgFunOpt exp="Process_task_assignee#empty#false" funname="openhandle(Process_task_id,Process_task_name)" title="办理"></t:dgFunOpt>
- <t:dgFunOpt funname="processimg(Process_task_id,Process_task_name)" title="<font style=color:red>流程进度图</font>"></t:dgFunOpt>
- </t:datagrid>
-
|