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 @@ + + + + + +