forked from drone/command-center-dashboard

罗广辉
2025-04-21 2800fa4f32f3900509cb4d6eefaf2bfaf54efdd7
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<template>
    <div class="deviceevent-container">
        <div class="machineTableDetailsTitle">
            <p>
                相关事件
                <span>{{ total }}</span>
                件
            </p>
        </div>
        <div class="deviceevent-table ztzf-table">
            <el-table
                :data="list"
                :row-class-name="tableRowClassName"
                style="width: 100%"
                :row-style="{ height: '35px', fontSize: '14px', 'text-align': 'center' }"
                :header-cell-style="{ 'text-align': 'center', height: '30px', fontSize: '14px' }"
            >
                <el-table-column label="序号" type="index" width="60">
                    <template #default="{ $index }">
                        {{ ($index + 1).toString().padStart(2, '0') }}
                    </template>
                </el-table-column>
                <el-table-column prop="id" label="事件编号" />
                <el-table-column prop="event_name" label="事件名称" />
                <el-table-column prop="create_user" label="所属单位 " />
                <el-table-column show-overflow-tooltip prop="remark" label="事件内容" />
                <el-table-column show-overflow-tooltip prop="ai_types" label="关联算法" />
                <el-table-column prop="status" label="事件状态">
                    <template #default="scope">
                        <div class="pending" v-if="scope.row.status === 0">待处理</div>
                        <div class="reviewed" v-if="scope.row.status === 2">待审核</div>
                        <div class="processing" v-if="scope.row.status === 3">处理中</div>
                        <div class="done" v-if="scope.row.status === 4">已完成</div>
                        <div class="ended" v-if="scope.row.status === 5">已完结</div>
                    </template>
                </el-table-column>
                <el-table-column label="操作" width="80">
                    <template #default="scope">
                        <div class="ztzf-view" @click="distribution(scope.row)">查看</div>
                    </template>
                </el-table-column>
            </el-table>
        </div>
        <el-pagination
            class="ztzf-pagination"
            background
            v-model:current-page="sizeParams.current"
            v-model:page-size="sizeParams.size"
            layout="prev, pager, next, jumper"
            :total="total"
            @change="pageChange"
        />
    </div>
</template>
<script setup>
import { useStore } from 'vuex'
import { getDeviceEventList } from '@/api/home/machineNest'
import { ElMessage } from 'element-plus'
 
const list = ref([])
const params = ref({
    device_sn: null,
})
const sizeParams = ref({
    current: 1,
    size: 5,
})
const store = useStore()
const device_sn = computed(() => store.state.home.singleUavHome.device_sn)
const total = ref(0)
 
const distribution = row => {
    const orderNumber = row.event_num
    const adminUrl = import.meta.env.VITE_APP_ADMIN_URL
    const targetPath = `/tickets/ticket?orderNumber=${orderNumber}`;
    window.open(`${adminUrl}?redirect=${encodeURIComponent(targetPath)}`, '_blank');
}
const examine = row => {
    ElMessage.warning('正在加急开发中...')
}
 
const getList = () => {
    params.value.device_sn = device_sn.value
    getDeviceEventList(params.value, sizeParams.value).then(res => {
        const resData = res?.data?.data || {}
        list.value = resData.records
        total.value = resData.total
    })
}
const pageChange = val => {
    sizeParams.value.current = val
    getList()
}
// 表格隔行变色
const tableRowClassName = ({ row, rowIndex }) => {
    if (rowIndex % 2 === 1) {
        return 'warning-row'
    } else {
        return 'success-row'
    }
}
onMounted(() => {
    getList()
})
</script>
 
<style scoped lang="scss">
// 标题
.machineTableDetailsTitle {
    margin: 0 24px;
    margin-bottom: 10px;
    background: url('/src/assets/images/signMachineNest/machineRight/detailtitle.png') no-repeat center;
    background-size: 100% 100%;
    p {
        display: inline-block;
        margin-left: 30px;
        font-size: 16px;
        color: #ddf0ff;
        line-height: 20px;
        text-align: left;
        margin-bottom: 8px;
        span {
            font-size: 26px;
            color: #0282ff;
            font-weight: bold;
        }
    }
}
// 表格
.deviceevent-table {
    padding: 0 17px;
}
 
// 分页
:deep(.el-pagination) {
    display: flex;
    justify-content: center;
}
:deep(.el-pagination button) {
    background: center center no-repeat none !important;
    color: #8eb8ea !important;
}
// 待处理
.pending {
    color: #ff7411;
}
// 待审核
.reviewed {
    color: #8cfea7;
}
// 处理中
.processing {
    color: #ffc398;
}
// 已完成
.done {
    color: #afd9fb;
}
// 已完结
.ended {
    color: #11c4ff;
}
</style>