Files
FirstUI-vue/pages/component/data/progress/progress.vue
2023-08-17 21:28:49 +08:00

64 lines
1.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号1 861 40 725 49身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title fui-align__center" @tap="vip">Progress <image
src="/static/images/index/light/icon_member_3x.png"></image>
</view>
<view class="fui-page__desc">Progress 进度条用于展现某个任务的当前进度</view>
</view>
<view class="fui-page__bd fui-page__spacing">
<view class="fui-section__title">基础使用</view>
<fui-progress :percent="80"></fui-progress>
<view class="fui-section__title">显示进度</view>
<fui-progress :percent="70" showInfo></fui-progress>
<view class="fui-section__title">改变颜色</view>
<fui-progress :percent="60" background="#ddd" activeColor="#FFB703"></fui-progress>
<view class="fui-section__title">设置高度</view>
<fui-progress :percent="70" height="16" radius="16" activeColor="#09BE4F"></fui-progress>
<view class="fui-section__title">控制进度</view>
<fui-progress :percent="percent" showInfo></fui-progress>
<view class="fui-btn__box">
<fui-button type="gray" btn-size="medium" text="percent" bold :margin="['24rpx']"
@click="percentChange"></fui-button>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
percent: 0
}
},
methods: {
vip() {
this.fui.href("/pages/my/qa/qa?index=2&title=VIP专属内容")
},
percentChange() {
if (this.percent >= 100) {
this.percent = 40;
} else {
//大于100按100处理
this.percent += 30;
}
}
}
}
</script>
<style>
.fui-btn__box {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 48rpx;
}
.fui-wrap {
padding-bottom: 64rpx;
}
</style>