81 lines
1.7 KiB
HTML
81 lines
1.7 KiB
HTML
<html login="false">
|
||
|
||
<head>
|
||
<title>辅助程序</title>
|
||
<style type="text/css">
|
||
fieldset{
|
||
border:solid 1px #aaa;
|
||
}
|
||
legend span{
|
||
font-size:14px;
|
||
font-weight:bold;
|
||
}
|
||
</style>
|
||
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<fieldset style="width:600px;">
|
||
<legend><span>电话拨打程序下载</span></legend>
|
||
<div class="fieldset-body">
|
||
<a widget="button" onclick="download()">下载</a>
|
||
<p>
|
||
鸿联电话机程序下载,Ps*安装时关闭杀毒软件。
|
||
</p>
|
||
</div>
|
||
</fieldset>
|
||
<fieldset style="width:600px;">
|
||
<legend><span>flash插件</span></legend>
|
||
<div class="fieldset-body">
|
||
<a widget="button" onclick="setup('安装flash插件','canvas/aos/mainui/assist/flash')">安装</a>
|
||
<p>
|
||
flash插件是网页上常用的浏览器插件,本系统中主要用于低版本IE的websocket通讯、文件上传。
|
||
</p>
|
||
</div>
|
||
</fieldset>
|
||
<fieldset style="width:600px;">
|
||
<legend><span>supcan插件</span></legend>
|
||
<div class="fieldset-body">
|
||
<a widget="button" onclick="setup('安装打印插件','canvas/aos/mainui/assist/supcan')">安装</a>
|
||
<p>
|
||
supcan插件是用于页面打印、预览、导出的插件。
|
||
</p>
|
||
</div>
|
||
</fieldset>
|
||
|
||
</body>
|
||
|
||
<script type="text/javascript">
|
||
function setup(title,url){
|
||
aos.open({
|
||
title:title,
|
||
url:url,
|
||
width:600,
|
||
height:500
|
||
})
|
||
}
|
||
/*
|
||
function download(url){
|
||
window.open(url);
|
||
} */
|
||
//下载电话安装程序
|
||
function download(){
|
||
|
||
var params = {};
|
||
params['phonedown']='phonedown';
|
||
aos.post({
|
||
url:'rush/post/getDownUrl',
|
||
data:params,
|
||
success:function(data){
|
||
window.open(data.url);
|
||
},
|
||
error:function(data){
|
||
aos.alert(data);
|
||
}
|
||
});
|
||
|
||
}
|
||
</script>
|
||
|
||
</html> |