|
@@ -1,9 +1,78 @@
|
|
|
<template>
|
|
|
- <div class="report-handle-box"></div>
|
|
|
+ <div class="report-handle-box">
|
|
|
+ <rightMaxTitleContent title="风险研判">
|
|
|
+ <div class="button-box">
|
|
|
+ <div
|
|
|
+ class="button-item"
|
|
|
+ v-for="item in titleList"
|
|
|
+ :key="item.value"
|
|
|
+ :class="{ active: activeTopTime == item.value }"
|
|
|
+ @click="handleTimeClick(item)"
|
|
|
+ >
|
|
|
+ <span class="content">{{ item.name }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </rightMaxTitleContent>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
-<script lang="scss" scoped>
|
|
|
-.report-handle-box{
|
|
|
-
|
|
|
-}
|
|
|
+<script setup>
|
|
|
+import { ref } from "vue";
|
|
|
+import rightMaxTitleContent from "../common/rightMaxTitleContent.vue";
|
|
|
+const activeTopTime = ref("日");
|
|
|
+const titleList = [
|
|
|
+ { name: "日", value: "日" },
|
|
|
+ { name: "月", value: "月" },
|
|
|
+ { name: "年", value: "年" },
|
|
|
+];
|
|
|
+
|
|
|
+const handleTimeClick = (item) => {
|
|
|
+ activeTopTime.value = item.value;
|
|
|
+};
|
|
|
</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.report-handle-box {
|
|
|
+ height: 100%;
|
|
|
+ .button-box {
|
|
|
+ position: absolute;
|
|
|
+ display: flex;
|
|
|
+ top: 0;
|
|
|
+ right: 74px;
|
|
|
+ .button-item {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 45px;
|
|
|
+ height: 24px;
|
|
|
+ border-radius: 4px 4px 4px 4px;
|
|
|
+ border: 1px solid rgba(111, 229, 255, 0.3);
|
|
|
+ margin-left: 15px;
|
|
|
+ cursor: pointer;
|
|
|
+ &.active {
|
|
|
+ background: linear-gradient(
|
|
|
+ 90deg,
|
|
|
+ #59a7da 0%,
|
|
|
+ rgba(22, 116, 178, 0) 100%
|
|
|
+ );
|
|
|
+
|
|
|
+ border: 1px solid #6fe5ff;
|
|
|
+ .content {
|
|
|
+ color: #08ffe5;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .content {
|
|
|
+ font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 16px;
|
|
|
+ text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
|
+ text-align: left;
|
|
|
+ font-style: normal;
|
|
|
+ text-transform: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|