当前位置: 首页 > article >正文

自定义封装进度条标签

代码如下

<!-- 封装自定义progress标签 -->
<template>
  <div class="progress">
    <div class="item" :class="{active: item.complete == 1}"
    v-for="(item, index) in list" :key="index"
    @click="handlerStage(item)"
    >
    {{ item.stageName }}
  </div>
  </div>
</template>
<script setup>
import { ref } from 'vue'
const emit = defineEmits(['handlerStage'])
const props = defineProps({
  list: {
    type: Array,
    default: [] // 设置默认值为 false
  },
})
const handlerStage = (item) => {
  emit('handlerStage', item)
}
</script>
<style lang="scss" scoped>
.progress {
  display: flex;
  div {
    min-width: 95px;
    max-height: 30px;
    box-sizing: border-box;
    padding: 6px 18px;
    background: #fff;
    display: inline-block;
    color: #2D78FF /*#50abe4*/;
    position: relative;
    margin-right: 6px;
    border: 1px solid #2D78FF;
    border-bottom-right-radius: 2px;
  }
  div:after {
    content: '';
    display: block;
    width: 21px;
    height: 22px;
    box-sizing: border-box;
    transform: rotate(45deg);
    border: 1px solid #2D78FF;
    position: absolute;
    right: -11px;
    top: 3px;
    z-index: 10;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-top-left-radius: 1px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 4px;
  }
  div:before {
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    box-sizing: border-box;
    transform: rotate(135deg);
    border: 1px solid #2D78FF;
    position: absolute;
    left: -11px;
    top: 3px;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-bottom-left-radius: 1px;
    border-top-left-radius: 2px;
    border-top-right-radius: 1px;
  }
  .item {
    padding-left: 35px;
    border-right-color: transparent;
    border-left-color: transparent;
  }
  div:first-child {
    border-left-color: #2D78FF;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
  }

  div:last-child {
    border-right-color: #2D78FF;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
  }

  div:first-child:before {
    display: none;
  }
  div:last-child:after{
    display: none;
  }
  div:hover {
    cursor: pointer;
    background-color: #2D78FF;
    color: #fff;
  }
  div:hover::after {
    background-color: #2D78FF;
  }
  div:hover::before {
    background-color: #fff;
  }
  div:first-child:hover::before {
    background-color: #fff;
  }
  .active:first-child {
    background-color: #2D78FF;
    color: #fff;
    &::after {
      background-color: #2D78FF;
    }
  }
  .active {
    background-color: #2D78FF;
    color: #fff;
    &::before {
      background-color: #fff;
    }
    &::after {
      background-color: #2D78FF;
    }
  }
  .active:last-child {
    background-color: #2D78FF;
    color: #fff;
    &::before {
      background-color: #fff;
    }
  }
}
</style>

在页面中引用

<hpProgress :list="cusStageVoList" @handlerStage="handlerStage"></hpProgress>
// 以下代码是参考思路(不重要)
// 客户阶段数组
const cusStageVoList = ref<any>([])
// 修改客户阶段
const handlerStage = async (val: any) => {
  let query = {
    id: props.detailCusIdRef,
    stageId: val.id
  }
  await updateCusStageApi(query).then((res: any) => {
    if (res.code === 1) {
      ElMessage({
        type: "success",
        message: `修改成功`,
        duration: 1500,
      })
      emit("customerDetailInfo", props.detailCusIdRef)
    } else {
      ElMessage({
        type: "warning",
        message: `修改失败,${res.msg}`,
        duration: 1500,
      })
    }
  }).catch((err: any) => {
    console.log(err);
  })
}

效果展示

在这里插入图片描述


http://www.kler.cn/a/504286.html

相关文章:

  • ETL 数据抽取
  • WEB攻防-通用漏洞_XSS跨站_权限维持_捆绑钓鱼_浏览器漏洞
  • 穷举vs暴搜vs深搜vs回溯vs剪枝系列一>优美的排列
  • 基于springboot+vue的 嗨玩-旅游网站
  • 解决 vxe-table 的下拉框、日期选择等组件被 element-plus element-ui 弹窗遮挡问题 z-index
  • MySQL(高级特性篇) 04 章——逻辑架构
  • 设计模式 行为型 责任链模式(Chain of Responsibility Pattern)与 常见技术框架应用 解析
  • JS后盾人--再一次的走进JS?
  • STM32程序发生异常崩溃时,怎样从串口输出当时的程序调用栈等信息
  • LangChain学习笔记2 Prompt 模板
  • 21_Spring Boot缓存注解介绍
  • 【Go】Go Gin框架初识(一)
  • 从零开始:在服务器上部署大模型并集成到 vscode +Cline使用
  • LLaMa-3 8B + 蒙特卡洛树 约等于 GPT-4
  • 常用的前端4种请求方式
  • 《拉依达的嵌入式\驱动面试宝典》—Linux篇(二)_uboot
  • RocketMQ 知识速览
  • PySide6的资源文件(.qrc 文件)简介以及RCC工具
  • ssm旅游攻略网站设计+jsp
  • 深入理解循环神经网络(RNN):原理、应用与挑战
  • springCloud特色知识记录(基于黑马教程2024年)
  • Android SystemUI——服务启动流程(二)
  • excel按行检索(index+match)
  • 利用Python爬虫获取item_search_shop-获得店铺的所有商品API接口
  • AI时代来了,我们不再需要IDE了
  • C语言进阶-2指针(一)