无人机管理后台前端(已迁走)
张含笑
2025-11-19 f4548acea8b1e364aa08bcbbb5c448bb88c73476
src/views/tickets/ticketComponent/TicketDetailDialog.vue
@@ -585,6 +585,8 @@
    getActiveStep() {
      const arr = this.stepStatusList;
      console.log('stepStatusList',this.stepStatusList);
      const index = arr.indexOf(String(this.currentDetail.status));
      return index !== -1 ? index + 2 : 1;
    },
@@ -754,14 +756,26 @@
  }
};
</script>
<style lang="scss" scoped>
<style lang="scss">
.custom-dialog {
  max-height: 96vh;
  max-height: 95vh;
  :deep(.el-dialog__body) {
    border-top: 0.1rem solid #f0f0f0;
  }
}
</style>
<style lang="scss" scoped>
.step-timer {
  position: absolute;
  right: 80%;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  margin-left: 4px;
  color: #666;
  font-size: 12px;
}
.detail-container {
  padding: 0 20px;
@@ -1061,4 +1075,20 @@
  pointer-events: none;
  opacity: 0.3 !important;
}
.readonly-processing-detail {
  background-color: #f5f7fa;
  padding: 12px;
  border-radius: 4px;
  min-height: 30px;
  color: #606266;
  line-height: 1.5;
  display: block;
  text-align: left;
  margin-bottom: 5px;
  &:first-child {
    font-weight: bold;
    margin-bottom: 4px;
  }
}
</style>