TDesign 步骤条用法

html 复制代码
<template>
    <div>
        <t-steps layout="vertical" :current="options.third" theme="dot" @change="onThirdChange">
            <t-step-item
                v-for="(step, index) in steps"
                :key="index"
                :title="getTitle('third', index)"
            >
                <template #content>
                    <div>{{ step.content }}</div>
                </template>
            </t-step-item>
        </t-steps>
    </div>
</template>

<script setup>
import { ref} from "vue";

const options = ref({
    third: 2, // 当前步骤索引
});

// 自定义步骤数据
const steps = ref([
    { title: "步骤 1", content: "提交" },
    { title: "步骤 2", content: "团委审核" },
    { title: "步骤 3", content: "院级审核" },
    { title: "步骤 4", content: "校级审核" },
  { title: "步骤 5", content: "通过" },
]);

// 根据当前步骤索引计算步骤标题
function getTitle(type, index) {
    if (index === options.value.third) {
        return "当前步骤";
    }
    if (index < options.value.third) {
        return "已完成";
    }
    return "未完成步骤";
}

// 更新当前步骤索引
function onThirdChange(index) {
    options.value.third = index;
}
</script>

<style>
/* 在这里添加其他样式(如果需要) */
</style>
相关推荐
杨天天.17 天前
微信小程序原生,tdesign时间选择器,t-date-time-picker封装成组件,开始时间结束时间
微信小程序·小程序·tdesign
shadowflies18 天前
组件库TDesign的表格<t-table>的使用,行列合并以及嵌入插槽实现图标展示,附踩坑
前端·javascript·vue.js·vue·tdesign
LoveShadowing21 天前
TDesign引入阿里Iconfont图标库
tdesign
sunly_1 个月前
TDesign:TDAlertDialog消息确认弹窗
tdesign
sunly_1 个月前
TDesign:Switch开关
数据库·mysql·tdesign
小林学习编程2 个月前
TDesign了解及使用
tdesign
天天打码3 个月前
TDesign腾讯高保真Axure RP中后台交互模板及元件组件库
交互·axure·tdesign
包淼淼4 个月前
微信小程序自定义navigationBar顶部导航栏(背景图片)适配所有机型,使用tdesign-miniprogram t-navbar设置背景图片
微信小程序·小程序·tdesign
Hsu yiqi6 个月前
TDesign组件库日常应用的一些注意事项
tdesign