You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
319 lines
9.7 KiB
319 lines
9.7 KiB
<script setup> |
|
import {onBeforeMount, ref, reactive} from 'vue'; |
|
import {ElMessage} from 'element-plus' |
|
import {get_ai_show_data} from "@/apis/ai_show.js"; |
|
|
|
// region 表格数据代码 |
|
const tableData = ref([]) |
|
const hallData = ref([]) |
|
const hallArray = ref([]) |
|
|
|
// 表格展示的数据 |
|
const showData = ref([]) |
|
const hallType = ref({}) |
|
const prompt = ref('') |
|
const tokens = ref(0) |
|
const takeTimes = ref(0) |
|
const realSales = ref('') |
|
const aiSales = ref('') |
|
const realCount = ref('') |
|
const aiCount = ref('') |
|
const showResult = ref('') |
|
const templateDate = ref('') |
|
const result = ref(false) |
|
const loading = ref(false) |
|
|
|
// 过滤条件数据 |
|
// 计算日期 |
|
const getDefaultDate = () => { |
|
const date = new Date() |
|
date.setDate(date.getDate() - 1) |
|
const year = date.getFullYear().toString().padStart(4, "0") |
|
const month = (date.getMonth() + 1).toString().padStart(2, "0") |
|
const day = date.getDate().toString().padStart(2, "0") |
|
console.log(`${year}-${month}-${day}`) |
|
return `${year}-${month}-${day}` |
|
} |
|
const show_date = ref(`2026-06-12`) |
|
show_date.value = getDefaultDate() |
|
const cinema_code = ref('11078801') |
|
const force = ref(true) |
|
const templateSwitch = ref(false) |
|
|
|
|
|
const show_alter = () => { |
|
ElMessage.error('没有查询到有效的智能排片数据,请调整日期和影院后再试!') |
|
} |
|
|
|
// 通过异步请求获取影院列表数据 |
|
async function get_data() { |
|
showData.value = [] |
|
loading.value = true |
|
prompt.value = '' |
|
tokens.value = 0 |
|
takeTimes.value = 0 |
|
realSales.value = '' |
|
aiSales.value = '' |
|
showResult.value = '' |
|
realCount.value = '' |
|
aiCount.value = '' |
|
templateDate.value = '' |
|
result.value = false |
|
await get_ai_show_data(cinema_code.value, show_date.value, force.value).then(res => { |
|
if (res.status === 'success') { |
|
result.value = false |
|
prompt.value = res.data.prompt |
|
tokens.value = res.data.take_tokens |
|
takeTimes.value = res.data.take_times |
|
realSales.value = res.data.real_sales |
|
aiSales.value = res.data.ai_sales |
|
showResult.value = res.data.result |
|
templateDate.value = res.data.template_date |
|
hallType.value = res.data.hall_type |
|
realCount.value = res.data.real_count |
|
aiCount.value = res.data.ai_count |
|
if (templateSwitch.value) { |
|
showData.value = res.data.template_obj |
|
} else { |
|
if (force.value) { |
|
showData.value = res.data.real_obj |
|
} else { |
|
showData.value = res.data.target_obj |
|
} |
|
} |
|
console.log(showData.value, prompt.value, tokens.value, takeTimes.value, realSales.value, aiSales.value, showResult.value) |
|
formatTableData() |
|
loading.value = false |
|
} else { |
|
result.value = true |
|
show_alter() |
|
loading.value = false |
|
} |
|
}).catch(err => { |
|
console.log(err) |
|
} |
|
) |
|
loading.value = false |
|
} |
|
|
|
// 处理表格数据 |
|
function formatTableData() { |
|
hallArray.value = [] |
|
hallData.value = [] |
|
tableData.value = [] |
|
let temp = 0; |
|
showData.value.forEach((item, index) => { |
|
tableData.value.push({ |
|
hall: item[0] + '\n\n支持制式:' + hallType.value[item[0]], |
|
ai_show: item[2], |
|
ai_language: item[4], |
|
ai_start: item[5], |
|
ai_end: item[6], |
|
ai_length: item[7], |
|
ai_duration: item[8], |
|
real_show: item[9], |
|
real_language: item[11], |
|
real_start: item[12], |
|
real_end: item[13], |
|
real_length: item[14], |
|
real_duration: item[15], |
|
}) |
|
if (hallArray.value.indexOf(item[0]) >= 0) { |
|
hallData.value[temp] += 1 |
|
hallData.value.push(0) |
|
} else { |
|
hallArray.value.push(item[0]) |
|
temp = index |
|
hallData.value.push(1) |
|
} |
|
}) |
|
console.log('hallArray.value', hallArray.value) |
|
console.log('hallData.value', hallData.value) |
|
} |
|
|
|
|
|
// 处理表格合并 |
|
const objectSpanMethod = ({row, column, rowIndex, columnIndex}) => { |
|
if (column.property === 'hall') { |
|
const rowSpan = hallData.value[rowIndex] |
|
if (hallData.value[rowIndex] === 0) { |
|
return { |
|
rowspan: rowSpan, |
|
colspan: 0, |
|
} |
|
} else { |
|
return { |
|
rowspan: rowSpan, |
|
colspan: 1, |
|
} |
|
} |
|
} else { |
|
return { |
|
rowspan: 1, |
|
colspan: 1, |
|
} |
|
} |
|
} |
|
|
|
|
|
// 日历禁用日期 |
|
const disabledDate = (time) => { |
|
const start = new Date('2026-06-11T00:00:00Z') |
|
const today = new Date(); |
|
today.setDate(today.getDate() + 3) |
|
return time.getTime() < start || time.getTime() > today |
|
} |
|
|
|
// 定义生命周期,在加载时获取一次表格数据 |
|
onBeforeMount( |
|
async () => { |
|
await get_data() |
|
} |
|
) |
|
|
|
|
|
// endregion |
|
|
|
</script> |
|
|
|
<template> |
|
<el-row align="middle"> |
|
<el-col :span="2"> |
|
<el-text>智能排片日期</el-text> |
|
</el-col> |
|
<el-col :span="3"> |
|
<el-date-picker |
|
v-model="show_date" |
|
type="date" |
|
placeholder="选择排片日期" |
|
size="default" |
|
:disabled-date="disabledDate" |
|
value-format="YYYY-MM-DD" |
|
@change="get_data" |
|
style="width: 140px" |
|
/> |
|
</el-col> |
|
<el-col :span="12"> |
|
<el-radio-group v-model="cinema_code" @change="get_data"> |
|
<el-radio-button value="11078801" label="11078801">保利国际影城北京凯德大峡谷店</el-radio-button> |
|
<el-radio-button value="31073101" label="31073101">SFC上影(永华店)</el-radio-button> |
|
<el-radio-button value="33040301" label="33040301">宁波影都(东门口店)</el-radio-button> |
|
</el-radio-group> |
|
</el-col> |
|
<el-col :span="4"> |
|
<el-tooltip |
|
class="box-item" |
|
effect="dark" |
|
content="关闭时,与生成AI排片时的目标日期排片数据做对比(历史数据不可变);开启后,实时获取目标日期的排片数据,始终保持最新数据。" |
|
placement="top" |
|
> |
|
<el-text>目标日期排片数据强制更新</el-text> |
|
</el-tooltip> |
|
</el-col> |
|
<el-col :span="1"> |
|
<el-switch v-model="force" @change="get_data"/> |
|
</el-col> |
|
</el-row> |
|
<el-row style="margin: 10px 0 20px -14px" align="middle"> |
|
<el-col :span="6"> |
|
<el-switch v-model="templateSwitch" active-text="模板日期排片对比" inactive-text="目标日期排片对比" |
|
@change="get_data"/> |
|
</el-col> |
|
<el-col :span="4"> |
|
<el-text v-if="templateSwitch">模板日期:{{ templateDate }}</el-text> |
|
</el-col> |
|
</el-row> |
|
|
|
<el-table :data="tableData" style="width: 100%" v-loading="loading" :span-method="objectSpanMethod"> |
|
<el-table-column prop="hall" label="影厅别名" min-width="160"></el-table-column> |
|
<el-table-column label="智能排片" align="center"> |
|
<el-table-column prop="ai_show" label="影片别名" min-width="160"></el-table-column> |
|
<el-table-column prop="ai_language" label="语言" min-width="60"></el-table-column> |
|
<el-table-column prop="ai_start" label="开始时间" min-width="80"></el-table-column> |
|
<el-table-column prop="ai_end" label="结束时间" min-width="80"></el-table-column> |
|
<el-table-column prop="ai_length" label="片长" min-width="60"></el-table-column> |
|
<el-table-column prop="ai_duration" label="场间" min-width="60"></el-table-column> |
|
</el-table-column> |
|
<el-table-column label="影院真实排片" align="center"> |
|
<el-table-column prop="real_show" label="影片别名" min-width="160"></el-table-column> |
|
<el-table-column prop="real_language" label="语言" min-width="60"></el-table-column> |
|
<el-table-column prop="real_start" label="开始时间" min-width="80"></el-table-column> |
|
<el-table-column prop="real_end" label="结束时间" min-width="80"></el-table-column> |
|
<el-table-column prop="real_length" label="片长" min-width="60"></el-table-column> |
|
<el-table-column prop="real_duration" label="场间" min-width="60"></el-table-column> |
|
</el-table-column> |
|
</el-table> |
|
<el-row style="margin-top: 30px"> |
|
<el-text style="font-weight: bold" size="large">相关数据:</el-text> |
|
</el-row> |
|
<el-row> |
|
<el-col :span="3" align="right"> |
|
<el-text style="font-weight: bold">智能排片预估销售额:</el-text> |
|
</el-col> |
|
<el-col :span="4" align="left"> |
|
<el-text>{{ aiSales }}元</el-text> |
|
</el-col> |
|
</el-row> |
|
<el-row> |
|
<el-col :span="3" align="right"> |
|
<el-text style="font-weight: bold">真实排片销售额:</el-text> |
|
</el-col> |
|
<el-col :span="4" align="left"> |
|
<el-text>{{ realSales }}元</el-text> |
|
</el-col> |
|
</el-row> |
|
<el-row> |
|
<el-col :span="3" align="right"> |
|
<el-text style="font-weight: bold">智能排片耗时:</el-text> |
|
</el-col> |
|
<el-col :span="4" align="left"> |
|
<el-text>{{ takeTimes }}s</el-text> |
|
</el-col> |
|
</el-row> |
|
<el-row> |
|
<el-col :span="3" align="right"> |
|
<el-text style="font-weight: bold">智能排片消耗Tokens:</el-text> |
|
</el-col> |
|
<el-col :span="4" align="left"> |
|
<el-text>{{ tokens }}</el-text> |
|
</el-col> |
|
</el-row> |
|
<el-row> |
|
<el-col :span="3" align="right"> |
|
<el-text style="font-weight: bold">排片占比(AI/真实):</el-text> |
|
</el-col> |
|
<el-col :span="9" align="left"> |
|
<el-text>{{ aiCount }}</el-text> |
|
</el-col> |
|
<el-col :span="9" align="left"> |
|
<el-text>{{ realCount }}</el-text> |
|
</el-col> |
|
</el-row> |
|
<el-row> |
|
<el-col :span="3" align="right"> |
|
<el-text style="font-weight: bold">AI返回结果:</el-text> |
|
</el-col> |
|
<el-col :span="21" align="left"> |
|
<el-text>{{ showResult }}</el-text> |
|
</el-col> |
|
</el-row> |
|
<el-row> |
|
<el-col :span="3" align="right"> |
|
<el-text style="font-weight: bold">提示词:</el-text> |
|
</el-col> |
|
<el-col :span="21" align="left"> |
|
<el-text>{{ prompt }}</el-text> |
|
</el-col> |
|
</el-row> |
|
</template> |
|
|
|
|
|
<style> |
|
.el-text { |
|
white-space: pre-wrap; /* 或者使用 pre-line */ |
|
} |
|
|
|
.el-table .cell { |
|
white-space: pre-line; |
|
} |
|
</style>
|
|
|