yili-apps/com.actionsoft.apps.coe.pal/template/page/pal.ws.view.htm
2022-06-27 23:38:56 +08:00

62 lines
3.0 KiB
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!Doctype html>
<html xmlns=http://www.w3.org/1999/xhtml>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><I18N#流程资产预览></title>
<!-- 提示 开始-->
<script type="text/javascript" src="../<I18N#COEPATH>/js/qTip2/dist/jquery.qtip.js"></script>
<script type="text/javascript" src="../<I18N#COEPATH>/js/qTip2/coe.tip.config.js"></script>
<script type="text/javascript" src="../<I18N#COEPATH>/js/coe.ws.preview.js"></script>
<link rel="stylesheet" type="text/css" href="../<I18N#COEPATH>/js/qTip2/dist/jquery.qtip.css" />
<style>
div.qtip-content{/*解决qTip字体与全局字体冲突问题*/
color:white;
}
[class^="icon-"], [class*=" icon-"] {/*解决extjs图片上传的样式与bootstrap的冲突问题*/
background-image:none;
height:auto;
width:96%;
}
</style>
<script>
$(function(){
initTip($('*[title]'));
})
</script>
<!-- 提示 结束 -->
<script>
var wsUUID='<#wsUUID>';
var wsState=<#wsState>;
</script>
<link href="../commons/css/awsui.css" rel="stylesheet">
<!--coe css -->
<link rel="stylesheet" type="text/css" href="../<I18N#COEPATH>/css/public.css">
</head>
<body style="padding:0 5px;">
<div style="height:25px; text-align:right;border-top:1px solid #E6E6E6; border-bottom:1px solid #E6E6E6; padding:2px;">
<img class="menuImg" src="../<I18N#COEPATH>/img/pl/process.tree.png" title="<I18N#流程分级>" data-toggle=tooltip style="cursor: pointer;" width="22px" height="22px" onclick="window.parent.openProcessLevel(wsUUID,1)"/>
<img class="menuImg" src='../<I18N#COEPATH>/img/pl/process.list.png' title="<I18N#流程清单>" data-toggle=tooltip style="cursor: pointer;" width="22px" height="22px" onclick="window.parent.openProcessLevel(wsUUID,2);return false;"/>
<img class="menuImg" src='../<I18N#COEPATH>/img/pl/process.chart.png' title="<I18N#统计分析>" data-toggle=tooltip style="cursor: pointer;" width="22px" height="22px" onclick="window.parent.openProcessLevel(wsUUID,3);return false;"/>
<img class="menuImg" src='../<I18N#COEPATH>/img/pl/process.org.png' title="<I18N#流程办公室>" data-toggle=tooltip style="cursor: pointer;" width="22px" height="22px" onclick="window.parent.openProcessLevel(wsUUID,4);return false;"/>
</div>
<h4 style="margin-bottom:5px;"><I18N#信息></h4>
<I18N#流程资产><#wsName>
<br/>
<I18N#当前状态><#wsStatus>
<br/><br/>
<input class="button" type="button" onclick="window.parent.openCreateDialog(wsUUID)" value="<I18N#属性设置>"/> <input class="button" type="button" onclick="window.parent.stopCoeWorkSpace(wsUUID,wsState);return false;" value="<#czWsStatus>"/> <input class="button" type="button" onclick="window.parent.expData(wsUUID);return false;" value="<I18N#导出>"/> <#deleteButton>
<hr style="margin-bottom:5px;"/>
<h4 style="margin-bottom:5px;"><I18N#统计></h4>
<div id="show" style="margin-left:-125px"></div>
</body>
</html>
<script>
var data = [];
<#zScript>
var title = '';
var bar1 = new bar();
bar1.id = 'show';
bar1.title = title;
bar1.data = data;
bar1.show();
</script>