From 0adbc72b09cbc1fd3c0f59cb65c3c476d65adc15 Mon Sep 17 00:00:00 2001 From: YYC <1833023622@qq.com> Date: 星期三, 17 五月 2023 18:36:02 +0800 Subject: [PATCH] 工单申请 --- igds-app/js/admin/work-record.js | 70 ++++++++++++++++++++++++++++++++--- 1 files changed, 64 insertions(+), 6 deletions(-) diff --git a/igds-app/js/admin/work-record.js b/igds-app/js/admin/work-record.js index de11e4c..2f63e8c 100644 --- a/igds-app/js/admin/work-record.js +++ b/igds-app/js/admin/work-record.js @@ -16,6 +16,7 @@ url = user.url + "/api-phone/v35/gateway"; data.tokenAuth = user.tokenAuth; data.data.userName = user.userName; + console.log(JSON.stringify(data.data),"work-record") getRecordList(); } @@ -42,24 +43,75 @@ mui.alert('绯荤粺绻佸繖,璇烽噸鏂扮櫥褰曞皾璇曪紒', '鎻愮ず', ["纭畾"], function() {}, "div"); } }) + recordList = [{ + "id": "59", + "deptName": "1鍙蜂粨", + "status": "10", + "applyUserName": "閮濆啗", + "type": "exercitation reprehenderit sint", + "startTime": "1974-07-05 21:56", + "endTime": "2013-08-19 05:43", + "info": "sed adipisicing quis irure", + "depotId": "90", + "depotName": "鍗充紶鐘舵柊浜旈檯" + }, + { + "id": "39", + "deptName": "1鍙蜂粨", + "status": "20", + "applyUserName": "琚佸己", + "type": "sed et sit irure eu", + "startTime": "2015-10-25 12:30", + "endTime": "1971-04-18 19:34", + "info": "reprehenderit qui quis pariatur anim", + "depotId": "89", + "depotName": "褰撳叆鐗╄繕绠�" + }, + { + "id": "55", + "deptName": "3鍙蜂粨", + "status": "20", + "applyUserName": "瀹嬩附", + "type": "in", + "startTime": "1994-10-12 18:25", + "endTime": "2008-01-19 00:26", + "info": "ex ullamco id dolor", + "depotId": "42", + "depotName": "鏂板父鎶�浣嶄腑" + }, + { + "id": "50", + "deptName": "2鍙蜂粨", + "status": "10", + "applyUserName": "榛勮秴", + "type": "nostrud elit", + "startTime": "2018-07-07 10:25", + "endTime": "2000-11-07 10:02", + "info": "et minim", + "depotId": "53", + "depotName": "浜虹瀹冨啗棰�" + } + ] } function renderRecordList() { 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>' + item.deptName + + '</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);">'; - html += '<div class="tit">鍏宠仈浠撳簱:</div><div class="name">' + (item.depotName == null ? "--" : item.depotName) + '</div></a></li></ul>'; + html += '<div class="tit">鍏宠仈浠撳簱:</div><div class="name">' + (item.depotName == null ? "--" : item + .depotName) + '</div></a></li></ul>'; html += '<div class="time"><p>鏈夋晥寮�濮嬫椂闂�: <span>' + item.startTime + '</span></p><p>鏈夋晥缁撴潫鏃堕棿: <span>' + item.endTime + '</span></p></div>'; }) @@ -68,16 +120,22 @@ '<li><div class="con"><div style="text-align: center;font-size: 20px;color:#dd524d;padding-top: 18px;">鏆傛棤鐢宠璁板綍淇℃伅</div></div></li>'; } $("#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, //鏄惁鏄剧ず婊氬姩鏉� deceleration: 0.0006, //闃诲凹绯绘暟,绯绘暟瓒婂皬婊戝姩瓒婄伒鏁� -- Gitblit v1.9.3