From 622fb46b9feb34a05d5ba639599228620b891ebd Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期二, 09 六月 2020 10:19:10 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/staDesc/staDesc.js |   55 +++++++++----------------------------------------------
 1 files changed, 9 insertions(+), 46 deletions(-)

diff --git a/src/main/webapp/static/js/staDesc/staDesc.js b/src/main/webapp/static/js/staDesc/staDesc.js
index efc906c..32ef9f0 100644
--- a/src/main/webapp/static/js/staDesc/staDesc.js
+++ b/src/main/webapp/static/js/staDesc/staDesc.js
@@ -22,10 +22,10 @@
 //             ,{field: 'typeId', align: 'center',title: '璺緞ID'}
             ,{field: 'typeNo$', align: 'center',title: '鍏ュ嚭搴撶被鍨�'}
             // ,{field: 'typeDesc', align: 'center',title: '浣滀笟绫诲瀷'}
-            ,{field: 'stnNo$', align: 'center',title: '浣滀笟绔欑偣',event: 'stnNo', style: 'cursor:pointer'}
+            ,{field: 'stnNo$', align: 'center',title: '璧峰绔欑偣'}
             ,{field: 'stnDesc', align: 'center',title: '绔欑偣鍚嶇О'}
-            ,{field: 'crnNo$', align: 'center',title: '鍫嗗灈鏈哄彿',event: 'crnNo', style: 'cursor:pointer'}
-            ,{field: 'crnStn$', align: 'center',title: '鍫嗗灈鏈虹珯鐐�',event: 'crnStn', style: 'cursor:pointer'}
+            ,{field: 'crnNo$', align: 'center',title: '鍫嗗灈鏈哄彿'}
+            ,{field: 'crnStn$', align: 'center',title: '鐩爣绔欑偣'}
             ,{field: 'memo', align: 'center',title: '澶囨敞'}
             // ,{field: 'modiUser$', align: 'center',title: '淇敼浜哄憳',event: 'modiUser', style: 'cursor:pointer'}
             // ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿'}
@@ -224,7 +224,7 @@
                     title: '璇︽儏',
                     maxmin: true,
                     area: [top.detailWidth, top.detailHeight],
-                    shadeClose: false,
+                    shadeClose: true,
                     content: 'staDesc_detail.html',
                     success: function(layero, index){
                         setFormVal(layer.getChildFrame('#detail', index), data, true);
@@ -266,7 +266,7 @@
                        title: '鍏ュ嚭搴撹鎯�',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basWrkIotype/basWrkIotype_detail.html',
                        success: function(layero, index){
                            $.ajax({
@@ -302,7 +302,7 @@
                        title: '浣滀笟璇︽儏',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basDevp/basDevp_detail.html',
                        success: function(layero, index){
                            $.ajax({
@@ -338,7 +338,7 @@
                        title: '鍫嗗灈鏈鸿鎯�',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basCrnp/basCrnp_detail.html',
                        success: function(layero, index){
                            $.ajax({
@@ -374,7 +374,7 @@
                        title: '鍫嗗灈鏈虹珯鐐硅鎯�',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../basDevp/basDevp_detail.html',
                        success: function(layero, index){
                            $.ajax({
@@ -410,7 +410,7 @@
                        title: '淇敼璇︽儏',
                        maxmin: true,
                        area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
+                       shadeClose: true,
                        content: '../user/user_detail.html',
                        success: function(layero, index){
                            $.ajax({
@@ -436,43 +436,6 @@
                    });
                 }
                 break;
-            case 'appeUser':
-                var param = top.reObject(data).appeUser;
-                if (param === undefined) {
-                    layer.msg("鏃犳暟鎹�");
-                } else {
-                   layer.open({
-                       type: 2,
-                       title: '鍒涜鎯�',
-                       maxmin: true,
-                       area: [top.detailWidth, top.detailHeight],
-                       shadeClose: false,
-                       content: '../user/user_detail.html',
-                       success: function(layero, index){
-                           $.ajax({
-                               url: baseUrl+"/user/"+ param +"/auth",
-                               headers: {'token': localStorage.getItem('token')},
-                               method: 'GET',
-                               success: function (res) {
-                                   if (res.code === 200){
-                                       setFormVal(layer.getChildFrame('#detail', index), res.data, true);
-                                       top.convertDisabled(layer.getChildFrame('#data-detail :input', index), true);
-                                       layer.getChildFrame('#data-detail-submit-save,#data-detail-submit-edit,#prompt', index).hide();
-                                       layer.iframeAuto(index);layer.style(index, {top: (($(window).height()-layer.getChildFrame('#data-detail', index).height())/3)+"px"});
-                                       layero.find('iframe')[0].contentWindow.layui.form.render('select');
-                                       layero.find('iframe')[0].contentWindow.layui.form.render('checkbox');
-                                   } else if (res.code === 403){
-                                       parent.location.href = "/";
-                                   }else {
-                                       layer.msg(res.msg)
-                                   }
-                               }
-                           })
-                       }
-                   });
-                }
-                break;
-
         }
     });
 

--
Gitblit v1.9.1