|
|
|
@ -22,7 +22,18 @@ const templateDate = ref('') |
|
|
|
const result = ref(false) |
|
|
|
const result = ref(false) |
|
|
|
|
|
|
|
|
|
|
|
// 过滤条件数据 |
|
|
|
// 过滤条件数据 |
|
|
|
const show_date = ref('2026-06-12') |
|
|
|
// 计算日期 |
|
|
|
|
|
|
|
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 cinema_code = ref('11078801') |
|
|
|
const force = ref(false) |
|
|
|
const force = ref(false) |
|
|
|
const templateSwitch = ref(false) |
|
|
|
const templateSwitch = ref(false) |
|
|
|
@ -247,10 +258,10 @@ onBeforeMount( |
|
|
|
<el-col :span="3" align="right"> |
|
|
|
<el-col :span="3" align="right"> |
|
|
|
<el-text style="font-weight: bold">排片占比(AI/真实):</el-text> |
|
|
|
<el-text style="font-weight: bold">排片占比(AI/真实):</el-text> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8" align="left"> |
|
|
|
<el-col :span="9" align="left"> |
|
|
|
<el-text>{{ aiCount }}</el-text> |
|
|
|
<el-text>{{ aiCount }}</el-text> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8" align="left"> |
|
|
|
<el-col :span="9" align="left"> |
|
|
|
<el-text>{{ realCount }}</el-text> |
|
|
|
<el-text>{{ realCount }}</el-text> |
|
|
|
</el-col> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-row> |
|
|
|
|