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
28
29
30
31
32
| <!--
| * @Date: 2025-06-20 20:48:17
| * @LastEditors: gaoshp
| * @LastEditTime: 2025-06-20 20:48:32
| * @FilePath: /mdmweb/src/views/tasks/timeouts.vue
| -->
| <template>
| <div>
|
| </div>
| </template>
|
| <script>
| export default {
| name: 'Timeouts',
| data() {
| return {
| // Define your data properties here
| };
| },
| methods: {
| // Define your methods here
| },
| mounted() {
|
| }
| }
| </script>
|
| <style lang="scss" scoped>
|
| </style>
|
|