mirror of
https://github.com/zyx0814/dzzoffice.git
synced 2025-04-04 22:33:37 +08:00
* 修复数据表格点击重置按钮后不按类型加载数据问题和添加刷新按钮 * 修复邮件发件人为空问题 * 修复分享文件在移动端无法打开文件夹问题 * 修复网盘应用在Linux环境下部分语言不能翻译的问题 * 重命名 dzz/explorer/language/zh-CN 为 dzz/explorer/language/zh-cn * 修改php版本要求 * 优化在线升级页面UI,网盘新增群组空间大小修改 * 修改php版本要求 * Update core_version.php
69 lines
3.1 KiB
HTML
69 lines
3.1 KiB
HTML
<!--{template common/header_simple_start}-->
|
|
<link href="static/css/common.css?{VERHASH}" rel="stylesheet" media="all">
|
|
|
|
<script type="text/javascript" src="static/js/jquery.leftDrager.js?{VERHASH}"></script>
|
|
<!--{template common/header_simple_end}-->
|
|
<!--{template common/commer_header}-->
|
|
<div class="bs-container clearfix">
|
|
<div class="bs-left-container clearfix">
|
|
<!--{template left}-->
|
|
</div>
|
|
<div class="left-drager">
|
|
</div>
|
|
|
|
<div class="bs-main-container clearfix">
|
|
|
|
<div class="main-header">
|
|
<div class="clearfix" style="line-height:40px;padding:0 10px">
|
|
<!-- <strong style="font-size:14px;">{lang updatecache}</strong>-->
|
|
<span class="text-muted" id="step1" <!--{if $step==1}-->style="color:green"<!--{/if}-->>1.{lang nav_updatecache_confirm}</span>
|
|
<span class="text-muted" id="step2" <!--{if $step==2}-->style="color:green"<!--{/if}-->>2.{lang nav_updatecache_verify}</span>
|
|
<span class="text-muted" id="step3" <!--{if $step==3}-->style="color:green"<!--{/if}-->>3.{lang nav_updatecache_completed}</span>
|
|
</div>
|
|
</div>
|
|
<div class="main-content" style="padding:20px;border-top:1px solid #FFF">
|
|
<div class="well well-sm">
|
|
<!--{if $step==1}-->
|
|
<form method="post" class="form-horizontal form-horizontal-left" action="{MOD_URL}&op=updatecache&step=2">
|
|
<input name="formhash" value="{VERHASH}" type="hidden">
|
|
<p class="clearfix ml20">
|
|
<label class="checkbox-inline">
|
|
<input name="type[]" value="data" checked="" type="checkbox">
|
|
{lang tools_updatecache_data}
|
|
</label>
|
|
<label class="checkbox-inline">
|
|
<input name="type[]" value="tpl" id="tplcache" checked="" type="checkbox">
|
|
{lang tools_updatecache_tpl}
|
|
</label>
|
|
</p>
|
|
<p class="clearfix ml20">
|
|
<input class="btn btn-primary" name="confirmed" value="{lang confirms}" type="submit">
|
|
<script type="text/javascript">
|
|
if(history.length > (BROWSER.ie ? 0 : 1)) document.write('<input type="button" class="btn btn-default" value="{lang cancel}" onClick="history.go(-1);">');
|
|
</script>
|
|
</p>
|
|
</form>
|
|
<!--{elseif $step==2}-->
|
|
<p class="ml20">{lang tools_updatecache_waiting}</p>
|
|
<p class="text-success ml20">
|
|
<a href="{MOD_URL}&op=updatecache&step=3&type=data_tpl" class="btn btn-link">{lang message_redirect}</a>
|
|
</p>
|
|
<script type="text/JavaScript">setTimeout(function(){location.href='{MOD_URL}&op=updatecache&step=3&type=data_tpl';}, 2000);</script>
|
|
<!--{elseif $step==3}-->
|
|
<p class="text-success ml20" style="margin:10px;">{lang update_cache_succeed}</p>
|
|
<script type="text/javascript">
|
|
window.setTimeout(function() { location.href = '{MOD_URL}&op=updatecache'; }, 5000);
|
|
</script>
|
|
<!--{/if}-->
|
|
</div>
|
|
<ul class="help-block">
|
|
<h5>{lang board_message}</h5> {lang tools_updatecache_tips}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
jQuery('.left-drager').leftDrager_layout();
|
|
</script>
|
|
<script src="static/bootstrap/js/bootstrap.min.js?{VERHASH}"></script>
|
|
<!--{template common/footer_simple}--> |