From 0865e2ffbfdc5b14f5f49cf7931eb93196b796c4 Mon Sep 17 00:00:00 2001 From: rogersun Date: Mon, 6 Jul 2026 15:55:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BD=BF=E7=94=A8=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E7=9A=84=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ai_show/index.vue | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/views/ai_show/index.vue b/src/views/ai_show/index.vue index 14b618a..d6bd253 100644 --- a/src/views/ai_show/index.vue +++ b/src/views/ai_show/index.vue @@ -23,6 +23,8 @@ const showResult = ref('') const templateDate = ref('') const result = ref(false) const loading = ref(false) +const think = ref('') +const aiModel = ref('') // 过滤条件数据 // 计算日期 @@ -62,6 +64,8 @@ async function get_data() { templateDate.value = '' result.value = false createTime.value = '' + think.value = '' + aiModel.value = '' force.value = compareSwitch.value === 'new' await get_ai_show_data(cinema_code.value, show_date.value, force.value).then(res => { if (res.status === 'success') { @@ -78,6 +82,8 @@ async function get_data() { realCount.value = res.data.real_count aiCount.value = res.data.ai_count createTime.value = res.data.create_time + think.value = res.data.think + aiModel.value = res.data.ai_model if (compareSwitch.value === 'template') { showData.value = res.data.template_obj } else if (compareSwitch.value === 'new') { @@ -266,6 +272,14 @@ onBeforeMount( 相关数据: + + + 调用模型: + + + {{ aiModel }} + + 智能排片预估销售额: @@ -325,6 +339,14 @@ onBeforeMount( {{ prompt }} + + + AI思考过程: + + + {{ think }} + +