From 2f5ca0b30fda3d5c2762b6ae1a3a462fc9658ef9 Mon Sep 17 00:00:00 2001 From: youda Date: Sun, 18 May 2025 12:54:35 +0800 Subject: [PATCH] 11 --- app/admin/view/Order/order_list.html | 147 ++++++++++++++------------- 1 file changed, 77 insertions(+), 70 deletions(-) diff --git a/app/admin/view/Order/order_list.html b/app/admin/view/Order/order_list.html index b94cd4d..2b0f78b 100644 --- a/app/admin/view/Order/order_list.html +++ b/app/admin/view/Order/order_list.html @@ -2,75 +2,82 @@
- -
+ +
-
-
-
-
-
- +
+ +
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
-
+
+ +
+
+
+ + +
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - - -
-
- -
+ +
@@ -213,7 +220,7 @@ elem: '#order-table', url: "{:url('get_order_list')}", page: true, - height: 'full-'+($("#order-list-body").height()+40), + height: 'full-' + ($("#order-list-body").height() + 40), lineStyle: 'height:170px', limit: 10, limits: [10, 20, 50, 100], @@ -257,7 +264,7 @@ if (obj.event === 'detail') { // 弹出订单详情窗口 layer.open({ - type: 2, + type: 2, title: '订单详情', area: ['90%', '90%'], content: "/admin/buy_order_detail?id=" + data.id, // iframe的url @@ -267,7 +274,7 @@ } else if (obj.event === 'prize_log') { // 查看抽奖日志 layer.open({ - type: 2, + type: 2, title: '操作日志', area: ['90%', '90%'], content: "/admin/markdown/order_info?goods_id=" + data.goods_id + "&order_num=" + data.order_num, @@ -278,7 +285,7 @@ }); // 导出Excel - $('#export-order').on('click', function() { + $('#export-order').on('click', function () { var formData = $('.layui-form').serialize(); window.location.href = "{:url('export_order_list')}?" + formData; });