Files
OMS/app/ome/view/desktop/widgets/consultandpatch.html
2026-01-04 19:08:31 +08:00

75 lines
2.8 KiB
HTML

<!--
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<style>
#widgets_consultinfo, #widgets_patchinfo{width:100%;}
#widgets_consultinfo tr, #widgets_patchinfo tr{ height:30px;line-height:30px;color:#333}
#widgets_consultinfo tr th, #widgets_patchinfo tr th{text-align:left;width:70%;}
#widgets_consultinfo tr td, #widgets_patchinfo tr td{text-align:right;font-weight:normal;padding-right:10px;}
#ome_desktop_widgets_consultinfo .no_infos, #ome_desktop_widgets_patchinfo .no_infos{padding:10px 0 5px 0;}
</style>
<div class="item flt" id="ome_desktop_widgets_consultinfo">
<div class="dashbd-action"></div>
<div class="dashbd-bd">
<div class="dashbd-head">
<div class="dashbd-headl">产品动态</div>
</div>
<div class="dashbd-list">
<div class="clearfix dashbd-row">
<{if $info.news}>
<table id="widgets_consultinfo" cellpadding="0" cellspacing="0">
<{foreach from=$info.news item=item}>
<tr>
<th><{$item.url}></th>
<td><{$item.publish_date}></td>
</tr>
<{/foreach}>
</table>
<{else}>
<div class="no_infos">暂无任何产品动态......</div>
<{/if}>
</div>
</div>
</div>
</div>
<div class="item flt" id="ome_desktop_widgets_patchinfo">
<div class="dashbd-action"></div>
<div class="dashbd-bd">
<div class="dashbd-head">
<div class="dashbd-headl">升级补丁</div>
</div>
<div class="dashbd-list">
<div class="clearfix dashbd-row">
<{if $info.changelog}>
<table id="widgets_consultinfo" cellpadding="0" cellspacing="0">
<{foreach from=$info.changelog item=item}>
<tr>
<th><{$item.url}></th>
<td><{$item.publish_date}></td>
</tr>
<{/foreach}>
</table>
<{else}>
<div class="no_infos">暂无任何升级补丁......</div>
<{/if}>
</div>
</div>
</div>
</div>