| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- {
- "viewSetting": {
- "html": "<table width='100%' border='0' cellpadding='5' cellspacing='0' styles='editTable'></table>"
- },
- "headSetting": {
- "html": "<tr styles='viewHeadNode'></tr>"
- },
- "documentSetting": {
- "html": "<tr styles='documentNode'></tr>",
- "mouseoverStyles": "documentNode_over",
- "action": "open"
- },
- "items": [
- {
- "name": "$checkbox",
- "head": {
- "html": "<th styles='normalThNode'></th>",
- "width": "5%"
- },
- "content": {
- "html": "<td styles='checkboxTdNode'> </td>",
- "condition": "function(d){ return true }",
- "value": ""
- }
- },
- {
- "name": "title",
- "head": {
- "html": "<th styles='normalThNode' lable='title'></th>",
- "width": "40%"
- },
- "content": {
- "html": "<td styles='normalTdNode'>" +
- " <div item='title' styles='documentSubject'></div>" +
- // " <div>" +
- // " <div item='defaultWorkType' styles='itemInLine'></div><div item='defaultWorkLevel' styles='itemInLine'></div>" +
- // " </div>" +
- "</td>",
- "items": {
- "title": {},
- "defaultWorkType": {},
- "defaultWorkLevel": {}
- }
- }
- },
- {
- "name": "createTime",
- "head": {
- "html": "<th styles='normalThNode' lable='createTime'></th>",
- "width": "15%"
- },
- "content": {
- "html": "<td styles='normalTdCenterNode' item='createTime'></td>",
- "items": {
- "createTime" : {}
- }
- }
- },
- {
- "name": "status",
- "head": {
- "html": "<th styles='normalThNode' lable='status'></th>",
- "width": "15%"
- },
- "content": {
- "html": "<td styles='normalTdCenterNode' item='workProcessStatus'></td>",
- "items": {
- "workProcessStatus" : {}
- }
- }
- },
- {
- //"access": "admin",
- "head": {
- "html": "<th styles='normalThNode' lable='action'></th>",
- "width": "10%"
- },
- "content": {
- "html": "<td styles='normalTdCenterNode'>" +
- //" <span styles='documentActionNode' item='action_open'></span>" +
- " <span styles='documentActionNode' item='action_remove'></span>" +
- "</td>",
- "items": {
- "action_open": {
- "title": "open",
- "text": "open",
- "action": "action_open",
- "condition": "function( d ){ return true }",
- "styles": "documentActionNode",
- "mouseoverStyles": "documentActionNode_over",
- "mousedownStyles": "documentActionNode_down"
- },
- "action_remove":{
- "title": "remove",
- "text": "remove",
- "action": "action_remove",
- "condition": "function( d ){ return true }",
- "styles": "documentActionNode",
- "mouseoverStyles": "documentActionNode_over",
- "mousedownStyles": "documentActionNode_down"
- }
- }
- }
- }
- ]
- }
|