无人机管理后台前端(已迁走)
张含笑
2025-06-28 56fe5da07bf822f86ce4d0e8b32a7941b1451091
src/views/wel/components/backlog.vue
@@ -4,33 +4,21 @@
      <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 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" >{{ item.number >= 100 ? '99+' : item.number }}</div>
                <!-- <div class="dots">99+</div> -->
              <div class="dots">{{ item.number >= 100 ? '99+' : item.number }}</div>
              <!-- <div class="dots">99+</div> -->
            </div>
          </div>
        </div>
      </div>
      <div class="todo-items" v-if="todos.length > 0" v-loading="loading">
        <div
          v-for="(item, index) in todos"
          :key="index"
          class="todo-item"
          :style="getStatusStyle(item.status)"
          @click="jumporder(item)"
        >
          <div
            class="status-indicator"
          ><img :src="getStatus(item.status)" alt=""></div>
        <div v-for="(item, index) in todos" :key="index" class="todo-item" :style="getStatusStyle(item.status)"
          @click="jumporder(item)">
          <div class="status-indicator"><img :src="getStatus(item.status)" alt=""></div>
          <div class="content-wrapper">
            <div class="main-content">
@@ -60,22 +48,22 @@
</template>
<script setup>
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 checked = ref('事件工单');
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 checked = ref('事件工单')
const titleList = ref([
  {
    label: 'event_order_count',
@@ -87,37 +75,37 @@
    name: '智飞工单',
    number: 0,
  },
]);
])
const titleClick = (item, index) => {
  checked.value = item.name;
  getListMatter();
};
  checked.value = item.name
  getListMatter()
}
const userInfo = computed(() => store.getters.userInfo);
const todos = ref([]);
const loading = ref(false);
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', 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', backgroundImage: db2, borderLeftColor: '#FF472F' },
  2: { color: '#4200DD', backgroundImage: db5, borderLeftColor: '#4200DD' },
  3: { color: '#FF472F', backgroundImage: db2, borderLeftColor: '#FF472F' },
};
}
// 根据状态获取图标
// const getStatusBackground = statusIndex => {
//   if (checked.value === '智飞工单') {
@@ -130,134 +118,145 @@
// };
const getStatus = statusIndex => {
  if (checked.value === '智飞工单') {
    const style = zfstatusMapColor[statusIndex];
    return style ? style.backgroundImage : '';
    const style = zfstatusMapColor[statusIndex]
    return style ? style.backgroundImage : ''
  } else {
    const style = statusMapColor[statusIndex];
    return style ? style.backgroundImage : '';
    const style = statusMapColor[statusIndex]
    return style ? style.backgroundImage : ''
  }
};
}
const getStatusStyle = statusIndex => {
  if (checked.value === '智飞工单') {
    const style = zfstatusMapColor[statusIndex] || {
      color: '#999',
      borderLeftColor: '#999',
    };
    }
    return {
      color: style.color,
      borderLeft: `3px solid ${style.borderLeftColor}`,
    };
    }
  } else {
    const style = statusMapColor[statusIndex] || {
      color: '#999',
      borderLeftColor: '#999',
    };
    }
    return {
      color: style.color,
      borderLeft: `3px solid ${style.borderLeftColor}`,
    };
    }
  }
};
}
// 获取状态对应的文字颜色
const getStatusColor = statusIndex => {
  if (checked.value === '智飞工单') {
    return zfstatusMapColor[statusIndex]?.color || '#999';
    return zfstatusMapColor[statusIndex]?.color || '#999'
  } else {
    return statusMapColor[statusIndex]?.color || '#999';
    return statusMapColor[statusIndex]?.color || '#999'
  }
};
}
// 跳转到对应详情页
const jumporder = val => {
  if (checked.value === '智飞工单') {
    const id = val.id;
    getaddOrderRecord(id);
    const id = val.id
    getaddOrderRecord(id)
    router.push({
      path: `/tickets/orderLog`,
      query: {
        id,
      },
    });
    })
  } else {
    getaddOrderRecord(val.id);
    const orderNumber = val.event_num;
    getaddOrderRecord(val.id)
    const orderNumber = val.event_num
    router.push({
      path: `/tickets/ticket`,
      query: {
        orderNumber,
      },
    });
    })
  }
};
}
// 标记事件工单或智飞工单已读
const getaddOrderRecord = async id => {
  const ticketId = id;
  const ticketId = id
  if (checked.value === '事件工单') {
    loading.value = true;
    const type = 1;
    const res = await addOrderRecordApi(type, ticketId);
    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);
    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;
  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];
      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;
    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;
    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();
});
  getListMatter()
  getOrderCount()
})
</script>
<style>
.el-empty__image {
  width: 100px !important;
}
</style>
<style lang="scss" scoped>
.bocklogBox {
  width: 100%;
  height: 306px;
  // height: 306px;
  height: pxToVh(326);
  background: rgba(255, 255, 255, 0.41);
  box-shadow: 0px 3px 4px -1px rgba(125, 125, 125, 0.25);
  border-radius: 8px 8px 8px 8px;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  .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;
@@ -266,6 +265,7 @@
        margin-left: 18px;
        cursor: pointer;
      }
      .activeItem {
        border-radius: 0px 0px 0px 0px;
        font-family: Source Han Sans CN, Source Han Sans CN;
@@ -274,11 +274,13 @@
        color: #1c5cff;
        border-bottom: 2px solid #1c5cff;
      }
      .dots {
        width: 17px;
        height: 17px;
        // height: 17px;
        height: pxToVh(17);
        border-radius: 50%;
         background: #366fff;
        background: #366fff;
        color: #fff;
        font-size: 9px;
        position: absolute;
@@ -287,9 +289,11 @@
        padding: 1px;
        line-height: 17px;
      }
           .dots1 {
      .dots1 {
        width: 17px;
        height: 17px;
        // height: 17px;
        height: pxToVh(17);
        border-radius: 50%;
        background: none !important;
        color: #366fff !important;
@@ -301,9 +305,11 @@
        line-height: 17px;
      }
    }
    .todo-items {
      margin-top: 10px;
      height: 250px;
      // height: 250px;
      height: pxToVh(250);
      overflow-y: scroll;
    }
@@ -317,7 +323,9 @@
      box-shadow: 0px 2px 4px 0px rgba(173, 173, 173, 0.18);
      transition: all 0.2s ease;
      border-left: 4px solid transparent;
      height: 42px;
      // height: 42px;
      height: pxToVh(42);
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
@@ -327,9 +335,10 @@
        margin-left: 3px;
        width: 1.6rem;
        height: 1.6rem;
        img{
        width: 100%;
        height: 100%;
        img {
          width: 100%;
          height: 100%;
        }
      }
@@ -359,6 +368,7 @@
          font-size: 14px;
          color: #343434;
        }
        .unread {
          width: 5px;
          height: 5px;
@@ -366,6 +376,7 @@
          border-radius: 50%;
          margin: 0 4px;
        }
        .reads {
          width: 5px;
          height: 5px;
@@ -379,10 +390,12 @@
        display: flex;
        align-items: center;
        margin-right: 42px;
        img {
          width: 15px;
          height: 15px;
        }
        .todo-date {
          font-weight: 400;
          font-size: 14px;
@@ -392,6 +405,7 @@
      }
    }
  }
  .custom-text {
    font-size: 14px;
    color: #7c8091;