1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <script setup>
| import CommonTitle from '@/components/CommonTitle.vue';
|
| const detailsFun = () => {
| console.log('details');
| };
| </script>
| <template>
| <CommonTitle title="任务成果" @details="detailsFun" />
| <div class="taskAchievements"></div>
| </template>
|
| <style scoped lang="scss">
| .taskAchievements {
| width: 390px;
| height: hToV(204);
| background: linear-gradient(
| 270deg,
| #1f3e7a 0%,
| rgba(31, 62, 122, 0.35) 79%,
| rgba(31, 62, 122, 0) 100%
| );
| border-radius: 0px 0px 0px 0px;
| opacity: 0.85;
| margin: hToV(2) 0 hToV(21) 0;
| }
| </style>
|
|