city-casereport/miniprogram_npm/tdesign-miniprogram/result/README.md
2023-12-06 14:22:42 +08:00

3.1 KiB
Raw Blame History

title description spline isComponent
Result 结果 反馈结果状态。 data true

该组件于 0.16.0 版本上线,请留意版本。

引入

全局引入,在 miniprogram 根目录下的app.json中配置,局部引入,在需要引入的页面或组件的index.json中配置。

"usingComponents": {
  "t-result": "tdesign-miniprogram/result/result"
}

代码演示

组件类型

基础结果

{{ theme }}

带描述的结果

{{ description }}

自定义结果

{{ custom }}

常见问题

本地图片无法正确引用? 👇

建议使用绝对路径,而不是相对路径。绝对路径以 app.json 所在位置为基准。

API

Result Props

名称 类型 默认值 说明 必传
description String / Slot - 描述文字 N
icon String / Boolean / Object true 图标名称。值为字符串表示图标名称,值为 false 表示不显示图标,值为 Object 类型,表示透传至 icon,不传表示使用主题图标。 N
image String / Slot - 图片地址 N
theme String default 内置主题。可选项default/success/warning/error N
title String / Slot '' 标题 N

Result 外部样式类

类名 说明
t-class 根节点样式类
t-class-image 图片样式类
t-class-title 标题样式类
t-class-description 描述样式类

CSS 变量

组件提供了下列 CSS 变量,可用于自定义样式。

名称 默认值 描述
--td-result-description-color @font-gray-2 -
--td-result-description-font-size @font-size-base -
--td-result-description-line-height 44rpx -
--td-result-description-margin-top @spacer -
--td-result-icon-default-color @brand-color -
--td-result-icon-error-color @error-color -
--td-result-icon-success-color @success-color -
--td-result-icon-warning-color @warning-color -
--td-result-title-color @font-gray-1 -
--td-result-title-font-size @font-size-l -
--td-result-title-line-height 56rpx -
--td-result-title-margin-top @spacer-1 -