mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 06:22:48 +08:00
26 lines
569 B
Markdown
26 lines
569 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
|
|
```vue
|
|
<template>
|
|
<Row>
|
|
<Cell span="12">
|
|
<Process-circle :percent="100" stroke-color="#00cc66" stroke-type="round">
|
|
<Icon type="md-checkmark" size="50" color="#00cc66"></Icon>
|
|
</Process-circle>
|
|
</Cell>
|
|
<Cell span="12">
|
|
<Process-circle :percent="80" stroke-type="round" :stroke-width="4" :trail-width="3">
|
|
<Icon type="md-cloud-download" size="50" color="#3399ff"></Icon>
|
|
</Process-circle>
|
|
</Cell>
|
|
</Row>
|
|
</template>
|
|
<script>
|
|
export default{
|
|
|
|
}
|
|
</script>
|
|
```
|