From 0082fa417fb2af9add3406bf05ab3e3e45890c34 Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Thu, 12 Jun 2025 14:30:02 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/drone/drone-web-manage
---
src/views/wel/components/backlog.vue | 308 +++++++++++++++++++++++++++++++++++++++------------
1 files changed, 234 insertions(+), 74 deletions(-)
diff --git a/src/views/wel/components/backlog.vue b/src/views/wel/components/backlog.vue
index 615d268..926994b 100644
--- a/src/views/wel/components/backlog.vue
+++ b/src/views/wel/components/backlog.vue
@@ -1,9 +1,26 @@
<template>
<div class="bocklogBox">
<div class="block">
- <div class="title">待办事项</div>
+ <div class="titleBox">
+ <div class="title">待办事项</div>
+ <div class="rightTab">
+ <div
+ class="titleItem"
+ :class="item.name === checked ? 'activeItem' : ''"
+ v-for="(item, index) in titleList"
+ :key="index"
+ @click="titleClick(item, index)"
+ >
+ <div>
+ {{ item.name }}
+ <div class="dots" :class="item.number >= 100 ? 'dots1':''">{{ item.number >= 100 ? '99+' : item.number }}</div>
+ <!-- <div class="dots">99+</div> -->
+ </div>
+ </div>
+ </div>
+ </div>
- <div class="todo-items">
+ <div class="todo-items" v-if="todos.length > 0" v-loading="loading">
<div
v-for="(item, index) in todos"
:key="index"
@@ -12,17 +29,15 @@
@click="jumporder(item)"
>
<div
- class="status-indicator"
- :style="{ backgroundColor: getStatusColor(item.status) }"
- ></div>
+ class="status-indicator"
+ ><img :src="getStatus(item.status)" alt=""></div>
<div class="content-wrapper">
<div class="main-content">
<span class="status-tag" :style="{ color: getStatusColor(item.status) }">{{
- permission.o_and_m_p_jump === true
- ? zfstatusMap[item.status]
- : statusMap[item.status]
+ checked == '智飞工单' ? zfstatusMap[item.status] : statusMap[item.status]
}}</span>
+ <span class="reads" :class="item.is_read === 0 ? 'unread' : ''"></span>
<span class="todo-text">{{ item.name }}</span>
</div>
@@ -33,40 +48,97 @@
</div>
</div>
</div>
+ <div v-else>
+ <el-empty>
+ <template #description>
+ <span class="custom-text">暂无数据</span>
+ </template>
+ </el-empty>
+ </div>
</div>
</div>
</template>
<script setup>
-import st7 from '@/assets/images/workbench/st7.png';
-
-import { getdaiban } from '@/api/home/index';
+import st7 from '@/assets/images/workbench/st7.svg';
+import db1 from '@/assets/images/workbench/db1.svg';
+import db2 from '@/assets/images/workbench/db2.svg';
+import db3 from '@/assets/images/workbench/db3.svg';
+import db4 from '@/assets/images/workbench/db4.svg';
+import db5 from '@/assets/images/workbench/db5.svg';
+import { getOrderCountApi, addOrderRecordApi, getOrderOrEventApi } from '@/api/home/index';
import { onMounted } from 'vue';
import { useRouter } from 'vue-router';
import { useStore } from 'vuex';
+const zfTotal = ref(0);
+const sjTotal = ref(0);
const router = useRouter();
const store = useStore();
const permission = computed(() => store.getters.permission);
-const todos = ref([]);
+const checked = ref('事件工单');
+const titleList = ref([
+ {
+ label: 'event_order_count',
+ name: '事件工单',
+ number: 0,
+ },
+ {
+ label: 'wayline_order_count',
+ name: '智飞工单',
+ number: 0,
+ },
+]);
+const titleClick = (item, index) => {
+ checked.value = item.name;
+ getListMatter();
+};
+const userInfo = computed(() => store.getters.userInfo);
+const todos = ref([]);
+const loading = ref(false);
+// * 事件工单中2=待审核,0=待处理,3=处理中
+// * 智飞工单中1: 待审核,2=已驳回,3=已通过
const statusMap = {
0: '待处理',
2: '待审核',
3: '处理中',
};
const statusMapColor = {
- 0: { color: '#FF7411', background: '#FF7411', borderLeftColor: '#FF7411' },
- 2: { color: '#FF472F', background: '#FF472F', borderLeftColor: '#FF472F' },
- 3: { color: '#FFC300', background: '#FFC300', borderLeftColor: '#FFC300' },
+ 0: { color: '#FF7411', backgroundImage: db3, borderLeftColor: '#FF7411' },
+ 2: { color: '#FF472F', backgroundImage: db1, borderLeftColor: '#FF472F' },
+ 3: { color: '#FFC300', backgroundImage: db4, borderLeftColor: '#FFC300' },
};
const zfstatusMap = {
1: '待审核',
+ 2: '已驳回',
+ 3: '已通过',
};
const zfstatusMapColor = {
- 1: { color: '#FF472F', background: '#FF472F', borderLeftColor: '#FF472F' },
+ 1: { color: '#FF472F', backgroundImage: db2, borderLeftColor: '#FF472F' },
+ 2: { color: '#4200DD', backgroundImage: db5, borderLeftColor: '#4200DD' },
+ 3: { color: '#FF472F', backgroundImage: db2, borderLeftColor: '#FF472F' },
+};
+// 根据状态获取图标
+// const getStatusBackground = statusIndex => {
+// if (checked.value === '智飞工单') {
+// const style = zfstatusMapColor[statusIndex];
+// return style ? `url(${style.backgroundImage})` : 'none';
+// } else {
+// const style = statusMapColor[statusIndex];
+// return style ? `url(${style.backgroundImage})` : 'none';
+// }
+// };
+const getStatus = statusIndex => {
+ if (checked.value === '智飞工单') {
+ const style = zfstatusMapColor[statusIndex];
+ return style ? style.backgroundImage : '';
+ } else {
+ const style = statusMapColor[statusIndex];
+ return style ? style.backgroundImage : '';
+ }
};
const getStatusStyle = statusIndex => {
- if (permission.value.o_and_m_p_jump === true) {
+ if (checked.value === '智飞工单') {
const style = zfstatusMapColor[statusIndex] || {
color: '#999',
borderLeftColor: '#999',
@@ -88,41 +160,77 @@
};
// 获取状态对应的文字颜色
const getStatusColor = statusIndex => {
- if (permission.value.o_and_m_p_jump === true) {
+ if (checked.value === '智飞工单') {
return zfstatusMapColor[statusIndex]?.color || '#999';
} else {
return statusMapColor[statusIndex]?.color || '#999';
}
};
-const getListMatter = async () => {
- console.log('permission.value.o_and_m_p_jump', permission.value.o_and_m_p_jump);
-
- if (permission.value.o_and_m_p_jump === true) {
- const res = await getdaiban(0);
- todos.value = res.data.data?.slice(0, 5);
- } else {
- const res = await getdaiban(1);
- todos.value = res.data.data?.slice(0, 5);
- }
-};
+// 跳转到对应详情页
const jumporder = val => {
- if (permission.value.o_and_m_p_jump === true) {
+ if (checked.value === '智飞工单') {
const id = val.id;
+ getaddOrderRecord(id);
router.push({
- path: `/tickets/orderLog?id=${id}`,
+ path: `/tickets/orderLog`,
query: {
- id: id,
+ id,
},
});
} else {
+ getaddOrderRecord(val.id);
const orderNumber = val.event_num;
router.push({
- path: `/tickets/ticket?orderNumber=${orderNumber}`,
+ path: `/tickets/ticket`,
+ query: {
+ orderNumber,
+ },
});
}
};
+// 标记事件工单或智飞工单已读
+const getaddOrderRecord = async id => {
+ const ticketId = id;
+ if (checked.value === '事件工单') {
+ loading.value = true;
+ const type = 1;
+ const res = await addOrderRecordApi(type, ticketId);
+ } else if (checked.value === '智飞工单') {
+ loading.value = true;
+ const type = 2;
+ const res = await addOrderRecordApi(type, ticketId);
+ }
+};
+// 获取事件工单和智飞工单的数量
+const getOrderCount = async () => {
+ const res = await getOrderCountApi(userInfo.value.detail.areaCode);
+ const data = res.data.data;
+ titleList.value.forEach(item => {
+ if (data[item.label] !== undefined) {
+ item.number = data[item.label];
+ }
+ });
+};
+// 获取事件工单或者智飞工单的信息
+const getListMatter = async () => {
+ if (checked.value === '事件工单') {
+ loading.value = true;
+ const type = 1;
+ const res = await getOrderOrEventApi(type, userInfo.value.detail.areaCode);
+ todos.value = res.data.data || [];
+ loading.value = false;
+ } else if (checked.value === '智飞工单') {
+ loading.value = true;
+ const type = 2;
+ const res = await getOrderOrEventApi(type, userInfo.value.detail.areaCode);
+ todos.value = res.data.data || [];
+ loading.value = false;
+ }
+};
+
onMounted(() => {
getListMatter();
+ getOrderCount();
});
</script>
@@ -136,19 +244,71 @@
border: 2px solid #ffffff;
.block {
margin: 11px 21px 13px 22px;
+ .titleBox {
+ display: flex;
+ justify-content: space-between;
+ }
.title {
+ font-family: 'Source Han Sans CN';
font-weight: bold;
font-size: 16px;
color: #363636;
}
-
+ .rightTab {
+ display: flex;
+ text-align: center;
+ padding-right: 10px;
+ .titleItem {
+ position: relative;
+ font-weight: 400;
+ font-size: 14px;
+ color: #7c8091;
+ margin-left: 18px;
+ cursor: pointer;
+ }
+ .activeItem {
+ border-radius: 0px 0px 0px 0px;
+ font-family: Source Han Sans CN, Source Han Sans CN;
+ font-weight: bold;
+ font-size: 14px;
+ color: #1c5cff;
+ border-bottom: 2px solid #1c5cff;
+ }
+ .dots {
+ width: 17px;
+ height: 17px;
+ border-radius: 50%;
+ background: #366fff;
+ color: #fff;
+ font-size: 9px;
+ position: absolute;
+ top: -10px;
+ right: -13px;
+ padding: 1px;
+ line-height: 17px;
+ }
+ .dots1 {
+ width: 17px;
+ height: 17px;
+ border-radius: 50%;
+ background: none !important;
+ color: #366fff !important;
+ font-size: 9px;
+ position: absolute;
+ top: -10px;
+ right: -13px;
+ padding: 1px;
+ line-height: 17px;
+ }
+ }
.todo-items {
- display: grid;
- gap: 0.6rem;
margin-top: 10px;
+ height: 250px;
+ overflow-y: scroll;
}
.todo-item {
+ margin: 6px 0;
display: flex;
align-items: center;
cursor: pointer;
@@ -164,11 +324,13 @@
}
.status-indicator {
- margin-left: 18px;
- width: 8px;
- height: 8px;
- border-radius: 50%;
- flex-shrink: 0;
+ margin-left: 3px;
+ width: 1.6rem;
+ height: 1.6rem;
+ img{
+ width: 100%;
+ height: 100%;
+ }
}
.content-wrapper {
@@ -176,25 +338,40 @@
display: flex;
justify-content: space-between;
align-items: center;
- gap: 1rem;
+ // gap: 1rem;
}
.main-content {
display: flex;
align-items: center;
- gap: 0.8rem;
+ // gap: 0.8rem;
.status-tag {
font-weight: 400;
font-size: 14px;
-
- padding: 0.3rem 0.5rem;
+ margin-left: 2px;
+ // padding: 0.3rem 0;
border-radius: 12px;
}
.todo-text {
+ font-weight: 400;
font-size: 14px;
color: #343434;
+ }
+ .unread {
+ width: 5px;
+ height: 5px;
+ background: #1c5cff !important;
+ border-radius: 50%;
+ margin: 0 4px;
+ }
+ .reads {
+ width: 5px;
+ height: 5px;
+ background: transparent;
+ border-radius: 50%;
+ margin: 0 4px;
}
}
@@ -202,39 +379,22 @@
display: flex;
align-items: center;
margin-right: 42px;
-
+ img {
+ width: 15px;
+ height: 15px;
+ }
.todo-date {
- color: #666;
- font-size: 0.9rem;
+ font-weight: 400;
+ font-size: 14px;
+ color: #5c6476;
+ margin-left: 2px;
}
}
}
-
- // 状态颜色方案
- .status-0 {
- border-left-color: #ff7411;
- color: #ff7411;
- .status-indicator {
- background: #ff7411;
- }
- }
-
- .status-2 {
- border-left-color: #ff472f;
- color: #ff472f;
- .status-indicator {
- background: #ff472f;
- }
- }
-
- .status-3 {
- border-left-color: #ffc300;
- color: #ffc300;
-
- .status-indicator {
- background: #ffc300;
- }
- }
+ }
+ .custom-text {
+ font-size: 14px;
+ color: #7c8091;
}
}
</style>
--
Gitblit v1.9.3