From a104f16f01c207b4a7a9e32b20a936df38857d84 Mon Sep 17 00:00:00 2001 From: Council Date: Sat, 25 Apr 2026 10:39:18 +0800 Subject: [PATCH] feat(B2): verifier + verification + seat_template admin views --- .../view/admin/seat_template/list.html | 107 +++++++++++++++++ .../view/admin/seat_template/save.html | 113 ++++++++++++++++++ .../view/admin/verification/list.html | 79 ++++++++++++ .../vr_ticket/view/admin/verifier/list.html | 104 ++++++++++++++++ .../vr_ticket/view/admin/verifier/save.html | 56 +++++++++ 5 files changed, 459 insertions(+) create mode 100644 shopxo/app/plugins/vr_ticket/view/admin/seat_template/list.html create mode 100644 shopxo/app/plugins/vr_ticket/view/admin/seat_template/save.html create mode 100644 shopxo/app/plugins/vr_ticket/view/admin/verification/list.html create mode 100644 shopxo/app/plugins/vr_ticket/view/admin/verifier/list.html create mode 100644 shopxo/app/plugins/vr_ticket/view/admin/verifier/save.html diff --git a/shopxo/app/plugins/vr_ticket/view/admin/seat_template/list.html b/shopxo/app/plugins/vr_ticket/view/admin/seat_template/list.html new file mode 100644 index 0000000..a102645 --- /dev/null +++ b/shopxo/app/plugins/vr_ticket/view/admin/seat_template/list.html @@ -0,0 +1,107 @@ +{{:ModuleInclude('public/header')}} + +
+
+ + 返回 + + 座位模板 +
+ + +
+
+
+
+ +
+
+ +
+ + + 添加模板 + +
+
+ + + + + + + + + + + + + + + {{if !empty($list)}} + {{foreach $list as $item}} + + + + + + + + + {{/foreach}} + {{else}} + + + + {{/if}} + +
ID模板名称座位数状态添加时间操作
{{$item.id}}{{$item.name}}{{$item.seat_count|default=0}} + {{if $item.status == 1}} + 启用 + {{else}} + 禁用 + {{/if}} + {{if !empty($item.created_at)}}{{date('Y-m-d H:i', $item.created_at)}}{{/if}} + + 编辑 + + +
暂无数据
+ + + {{if !empty($page)}}{{$page|raw}}{{/if}} +
+
+ + + +{{:ModuleInclude('public/footer')}} \ No newline at end of file diff --git a/shopxo/app/plugins/vr_ticket/view/admin/seat_template/save.html b/shopxo/app/plugins/vr_ticket/view/admin/seat_template/save.html new file mode 100644 index 0000000..e8eedbf --- /dev/null +++ b/shopxo/app/plugins/vr_ticket/view/admin/seat_template/save.html @@ -0,0 +1,113 @@ +{{:ModuleInclude('public/header')}} + + + +
+
+ + 返回 + + {{if !empty($info)}}编辑模板{{else}}添加座位模板{{/if}} +
+ +
+
+ {{if !empty($info)}} + + {{/if}} + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ 请填写符合规范的 JSON 格式座位数据。编辑模式下此字段将更新。 +
+
+ +
+ +
+
+
+
+ +{{:ModuleInclude('public/footer')}} \ No newline at end of file diff --git a/shopxo/app/plugins/vr_ticket/view/admin/verification/list.html b/shopxo/app/plugins/vr_ticket/view/admin/verification/list.html new file mode 100644 index 0000000..d20ff71 --- /dev/null +++ b/shopxo/app/plugins/vr_ticket/view/admin/verification/list.html @@ -0,0 +1,79 @@ +{{:ModuleInclude('public/header')}} + +
+
+ + 返回 + + 核销记录 +
+ + +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + {{if !empty($list)}} + {{foreach $list as $item}} + + + + + + + + + + {{/foreach}} + {{else}} + + + + {{/if}} + +
ID票码核销员商品座位信息观演人核销时间
{{$item.id}}{{$item.ticket_code}}{{$item.verifier_name|default='-'}}{{$item.goods_title|default='-'}}{{$item.seat_info|default='-'}}{{$item.real_name|default='-'}}{{if !empty($item.created_at)}}{{date('Y-m-d H:i', $item.created_at)}}{{/if}}
暂无数据
+ + + {{if !empty($page)}}{{$page|raw}}{{/if}} +
+
+ +{{:ModuleInclude('public/footer')}} \ No newline at end of file diff --git a/shopxo/app/plugins/vr_ticket/view/admin/verifier/list.html b/shopxo/app/plugins/vr_ticket/view/admin/verifier/list.html new file mode 100644 index 0000000..817b3ab --- /dev/null +++ b/shopxo/app/plugins/vr_ticket/view/admin/verifier/list.html @@ -0,0 +1,104 @@ +{{:ModuleInclude('public/header')}} + +
+
+ + 返回 + + 核销员管理 +
+ + +
+
+
+
+ +
+
+ +
+ + + 添加核销员 + +
+
+ + + + + + + + + + + + + + + {{if !empty($list)}} + {{foreach $list as $item}} + + + + + + + + + {{/foreach}} + {{else}} + + + + {{/if}} + +
ID核销员名称关联用户状态添加时间操作
{{$item.id}}{{$item.name}}{{$item.user_name|default='-'}} + {{if $item.status == 1}} + 启用 + {{else}} + 禁用 + {{/if}} + {{if !empty($item.created_at)}}{{date('Y-m-d H:i', $item.created_at)}}{{/if}} + + 编辑 + + +
暂无数据
+ + + {{if !empty($page)}}{{$page|raw}}{{/if}} +
+
+ + + +{{:ModuleInclude('public/footer')}} \ No newline at end of file diff --git a/shopxo/app/plugins/vr_ticket/view/admin/verifier/save.html b/shopxo/app/plugins/vr_ticket/view/admin/verifier/save.html new file mode 100644 index 0000000..abfd4c4 --- /dev/null +++ b/shopxo/app/plugins/vr_ticket/view/admin/verifier/save.html @@ -0,0 +1,56 @@ +{{:ModuleInclude('public/header')}} + +
+
+ + 返回 + + {{if !empty($info)}}编辑核销员{{else}}添加核销员{{/if}} +
+ +
+
+ {{if !empty($info)}} + + {{/if}} + +
+
核销员信息
+
+
+ + +
+ +
+ + +
+ +
+ + +
+
+
+ +
+ +
+
+
+
+ +{{:ModuleInclude('public/footer')}} \ No newline at end of file