Index: ssts-web/src/main/webapp/forgon4/css/icon.css =================================================================== diff -u -r21864 -r22018 --- ssts-web/src/main/webapp/forgon4/css/icon.css (.../icon.css) (revision 21864) +++ ssts-web/src/main/webapp/forgon4/css/icon.css (.../icon.css) (revision 22018) @@ -250,4 +250,13 @@ .bg-dianzidan{ background-image: url(bgbh/icon_dianzidan.png) !important; padding-right:16px; +} +.btn_add{ + background:url('icons/btn_add.gif') no-repeat; +} +.btn_edit{ + background:url('icons/btn_edit.gif') no-repeat; +} +.btn_delete{ + background:url('icons/btn_delete.gif') no-repeat; } \ No newline at end of file Index: ssts-web/src/main/webapp/systemmanage/workFlow/workFlowView.js =================================================================== diff -u -r21996 -r22018 --- ssts-web/src/main/webapp/systemmanage/workFlow/workFlowView.js (.../workFlowView.js) (revision 21996) +++ ssts-web/src/main/webapp/systemmanage/workFlow/workFlowView.js (.../workFlowView.js) (revision 22018) @@ -185,19 +185,19 @@ showRightClick : false, tbar : [ { text : '添加', - iconCls : 'btn_ext_add', + iconCls : 'btn_add', handler : function() { addAndEditWorkFlow(); } }, '-', { text : '修改', - iconCls : 'btn_ext_application_edit', + iconCls : 'btn_edit', handler : function() { loadFormDataAndUpdate(grid); } }, '-', { text : '删除', - iconCls : 'btn_ext_application_del', + iconCls : 'btn_delete', handler : function() { deleteWorkFlow(grid); }