feat: 首次提交
This commit is contained in:
484
components/firstui/fui-steps/fui-steps.vue
Normal file
484
components/firstui/fui-steps/fui-steps.vue
Normal file
@ -0,0 +1,484 @@
|
||||
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司(手机号:18 614 0 7 25 4 9,身份证尾号:5A07X5)专用,请尊重知识产权,勿私下传播,违者追究法律责任。-->
|
||||
<template>
|
||||
<view class="fui-steps__wrap" :class="{'fui-steps__flex':direction==='row'}"
|
||||
:style="{paddingTop:padding[0] || 0,paddingRight:padding[1]||0,paddingBottom:padding[2] || padding[0]||0,paddingLeft:padding[3] || padding[1]||0,background:background}">
|
||||
<view class="fui-steps__node-wrap"
|
||||
:class="[direction==='column'?'fui-steps__flex-row':'fui-steps__flex-col',direction==='row'?'fui-steps__nw-col':'fui-steps__nw-row']"
|
||||
v-for="(item,index) in items" :key="index" @tap.stop="handleClick(index)">
|
||||
<view class="fui-steps__node-box"
|
||||
:class="[direction==='row'?'fui-steps__flex-row':'fui-steps__flex-col',direction==='row'?'':'fui-steps__node-weex']"
|
||||
:style="getStyles">
|
||||
<view class="fui-steps__line"
|
||||
:class="['fui-steps__line-'+direction+(lineBold?'_bold':''),index<=current && index!==0 && !getActiveColor?'fui-steps__background':'']"
|
||||
:style="{background:index===0?'transparent':(index<=current?getActiveColor:nodeColor)}"
|
||||
v-if="direction==='row'"></view>
|
||||
<view class="fui-steps__node">
|
||||
<text class="fui-steps__node-text"
|
||||
:class="{'fui-steps__background':index<=current && !getActiveColor,'fui-steps__border':index<=current && !getActiveColor}"
|
||||
v-if="item.text && !(isMark && index==current)"
|
||||
:style="{background:index<=current?getActiveColor:'#fff',borderColor:index<=current?getActiveColor:nodeColor,color:index<=current?'#fff':color}">{{item.text}}</text>
|
||||
<view class="fui-steps__checkbox"
|
||||
:class="{'fui-steps__background':!getActiveColor && !processColor}"
|
||||
:style="{background:processColor || getActiveColor}" v-if="isMark && index==current">
|
||||
<template v-if="processStatus==='fail'">
|
||||
<view class="fui-steps__ia-fail"></view>
|
||||
<view class="fui-steps__ib-fail"></view>
|
||||
</template>
|
||||
<view class="fui-steps__ic-waiting" v-else-if="processStatus==='wait'"></view>
|
||||
<view class="fui-steps__checkmark" v-else></view>
|
||||
</view>
|
||||
<view class="fui-steps__node-dot"
|
||||
:class="{'fui-steps__background':index<=current && !getActiveColor}"
|
||||
:style="{background:index<=current?getActiveColor:nodeColor}"
|
||||
v-if="!item.text && !item.src && !(isMark && index==current)">
|
||||
</view>
|
||||
<image :src="index<=current?(item.activeSrc || item.src):item.src" mode="widthFix"
|
||||
class="fui-steps__node-icon" v-if="!item.text && item.src && !(isMark && index==current)"
|
||||
:style="{borderRadius:radius || 0}"></image>
|
||||
</view>
|
||||
<view class="fui-steps__line"
|
||||
:class="['fui-steps__line-'+direction+(lineBold?'_bold':''),index!==items.length-1 && !getActiveColor && (index<current || (index==current && isWait && direction==='row' && !processColor))?'fui-steps__background':'']"
|
||||
:style="{background:index===items.length-1?'transparent':((index<current) || (index==current && isWait && direction==='row')?getColor(index,current):nodeColor)}">
|
||||
</view>
|
||||
</view>
|
||||
<view class="fui-steps__content"
|
||||
:class="[direction==='row'?'fui-steps__content-row':'fui-steps__content-col']"
|
||||
:style="{paddingBottom:index===items.length-1 || direction==='row'? '0rpx':'64rpx',paddingLeft:direction==='row'?'20rpx':(isNvue?`${height+24}rpx`:'24rpx')}">
|
||||
<text class="fui-steps__title"
|
||||
:class="{'fui-steps__text-row':direction==='row','fui-steps__color':(index<current && !getActiveColor) || (index===current && !processColor && !getActiveColor)}"
|
||||
v-if="item.title"
|
||||
:style="{color:index<=current?getColor(index,current):color,fontSize:size+'rpx',fontWeight:fontWeight}">{{item.title}}</text>
|
||||
<text class="fui-steps__descr"
|
||||
:class="{'fui-steps__text-row':direction==='row','fui-steps__color':(index<current && !getActiveColor) || (index===current && !processColor && !getActiveColor)}"
|
||||
v-if="item.descr"
|
||||
:style="{color:index<=current?getColor(index,current):descrColor,fontSize:descrSize+'rpx'}">{{item.descr}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "fui-steps",
|
||||
emits: ['click'],
|
||||
props: {
|
||||
items: {
|
||||
type: Array,
|
||||
default () {
|
||||
return []
|
||||
}
|
||||
},
|
||||
current: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
//row/column
|
||||
direction: {
|
||||
type: String,
|
||||
default: 'row'
|
||||
},
|
||||
padding: {
|
||||
type: Array,
|
||||
default () {
|
||||
return []
|
||||
}
|
||||
},
|
||||
background: {
|
||||
type: String,
|
||||
default: 'transparent'
|
||||
},
|
||||
height: {
|
||||
type: [Number, String],
|
||||
default: 50
|
||||
},
|
||||
nodeColor: {
|
||||
type: String,
|
||||
default: '#ccc'
|
||||
},
|
||||
color: {
|
||||
type: String,
|
||||
default: '#181818'
|
||||
},
|
||||
size: {
|
||||
type: [Number, String],
|
||||
default: 32
|
||||
},
|
||||
fontWeight: {
|
||||
type: [Number, String],
|
||||
default: 400
|
||||
},
|
||||
descrColor: {
|
||||
type: String,
|
||||
default: '#B2B2B2'
|
||||
},
|
||||
descrSize: {
|
||||
type: [Number, String],
|
||||
default: 24
|
||||
},
|
||||
activeColor: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//V1.9.8+ 设置当前步骤的状态 wait / error / success
|
||||
processStatus: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//V1.9.8+ 设置当前步骤的状态 颜色
|
||||
processColor: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
radius: {
|
||||
type: String,
|
||||
default: '0rpx'
|
||||
},
|
||||
//完成到当前步骤时是否需要对号标识
|
||||
isMark: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
isWait: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//步骤线条是否加粗 V1.9.8+
|
||||
lineBold: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
getStyles() {
|
||||
let styles = `height:${this.height}rpx`;
|
||||
if (this.direction === 'column') {
|
||||
styles = `width:${this.height}rpx`;
|
||||
}
|
||||
return styles
|
||||
},
|
||||
getActiveColor() {
|
||||
let color = this.activeColor;
|
||||
// #ifdef APP-NVUE
|
||||
if (!color || color === true) {
|
||||
const app = uni && uni.$fui && uni.$fui.color;
|
||||
color = (app && app.primary) || '#465CFF';
|
||||
}
|
||||
// #endif
|
||||
return color;
|
||||
}
|
||||
},
|
||||
data() {
|
||||
let isNvue = false;
|
||||
// #ifdef APP-NVUE
|
||||
isNvue = true;
|
||||
// #endif
|
||||
return {
|
||||
isNvue
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getColor(index, current) {
|
||||
let color = this.getActiveColor
|
||||
if (index === current) {
|
||||
color = this.processColor || color
|
||||
}
|
||||
return color;
|
||||
},
|
||||
handleClick(index) {
|
||||
this.$emit('click', {
|
||||
index: index,
|
||||
...this.items[index]
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.fui-steps__wrap {
|
||||
/* #ifndef APP-NVUE */
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
flex: 1;
|
||||
/* #endif */
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.fui-steps__flex {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
/* #endif */
|
||||
flex-direction: row;
|
||||
/* #ifdef APP-NVUE */
|
||||
align-items: flex-start !important;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.fui-steps__node-wrap {
|
||||
position: relative;
|
||||
/* #ifndef APP-NVUE */
|
||||
width: 100%;
|
||||
display: flex;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.fui-steps__nw-col {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.fui-steps__flex-row {
|
||||
flex-direction: row;
|
||||
/* #ifndef APP-NVUE */
|
||||
flex-shrink: 0;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.fui-steps__flex-col {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* #ifdef APP-NVUE */
|
||||
.fui-steps__nw-row {
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.fui-steps__line {
|
||||
/* #ifndef APP-NVUE */
|
||||
transform-origin: center;
|
||||
/* #endif */
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.fui-steps__line-row {
|
||||
/* #ifdef APP-NVUE */
|
||||
height: 0.5px;
|
||||
/* #endif */
|
||||
|
||||
/* #ifndef APP-NVUE */
|
||||
height: 1px;
|
||||
transform: scaleY(.5) translateZ(0);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.fui-steps__line-row_bold {
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.fui-steps__line-column {
|
||||
/* #ifdef APP-NVUE */
|
||||
width: 0.5px;
|
||||
/* #endif */
|
||||
|
||||
/* #ifndef APP-NVUE */
|
||||
width: 1px;
|
||||
transform: scaleX(.5) translateZ(0);
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.fui-steps__line-column_bold {
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.fui-steps__node-box {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
/* #endif */
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* #ifdef APP-NVUE */
|
||||
.fui-steps__node-weex {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.fui-steps__node {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
/* #endif */
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.fui-steps__node-text {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
border-radius: 50%;
|
||||
/* #endif */
|
||||
width: 44rpx;
|
||||
height: 44rpx;
|
||||
/* #ifdef APP-NVUE */
|
||||
border-radius: 24rpx;
|
||||
line-height: 44rpx;
|
||||
/* #endif */
|
||||
background-color: #fff;
|
||||
border-style: solid;
|
||||
border-width: 1rpx;
|
||||
font-size: 28rpx;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
font-weight: normal;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.fui-steps__node-icon {
|
||||
width: 44rpx;
|
||||
height: 44rpx;
|
||||
/* #ifndef APP-NVUE */
|
||||
display: block;
|
||||
flex-shrink: 0;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.fui-steps__node-dot {
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
/* #ifndef APP-NVUE */
|
||||
border-radius: 50%;
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
border-radius: 9px;
|
||||
/* #endif */
|
||||
background-color: #ccc;
|
||||
}
|
||||
|
||||
.fui-steps__content {
|
||||
/* #ifndef APP-NVUE */
|
||||
width: 100%;
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
/* #endif */
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.fui-steps__content-row {
|
||||
/* #ifndef APP-NVUE */
|
||||
flex-shrink: 0;
|
||||
word-break: break-all;
|
||||
/* #endif */
|
||||
padding: 12rpx 20rpx 0;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.fui-steps__content-col {
|
||||
padding-left: 24rpx;
|
||||
padding-bottom: 64rpx;
|
||||
}
|
||||
|
||||
.fui-steps__title,
|
||||
.fui-steps__descr {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: block;
|
||||
word-break: break-all;
|
||||
/* #endif */
|
||||
padding-bottom: 8rpx;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.fui-steps__text-row {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fui-steps__checkbox {
|
||||
width: 44rpx;
|
||||
height: 44rpx;
|
||||
/* #ifdef APP-NVUE */
|
||||
border-radius: 44rpx;
|
||||
/* #endif */
|
||||
/* #ifndef APP-NVUE */
|
||||
display: inline-flex;
|
||||
box-sizing: border-box;
|
||||
border-radius: 50%;
|
||||
vertical-align: top;
|
||||
flex-shrink: 0;
|
||||
/* #endif */
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
}
|
||||
|
||||
.fui-steps__checkmark {
|
||||
width: 22rpx;
|
||||
height: 44rpx;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 3px;
|
||||
border-bottom-color: #FFFFFF;
|
||||
border-right-style: solid;
|
||||
border-right-width: 3px;
|
||||
border-right-color: #FFFFFF;
|
||||
transform: rotate(45deg) scale(0.5);
|
||||
/* #ifndef APP-NVUE */
|
||||
box-sizing: border-box;
|
||||
transform: rotate(45deg) scale(0.5) translateZ(0);
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
transform: rotate(45deg) scale(0.5);
|
||||
/* #endif */
|
||||
transform-origin: 54% 48%;
|
||||
}
|
||||
|
||||
/* #ifndef APP-NVUE */
|
||||
.fui-steps__color {
|
||||
color: var(--fui-color-primary, #465CFF) !important;
|
||||
}
|
||||
|
||||
.fui-steps__border {
|
||||
border-color: var(--fui-color-primary, #465CFF) !important;
|
||||
}
|
||||
|
||||
.fui-steps__background {
|
||||
background: var(--fui-color-primary, #465CFF) !important;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.fui-steps__ia-fail {
|
||||
width: 48rpx;
|
||||
height: 3px;
|
||||
transform: rotate(45deg) scale(0.5);
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.fui-steps__ib-fail {
|
||||
width: 48rpx;
|
||||
height: 3px;
|
||||
margin-top: -3px;
|
||||
transform: rotate(-45deg) scale(0.5);
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.fui-steps__ic-waiting {
|
||||
height: 32rpx;
|
||||
width: 32rpx;
|
||||
border-style: solid;
|
||||
border-bottom-width: 3px;
|
||||
border-left-width: 3px;
|
||||
border-top-width: 0;
|
||||
border-right-width: 0;
|
||||
border-color: #fff;
|
||||
margin-left: 6rpx;
|
||||
margin-top: -6rpx;
|
||||
/* #ifndef APP-NVUE */
|
||||
box-sizing: border-box;
|
||||
/* #endif */
|
||||
transform: scale(.5);
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user