diff --git a/src/pages.json b/src/pages.json
index fe088c7..c1e0f13 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -683,6 +683,17 @@
}
}
]
+ },
+ {
+ "root": "subpackage/blacklist",
+ "pages": [
+ {
+ "path": "pages/abnormal_list/abnormal_list",
+ "style" : {
+ "navigationBarTitleText": "进场人数异常"
+ }
+ }
+ ]
}
],
"globalStyle": {
diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue
index 1dae59e..4821034 100644
--- a/src/pages/index/index.vue
+++ b/src/pages/index/index.vue
@@ -137,6 +137,12 @@
path: '/pages/order_list/order_list?order_type=18',
serverKey: 1014 // 后端对应权限编号 1014
},
+ {
+ id: 10,
+ name: '进场人数异常',
+ path: '/subpackage/blacklist/pages/abnormal_list/abnormal_list',
+ serverKey: 1014 // 后端对应权限编号 1014
+ },
];
const app = getApp();
diff --git a/src/static/images/icon/index/tab_10.png b/src/static/images/icon/index/tab_10.png
new file mode 100644
index 0000000..846edf1
Binary files /dev/null and b/src/static/images/icon/index/tab_10.png differ
diff --git a/src/store/index.js b/src/store/index.js
index cdd2e82..885237a 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -42,6 +42,7 @@ export default new Vuex.Store({
'1011': '商品零售',
'1013': '课程管理',
'1014': '储值卡管理',
+ '1015': '进场人数异常',
},
// 场地占用提交页面信息
occupyInfo: {
diff --git a/src/subpackage/blacklist/js/api.js b/src/subpackage/blacklist/js/api.js
new file mode 100644
index 0000000..1f2c492
--- /dev/null
+++ b/src/subpackage/blacklist/js/api.js
@@ -0,0 +1,8 @@
+import { ORIGIN } from '../../../js/api';
+
+export const BLACKLIST_API = {
+ stadiumList:`${ORIGIN}/admin/stadium/list`, // 店铺列表
+
+}
+
+export default BLACKLIST_API;
\ No newline at end of file
diff --git a/src/subpackage/blacklist/js/server.js b/src/subpackage/blacklist/js/server.js
new file mode 100644
index 0000000..2ee5a23
--- /dev/null
+++ b/src/subpackage/blacklist/js/server.js
@@ -0,0 +1,10 @@
+import { Server } from '../../../js/server';
+
+class BlacklistServer extends Server {
+ constructor(props){
+ super(props)
+ }
+}
+
+
+export default new BlacklistServer();
\ No newline at end of file
diff --git a/src/subpackage/blacklist/pages/abnormal_list/abnormal_list.vue b/src/subpackage/blacklist/pages/abnormal_list/abnormal_list.vue
new file mode 100644
index 0000000..15ab5d2
--- /dev/null
+++ b/src/subpackage/blacklist/pages/abnormal_list/abnormal_list.vue
@@ -0,0 +1,184 @@
+
+
+
+ 当前门店
+
+
+
+ 全部
+
+
+
+
+
+
+
+
+ 核销日期:2020-08-27
+
+
+
+
+
+
+ 欧轩智能羽毛球馆(永泰店)
+
+ 订单编号:20195175645666
+ (租场)
+
+
+ 用户信息:183165538(周大强)
+
+
+ 核销码:200801108978
+
+
+ 验证方式:扫码器验证(pad)
+
+
+ 核销时间:2021-05-17 11:12:58
+
+
+ 抓拍图片:
+
+
+ 移出黑名单
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/subpackage/blacklist/static/images/arrow.png b/src/subpackage/blacklist/static/images/arrow.png
new file mode 100644
index 0000000..ad300f4
Binary files /dev/null and b/src/subpackage/blacklist/static/images/arrow.png differ
diff --git a/src/subpackage/blacklist/static/images/triangle.png b/src/subpackage/blacklist/static/images/triangle.png
new file mode 100644
index 0000000..7b7a4a8
Binary files /dev/null and b/src/subpackage/blacklist/static/images/triangle.png differ