|
@@ -1,29 +1,30 @@
|
|
|
<template>
|
|
|
- <fs-page class="fs-page-custom">
|
|
|
- <fs-crud ref="crudRef" v-bind="crudBinding">
|
|
|
- <template #header-middle>
|
|
|
- <el-tabs v-model="tabActiveName" class="chart-tabs" type="border-card">
|
|
|
- <el-tab-pane label="数据趋势" name="dataTendency">
|
|
|
- <DataTendencyChart
|
|
|
- v-if="tabActiveName === 'dataTendency'"
|
|
|
- :query="queryParams"
|
|
|
- :fetchCard="getCardData"
|
|
|
- :fetchLine="getLineData"
|
|
|
- :fetch-line-month="getLineMonthData"
|
|
|
- :fetch-line-week="getLineWeekData">
|
|
|
- </DataTendencyChart>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="广告结构" name="adStruct">
|
|
|
- <AdStructChart v-if="tabActiveName === 'adStruct'" />
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="散点视图" name="scatterView">
|
|
|
- <div v-if="tabActiveName === 'scatterView'">散点视图</div>
|
|
|
- </el-tab-pane>
|
|
|
- </el-tabs>
|
|
|
- </template>
|
|
|
- <template #cell_percentTimeInBudget="scope">
|
|
|
- <el-progress :percentage="scope.row.percentTimeInBudget > 0 ? scope.row.percentTimeInBudget * 100 : 0" />
|
|
|
- </template>
|
|
|
+ <fs-page class="fs-page-custom">
|
|
|
+ <fs-crud ref="crudRef" v-bind="crudBinding">
|
|
|
+ <template #header-middle>
|
|
|
+ <el-tabs v-model="tabActiveName" class="chart-tabs" type="border-card">
|
|
|
+ <el-tab-pane label="数据趋势" name="dataTendency">
|
|
|
+ <DataTendencyChart
|
|
|
+ v-if="tabActiveName === 'dataTendency'"
|
|
|
+ :query="queryParams"
|
|
|
+ :fetchCard="getCardData"
|
|
|
+ :fetchLine="getLineData"
|
|
|
+ :fetch-line-month="getLineMonthData"
|
|
|
+ :fetch-line-week="getLineWeekData"
|
|
|
+ >
|
|
|
+ </DataTendencyChart>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="广告结构" name="adStruct">
|
|
|
+ <AdStructChart v-if="tabActiveName === 'adStruct'" />
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="散点视图" name="scatterView">
|
|
|
+ <div v-if="tabActiveName === 'scatterView'">散点视图</div>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ </template>
|
|
|
+ <template #cell_percentTimeInBudget="scope">
|
|
|
+ <el-progress :percentage="scope.row.percentTimeInBudget > 0 ? scope.row.percentTimeInBudget * 100 : 0" />
|
|
|
+ </template>
|
|
|
<template #cell_campaignName="scope">
|
|
|
<el-tooltip effect="dark" :content="scope.row.campaignName" placement="top">
|
|
|
<el-link type="primary" :underline="false" @click="jumpGroup(scope.row)">
|
|
@@ -31,43 +32,44 @@
|
|
|
</el-link>
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
- <template #cell_MissedImpressions="scope">
|
|
|
- {{ scope.row.MissedImpressionsLower ?? '0' }} ~ {{ scope.row.MissedImpressionsUpper ?? '0' }}
|
|
|
- </template>
|
|
|
- <template #cell_MissedClicks="scope"> {{ scope.row.MissedClicksLower ?? '0' }} ~ {{ scope.row.MissedClicksUpper ?? '0' }} </template>
|
|
|
- <template #cell_MissedSales="scope"> {{ scope.row.MissedSalesLower ?? '0' }} ~ {{ scope.row.MissedSalesUpper ?? '0' }} </template>
|
|
|
+ <template #cell_MissedImpressions="scope">
|
|
|
+ {{ scope.row.MissedImpressionsLower ?? '0' }} ~ {{ scope.row.MissedImpressionsUpper ?? '0' }}
|
|
|
+ </template>
|
|
|
+ <template #cell_MissedClicks="scope"> {{ scope.row.MissedClicksLower ?? '0' }} ~ {{ scope.row.MissedClicksUpper ?? '0' }} </template>
|
|
|
+ <template #cell_MissedSales="scope"> {{ scope.row.MissedSalesLower ?? '0' }} ~ {{ scope.row.MissedSalesUpper ?? '0' }} </template>
|
|
|
|
|
|
- <template v-for="field of Object.keys(SbBaseColumn)" #[`cell_${field}`]="scope">
|
|
|
- <DataCompare
|
|
|
+ <template v-for="field of Object.keys(SbBaseColumn)" #[`cell_${field}`]="scope">
|
|
|
+ <DataCompare
|
|
|
:field="field"
|
|
|
:value="scope.row[field]"
|
|
|
:prev-val="scope.row[`prev${field}`]"
|
|
|
:gap-val="scope.row[`gap${field}`]"
|
|
|
:date-range="dateRange"
|
|
|
- :show-compare="showCompare"/>
|
|
|
- </template>
|
|
|
- <template #toolbar-left>
|
|
|
- <div class="compare-switch">
|
|
|
- <span>数据对比 </span>
|
|
|
- <el-switch v-model="showCompare" size="small" />
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </fs-crud>
|
|
|
- </fs-page>
|
|
|
+ :show-compare="showCompare"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ <template #toolbar-left>
|
|
|
+ <div class="compare-switch">
|
|
|
+ <span>数据对比 </span>
|
|
|
+ <el-switch v-model="showCompare" size="small" />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </fs-crud>
|
|
|
+ </fs-page>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
-import {onMounted, ref, watch} from 'vue'
|
|
|
-import {FsPage, useFs} from '@fast-crud/fast-crud'
|
|
|
-import {createCrudOptions} from './crud'
|
|
|
-import {useShopInfo} from '/@/stores/shopInfo'
|
|
|
-import {usePublicData} from '/@/stores/publicData'
|
|
|
-import {storeToRefs} from 'pinia'
|
|
|
-import {useRouter} from 'vue-router'
|
|
|
+import { onMounted, ref, watch } from 'vue'
|
|
|
+import { FsPage, useFs } from '@fast-crud/fast-crud'
|
|
|
+import { createCrudOptions } from './crud'
|
|
|
+import { useShopInfo } from '/@/stores/shopInfo'
|
|
|
+import { usePublicData } from '/@/stores/publicData'
|
|
|
+import { storeToRefs } from 'pinia'
|
|
|
+import { useRouter } from 'vue-router'
|
|
|
import AdStructChart from './chartComponents/adStruct.vue'
|
|
|
import DataTendencyChart from '/@/views/adManage/sb/chartComponents/dataTendency.vue'
|
|
|
-import {getCardData, getLineData, getLineMonthData, getLineWeekData} from './api'
|
|
|
-import {SbBaseColumn} from '/@/views/adManage/utils/commonTabColumn.js'
|
|
|
+import { getCardData, getLineData, getLineMonthData, getLineWeekData } from './api'
|
|
|
+import { SbBaseColumn } from '/@/views/adManage/utils/commonTabColumn.js'
|
|
|
import DataCompare from '/@/components/dataCompare/index.vue'
|
|
|
|
|
|
const tabActiveName = ref('dataTendency')
|
|
@@ -77,35 +79,38 @@ const { dateRange } = storeToRefs(publicData)
|
|
|
const { profile } = storeToRefs(shopInfo)
|
|
|
const queryParams = ref({
|
|
|
profileId: profile.value.profile_id,
|
|
|
- dateRange
|
|
|
+ dateRange,
|
|
|
})
|
|
|
const { crudBinding, crudRef, crudExpose } = useFs({ createCrudOptions, context: queryParams })
|
|
|
const router = useRouter()
|
|
|
const showCompare = ref(false)
|
|
|
|
|
|
const jumpGroup = (row: any) => {
|
|
|
- router.push({
|
|
|
- name: 'SbCampaignDetail',
|
|
|
- query: { campaignId: row.campaignId, tagsViewName: row.campaignName },
|
|
|
- })
|
|
|
+ router.push({
|
|
|
+ name: 'SbCampaignDetail',
|
|
|
+ query: { campaignId: row.campaignId, tagsViewName: row.campaignName },
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
-onMounted( async () => {
|
|
|
+onMounted(async () => {
|
|
|
crudExpose.doRefresh()
|
|
|
})
|
|
|
|
|
|
-watch(queryParams, async () => {
|
|
|
- crudExpose.doRefresh()
|
|
|
-}, { deep: true })
|
|
|
-
|
|
|
+watch(
|
|
|
+ queryParams,
|
|
|
+ async () => {
|
|
|
+ crudExpose.doRefresh()
|
|
|
+ },
|
|
|
+ { deep: true }
|
|
|
+)
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.compare-switch {
|
|
|
- flex: none;
|
|
|
+ flex: none;
|
|
|
}
|
|
|
|
|
|
-::v-deep(.el-table__footer-wrapper td.el-table__cell:nth-child(n+3):nth-child(-n+6) .cell) {
|
|
|
+::v-deep(.el-table__footer-wrapper td.el-table__cell:nth-child(n + 3):nth-child(-n + 6) .cell) {
|
|
|
display: none;
|
|
|
}
|
|
|
|
|
@@ -121,11 +126,12 @@ watch(queryParams, async () => {
|
|
|
-webkit-line-clamp: 1;
|
|
|
-webkit-box-orient: vertical;
|
|
|
}
|
|
|
+
|
|
|
::v-deep(.el-table--border .el-table__footer-wrapper) {
|
|
|
border: none;
|
|
|
}
|
|
|
+
|
|
|
::v-deep(.el-table .el-table__footer-wrapper .cell) {
|
|
|
- font-weight: 600;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
-
|
|
|
</style>
|