From 119dad459a5bb99d7b8e09bac98dbe64e1291df3 Mon Sep 17 00:00:00 2001 From: rogersun Date: Thu, 2 Jul 2026 14:06:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=8E=92=E7=89=87=E7=94=9F?= =?UTF-8?q?=E6=88=90=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ai_show/index.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/views/ai_show/index.vue b/src/views/ai_show/index.vue index 88ecf93..14b618a 100644 --- a/src/views/ai_show/index.vue +++ b/src/views/ai_show/index.vue @@ -11,6 +11,7 @@ const hallArray = ref([]) // 表格展示的数据 const showData = ref([]) const hallType = ref({}) +const createTime = ref('') const prompt = ref('') const tokens = ref(0) const takeTimes = ref(0) @@ -60,9 +61,11 @@ async function get_data() { aiCount.value = '' templateDate.value = '' result.value = false + createTime.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') { + console.log(res) result.value = false prompt.value = res.data.prompt tokens.value = res.data.take_tokens @@ -74,6 +77,7 @@ async function get_data() { hallType.value = res.data.hall_type realCount.value = res.data.real_count aiCount.value = res.data.ai_count + createTime.value = res.data.create_time if (compareSwitch.value === 'template') { showData.value = res.data.template_obj } else if (compareSwitch.value === 'new') { @@ -189,7 +193,7 @@ onBeforeMount(