riku
2024-06-07 0a97c702074830791cb29a158098f05c8033c4b1
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
33
34
35
36
37
38
39
<template>
  <el-card shadow="hover">
    <div class="f-l">巡查问题跟踪</div>
  </el-card>
</template>
 
<script>
export default {
  data() {
    return {
      subtaskList: []
    }
  },
  watch: {},
  methods: {},
  mounted() {
    let i = 0
    while (i < 3) {
      this.subtaskList.push({
        guid: 'SMuheEkjswioSn7A',
        name: '中科生态数字港项目巡查',
        district: '金山区',
        planTime: '2024-06-04',
        startTime: '2024-06-04 13:31:26',
        endTime: '2024-06-04 13:33:37',
        userName: '朱正强',
        status: '已结束'
      })
      i++
    }
  }
}
</script>
 
<style scoped>
.text {
  background-color: aliceblue;
}
</style>