prod
lily.zhang 4 years ago
parent 4d39139f8b
commit f23674e221

@ -1,7 +1,7 @@
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-10-08 09:26:29 * @Date: 2021-10-08 09:26:29
* @LastEditTime: 2021-11-03 17:08:47 * @LastEditTime: 2021-11-04 13:50:02
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/router/index.js * @FilePath: /data-show/src/router/index.js
@ -32,6 +32,7 @@ import EventDEC from "@/views/EventDEC"
import MarketingAnalysis from "@/views/MarketingAnalysis" import MarketingAnalysis from "@/views/MarketingAnalysis"
import ModelInsight from "@/views/ModelInsight" import ModelInsight from "@/views/ModelInsight"
import mcIndex from "@/views/MarketingComparison" import mcIndex from "@/views/MarketingComparison"
import GolEventDetails from "@/views/GolEventDetails"
const router = [ const router = [
{ {
path: '/login', path: '/login',
@ -134,6 +135,12 @@ const router = [
desc: "营销对比", desc: "营销对比",
component: mcIndex component: mcIndex
}, },
{
path: '/golEventDetails',
name: "golEventDetails",
desc: "事件的详情页",
component: GolEventDetails
},
] ]
}, },

@ -1,7 +1,7 @@
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-10-13 11:31:08 * @Date: 2021-10-13 11:31:08
* @LastEditTime: 2021-10-13 15:14:23 * @LastEditTime: 2021-11-04 14:06:41
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/views/EventDetails/eventCorrelation/index.vue * @FilePath: /data-show/src/views/EventDetails/eventCorrelation/index.vue
@ -23,7 +23,7 @@
</div> </div>
</template> </template>
<div class="d1"> <div class="d1">
<span class="s1">{{zolNum}}</span> <span class="s1">{{zolNum|formatMoney(0,'',',')}}</span>
<span class="s2">事件关联数量()</span> <span class="s2">事件关联数量()</span>
</div> </div>
</a-popover> </a-popover>

@ -0,0 +1,26 @@
<!--
* @Author: your name
* @Date: 2021-11-04 13:52:00
* @LastEditTime: 2021-11-04 13:53:01
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/GolEventDetails/golEventDetailsHeader/index.vue
-->
<template>
<div class="gd-outter">
</div>
</template>
<script>
export default {
name: "golEventDetailsHeader"
}
</script>
<style lang="less" scoped>
.gd-outter {
width: 100%;
height: 245px;
}
</style>

@ -0,0 +1,23 @@
<!--
* @Author: your name
* @Date: 2021-11-04 13:43:19
* @LastEditTime: 2021-11-04 13:51:07
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/views/GolEventDetails/index.vue
-->
<template>
<div class="d-container">
</div>
</template>
<script>
export default {
name: "GolEventDetails"
}
</script>
<style lang="less" scoped>
</style>
Loading…
Cancel
Save