From a2a4dd75b0c0e51b325c4fbe89da80dfa4a5d24f Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 20 Feb 2023 17:13:57 +0800 Subject: [PATCH] 滑动条 --- src/main/resources/templates/febs/views/modules/mallMember/mallSalesManList.html | 4 ++ src/main/resources/templates/febs/views/modules/mallMember/mallAgentRecord.html | 32 +++++++++------ src/main/resources/templates/febs/views/modules/mallMember/addressAmountList.html | 6 +++ src/main/resources/templates/febs/views/modules/goods/carriageRuleList.html | 4 ++ src/main/resources/templates/febs/views/modules/product/categoryList.html | 4 ++ src/main/resources/templates/febs/views/modules/order/orderList.html | 5 ++ src/main/resources/templates/febs/views/modules/goods/goodsList.html | 4 ++ src/main/resources/templates/febs/views/modules/mallMember/salesmanAchieveList.html | 6 +++ src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html | 6 +++ 9 files changed, 58 insertions(+), 13 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/goods/carriageRuleList.html b/src/main/resources/templates/febs/views/modules/goods/carriageRuleList.html index 3c4c3a1..e43da7e 100644 --- a/src/main/resources/templates/febs/views/modules/goods/carriageRuleList.html +++ b/src/main/resources/templates/febs/views/modules/goods/carriageRuleList.html @@ -30,6 +30,10 @@ .layui-table img{ max-width:100px } + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } </style> </div> </div> diff --git a/src/main/resources/templates/febs/views/modules/goods/goodsList.html b/src/main/resources/templates/febs/views/modules/goods/goodsList.html index 3155432..5737be2 100644 --- a/src/main/resources/templates/febs/views/modules/goods/goodsList.html +++ b/src/main/resources/templates/febs/views/modules/goods/goodsList.html @@ -40,6 +40,10 @@ .layui-table img{ max-width:100px } + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } </style> </div> </div> diff --git a/src/main/resources/templates/febs/views/modules/mallMember/addressAmountList.html b/src/main/resources/templates/febs/views/modules/mallMember/addressAmountList.html index dc5f9e1..3bde1c2 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/addressAmountList.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/addressAmountList.html @@ -26,6 +26,12 @@ </div> </form> <table lay-filter="addressAmountTable" lay-data="{id: 'addressAmountTable'}"></table> + <style type="text/css"> + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } + </style> </div> </div> </div> diff --git a/src/main/resources/templates/febs/views/modules/mallMember/mallAgentRecord.html b/src/main/resources/templates/febs/views/modules/mallMember/mallAgentRecord.html index 0d50abf..df0777d 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/mallAgentRecord.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/mallAgentRecord.html @@ -49,6 +49,12 @@ </div> </form> <table lay-filter="agentApplyTable" lay-data="{id: 'agentApplyTable'}"></table> + <style type="text/css"> + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } + </style> </div> </div> </div> @@ -135,7 +141,7 @@ url: ctx + 'admin/mallMember/getAgentApplyList', defaultToolbar:[], cols: [[ - {field:'memberName', title:'微信昵称', width:100, rowspan: 3,align: 'center'} + {field:'memberName', title:'微信昵称', width:100, rowspan: 2,align: 'center'} ,{align: 'center', title: '基本信息', colspan: 7} ,{field: 'state', title: '申请状态', templet: function (d) { @@ -148,8 +154,18 @@ }else{ return '' } - }, minWidth: 100,rowspan: 3,align:'center'}, - ,{field:'createdTime', title:'申请时间', width:100,rowspan: 3,align: 'center'} + }, minWidth: 100,rowspan: 2,align:'center'}, + ,{field:'createdTime', title:'申请时间', width:100,rowspan: 2,align: 'center'} + ,{title: '操作', + templet: function (d) { + if(d.state === 1 ){ + return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="agree" shiro:hasPermission="user:update">同意</button>' + +'<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="disagree" shiro:hasPermission="user:update">拒绝</button>' + }else{ + return '' + } + },width:200,rowspan: 2,align:'center', fixed:"right" + } ],[ // {field: 'memberName', title: '微信昵称', minWidth: 150,align:'left'}, {field: 'name', title: '姓名', minWidth: 100,align:'left'}, @@ -172,16 +188,6 @@ // } // }, minWidth: 100,align:'center'}, // {field: 'createdTime', title: '申请时间', minWidth: 180,align:'center'}, - {title: '操作', - templet: function (d) { - if(d.state === 1 ){ - return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="agree" shiro:hasPermission="user:update">同意</button>' - +'<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="disagree" shiro:hasPermission="user:update">拒绝</button>' - }else{ - return '' - } - },minWidth: 200,align:'center', fixed:"right" - } ]] }); } diff --git a/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html b/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html index dc16561..d6ab55d 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html @@ -55,6 +55,12 @@ </div> </form> <table lay-filter="userTable" lay-data="{id: 'userTable'}"></table> + <style type="text/css"> + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } + </style> </div> </div> </div> diff --git a/src/main/resources/templates/febs/views/modules/mallMember/mallSalesManList.html b/src/main/resources/templates/febs/views/modules/mallMember/mallSalesManList.html index 0c9579c..93de3c1 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/mallSalesManList.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/mallSalesManList.html @@ -30,6 +30,10 @@ .layui-table img{ max-width:100px } + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } </style> </div> </div> diff --git a/src/main/resources/templates/febs/views/modules/mallMember/salesmanAchieveList.html b/src/main/resources/templates/febs/views/modules/mallMember/salesmanAchieveList.html index 947bac7..f30ee98 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/salesmanAchieveList.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/salesmanAchieveList.html @@ -33,6 +33,12 @@ </div> </form> <table lay-filter="salesmanAchieveTable" lay-data="{id: 'salesmanAchieveTable'}"></table> + <style type="text/css"> + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } + </style> </div> </div> </div> diff --git a/src/main/resources/templates/febs/views/modules/order/orderList.html b/src/main/resources/templates/febs/views/modules/order/orderList.html index 16adc16..5e445e9 100644 --- a/src/main/resources/templates/febs/views/modules/order/orderList.html +++ b/src/main/resources/templates/febs/views/modules/order/orderList.html @@ -99,6 +99,11 @@ .layui-table img{ max-width:100px } + + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } </style> </div> </div> diff --git a/src/main/resources/templates/febs/views/modules/product/categoryList.html b/src/main/resources/templates/febs/views/modules/product/categoryList.html index 29256f6..6be61b3 100644 --- a/src/main/resources/templates/febs/views/modules/product/categoryList.html +++ b/src/main/resources/templates/febs/views/modules/product/categoryList.html @@ -38,6 +38,10 @@ .layui-table img{ max-width:100px } + ::-webkit-scrollbar { + height: 20px !important; + background-color: #f4f4f4; + } </style> </div> </div> -- Gitblit v1.9.1