| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <extend name="$_admin_public_layout" />
- <block name="main">
-
- <!-- 多标签后台内容部分 -->
- <div class="tab-content ct-tab-content">
- <div class="cs-home-remark">
- <div class="user-infor">
- <dt><i class="icon icon-user"></i></dt>
- <dd>
- <h3>你好, <span>{$_user_auth.nickname}</span> 欢迎使用本系统!</h3>
- <p>{:C('LOGO_DEFAULT')} <i class="icon icon-edit"></i></p>
- </dd>
- </div>
- <div class="timer">
- <div class="date">---</div>
- <div class="day">--</div>
- <time><span class="hh">--</span> : <span class="mm">--</span>: <span class="ss">--</span>
- <div class="apm">--</div>
- </time>
- </div>
- </div>
- <div class="line"></div>
- <div class="system-title">
- <i class="icon-qrcode"></i>
- <h2>{:C('WEB_SITE_COPYRIGHT')}</h2>
- <small>{:C('WEB_SITE_COPYRIGHT')}</small>
- </div>
- <div class="bg-home-bot"></div>
- <div class="version"
- style="width:90%;margin-left: 50px;height:30%;overflow: hidden/*border:1px solid #C9C9C9;*/">
- <div class="lf-title">
- 版本更新记录:
- </div>
- <volist name="version" id="val">
- <div class="lf">
- <p class="lf-p1">{$val.version}</p>
- <p class="lf-p2">{$val.update_info}</p>
- </div>
- </volist>
- </div>
- </div>
- <script src="__PUBLIC__/libs/guide/bootstrap-tour.js"></script>
- <script src="__PUBLIC__/libs/guide/guide_index.js?_t=2016121401"></script>
- <script>
- var sconds = setInterval(function (argument) {
- var date = new Date(),
- nowYear = date.getFullYear(),
- nowMonth = date.getMonth() + 1, //注意getMonth从0开始,getDay()也是(此时0代表星期日)
- nowDay = date.getDate(),
- nowHour = date.getHours(),
- nowMinute = date.getMinutes(),
- nowSecond = date.getSeconds();
- //nowSecond =Number,
- weekday = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
- nowWeek = weekday[date.getDay()];
- $(".date").text(nowYear + "-" + nowMonth + "-" + nowDay);
- $(".day").text(nowWeek);
- $(".hh").text(nowHour);
- $(".mm").text(nowMinute);
- $(".ss").text(nowSecond);
- if (nowHour > 12) {
- $(".apm").text("PM");
- }
- else {
- $(".apm").text("AM");
- }
- if (nowMinute < 10) {
- $(".mm").text("0" + nowMinute);
- }
- if (nowSecond < 10) {
- $(".ss").text("0" + nowSecond);
- }
- }, 1000)
- function openWin() {
- /**
- var opType = "11";
- if(opType != "11"){
- return;
- }
- */
- $('#_dlg_').dialog({
- title: '供应商二维码',
- width: 380,
- height: 420,
- closed: false,
- cache: false,
- href: '/scm/supplier/spQrcd',
- modal: true,
- buttons: []
- });
- }
- function downWin() {
- $('#downWin').dialog({
- title: '文件下载',
- width: 500,
- height: 320,
- closed: false,
- cache: false,
- href: '/scm/supplier/download',
- modal: true
- });
- }
- function Win() {
- $('#_dlg_').dialog({
- title: '供应商信息',
- width: 450,
- height: 300,
- closed: false,
- cache: false,
- href: '/system/user/updateSelf',
- modal: true,
- inline: true,
- buttons: [{ text: '保存', handler: function () { saveSp(); } }, { text: '取消', handler: function () { $('#_dlg_').dialog('close'); } }]
- });
- }
- </script>
- </block>
|