Skip to content

Progress

Used to display the current progress of an operation.

Basic Usage

Set the percentage using percentage.

html
<wd-progress :percentage="30" />

Hide Progress Text

Set hide-text to hide the progress text.

html
<wd-progress :percentage="60" hide-text></wd-progress>

Set Status

Set status to inform users of the current state and expectations.

html
<wd-progress :percentage="100" hide-text status="success" />
<wd-progress :percentage="70" hide-text status="danger" />

Modify Color

Set color to modify the progress bar color.

html
<wd-progress :percentage="80" color="#00c740"></wd-progress>

color can also be set as an array or function. If only colors are passed in the array, the progress boundaries for each color are automatically calculated. A function needs to return a color value.

html
<wd-progress :percentage="100" :color="['#00c740', '#ffb300', '#e2231a', '#0083ff']" />

The array can also be set in the following format:

html
<wd-progress :percentage="percentage" :color="colorObject" />
typescript
import type { ProgressColor } from '@/uni_modules/wot-design-uni/components/wd-progress/types'

const colorObject = ref<ProgressColor>([
  {
    color: 'yellow',
    percentage: 30
  },
  {
    color: 'red',
    percentage: 60
  },
  {
    color: 'blue',
    percentage: 80
  },
  {
    color: 'black',
    percentage: 90
  }
])
const percentage = ref<number>(100)

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
percentageProgress value, maximum 100number-0-
hide-textHide progress textboolean-false-
colorProgress bar colorstring / ProgressColor[] / string[]---
statusProgress bar statusstringsuccess / danger / warning--
durationMilliseconds needed for 1% increasenumber-30-

ProgressColor

FieldTypeDescriptionVersion
colorstringColor-
percentagenumberPercentage-

External Classes

Class NameDescriptionVersion
custom-classRoot node style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.