YYC
2025-05-15 2df906a447195f9786dd468512ea895d6cc18532
igds-app/js/admin/work-record.js
@@ -1,5 +1,6 @@
var url = null;
var recordList = null;
var dateTime;
//申请记录
var data = {
   "interfaceId": "5702",
@@ -13,10 +14,28 @@
function init() {
   var user = JSON.parse(localStorage.getItem('user'));
   url = user.url + "/api-phone/v35/gateway";
   url = user.url + "/api/phone/v35/gateway";
   data.tokenAuth = user.tokenAuth;
   data.data.userName = user.userName;
   data.data.userName = user.username;
   console.log(JSON.stringify(data.data),"work-record")
   dateTime = getDate(new Date());
   getRecordList();
}
//日期格式化yyyy-MM-dd HH:mm
function getDate(date) {
   var year = date.getFullYear();
   var month, day,hour,minute;
   month = date.getMonth() + 1;
   if (month > 0 && month <= 9) {
      month = "0" + month;
   }
   day = date.getDate()
   if (day > 0 && day <= 9) {
      day = "0" + day
   }
   hour = date.getHours();
   minute = date.getMinutes();
   return year + "-" + month + "-" + day + " "+ hour + ":" + minute
}
//获取申请记录列表
@@ -34,7 +53,7 @@
            renderRecordList();
         } else {
            renderRecordList();
            mui.alert(result.msg, '提示', ["确定"], function() {}, "div");
            mui.toast(result.msg, '提示', ["确定"], function() {}, "div");
         }
      },
      error: function() {
@@ -48,14 +67,14 @@
   var html = '';
   if (recordList && recordList.length > 0) {
      $.each(recordList, function(index, item) {
         html += '<li><div class="con" info = "' + item.info + '"><span class="status">';
         html += '<li><div class="con conInfo" info = "' + item.info + '"><span class="status">';
         //已审核
         if (item.status == '10') {
            html += '<img src="images/icons/g-i29.png" alt=""></span>'
         } else if (item.status == '20') { // 待审核
            html += '<img src="images/icons/g-i28.png" alt=""></span>'
         }
         html += '<div class="title">所属分库:<b>' + item.deptName + '</b></div><div class="box"><ul class="gd-list">';
         html += '<div class="title"><b></b></div><div class="box"><ul class="gd-list">';
         html += '<li><a href="" class="con"style="background-image: url(images/icons/a-bg12.png);">';
         html += '<div class="tit">业务类型:</div><div class="name">' + item.type + '</div></a></li>';
         html += '<li><a href="" class="con"style="background-image: url(images/icons/a-bg13.png);">';
@@ -64,22 +83,35 @@
            item.endTime + '</span></p></div>';
      })
   } else {
      html +=
         '<li><div class="con"><div style="text-align: center;font-size: 20px;color:#dd524d;padding-top: 18px;">暂无申请记录信息</div></div></li>';
      html += '<li><div class="con conInfo" info = "暂无申请记录"><span class="status">';
      //已审核
      html += '<img src="images/icons/g-i29.png" alt=""></span>'
      html += '<div class="title"><b>暂无申请记录</b></div><div class="box"><ul class="gd-list">';
      html += '<li><a href="" class="con"style="background-image: url(images/icons/a-bg12.png);">';
      html += '<div class="tit">业务类型:</div><div class="name">--</div></a></li>';
      html += '<li><a href="" class="con"style="background-image: url(images/icons/a-bg13.png);">';
      html += '<div class="tit">关联仓库:</div><div class="name">--</div></a></li></ul>';
      html += '<div class="time"><p>有效开始时间: <span>' + dateTime + '</span></p><p>有效结束时间: <span>' + dateTime + '</span></p></div>';
   }
   $("#handleList").html(html);
}
//查看信息
mui(".mui-scroll").on("tap",".wp ul li .con",function(){
mui(".mui-scroll").on("tap", ".wp ul li .conInfo", function() {
   var info = this.getAttribute("info");
   mui.alert(info, '工单内容', ["确定"], function() {}, "div");
   // mui.alert(info, '工单内容', ["确定"], function() {}, "div");
   $("#textareaPop").val(info)
   $('#m-pop').css('display', 'flex');
   console.log("查看信息")
})
//关闭弹窗
function closePop() {
   $("#m-pop").css('display', 'none');
}
mui('.mui-scroll-wrapper').scroll({
   indicators: false, //是否显示滚动条
   indicators: true, //是否显示滚动条
   deceleration: 0.0006, //阻尼系数,系数越小滑动越灵敏
   bounce: false, //是否启用回弹
   deceleration: 0.0005 //flick 减速系数,系数越大,滚动速度越慢,滚动距离越小,默认值0.0006