From 4ae80c965fe34674c08d957f8b3f68c691f2e69f Mon Sep 17 00:00:00 2001 From: rogersun Date: Mon, 15 Jun 2026 13:37:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=99=BA=E8=83=BD=E6=8E=92?= =?UTF-8?q?=E7=89=87=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/ai_show.js | 13 ++ src/components/ec_api/BasicConfig.vue | 6 +- src/layout/components/PageAside.vue | 6 + src/router/index.js | 8 + src/views/ai_show/index.vue | 221 ++++++++++++++++++++++++++ 5 files changed, 251 insertions(+), 3 deletions(-) create mode 100644 src/apis/ai_show.js create mode 100644 src/views/ai_show/index.vue diff --git a/src/apis/ai_show.js b/src/apis/ai_show.js new file mode 100644 index 0000000..6434c9a --- /dev/null +++ b/src/apis/ai_show.js @@ -0,0 +1,13 @@ +import {request} from '@/request/index.js' + +export const get_ai_show_data = (cinema_code, show_date) => { + return request({ + url: 'ai/report', + method: 'get', + params: { + cinema_code: cinema_code, + show_date: show_date, + force: '0' + } + }) +} \ No newline at end of file diff --git a/src/components/ec_api/BasicConfig.vue b/src/components/ec_api/BasicConfig.vue index 079cfe1..ad6e451 100644 --- a/src/components/ec_api/BasicConfig.vue +++ b/src/components/ec_api/BasicConfig.vue @@ -227,7 +227,7 @@ onMounted(() => { - { - { - 产品文档 + + + + + 智能排片 + diff --git a/src/router/index.js b/src/router/index.js index 5f437ae..a21986c 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -49,6 +49,14 @@ const routes = [ meta:{ keepAlive: true, } + }, + { + path: 'ai_show', + name: 'AiShow', + component: () => import('@/views/ai_show/index.vue'), + meta:{ + keepAlive: true, + } } ] } diff --git a/src/views/ai_show/index.vue b/src/views/ai_show/index.vue new file mode 100644 index 0000000..25246fd --- /dev/null +++ b/src/views/ai_show/index.vue @@ -0,0 +1,221 @@ + + + + + +