109 lines
2.2 KiB
Vue
109 lines
2.2 KiB
Vue
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司(手机号:1 86 1 40 7 2 549,身份证尾号:5A07X5)专用,请尊重知识产权,勿私下传播,违者追究法律责任。-->
|
||
<template>
|
||
<view class="fui-timeaxis__node-wrap">
|
||
<view class="fui-timeaxis__left" :style="{width:leftWidth+'rpx'}">
|
||
<slot name="left"></slot>
|
||
</view>
|
||
<view class="fui-timeaxis__node-box" :style="{width:width+'rpx'}">
|
||
<view class="fui-timeaxis__node">
|
||
<slot></slot>
|
||
</view>
|
||
<view class="fui-timeaxis__line" :style="{background:lineColor,width:lineWidth+'px'}" v-if="lined"></view>
|
||
</view>
|
||
<view class="fui-timeaxis__content">
|
||
<slot name="right"></slot>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: "fui-timeaxis-node",
|
||
inject: ['timeaxis'],
|
||
props: {
|
||
lined: {
|
||
type: Boolean,
|
||
default: true
|
||
},
|
||
lineColor: {
|
||
type: String,
|
||
default: '#ccc'
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
lineWidth: 1,
|
||
width: 48,
|
||
leftWidth: 0
|
||
};
|
||
},
|
||
created() {
|
||
this.init()
|
||
},
|
||
methods: {
|
||
init() {
|
||
if (this.timeaxis) {
|
||
this.width = this.timeaxis.width
|
||
this.lineWidth = this.timeaxis.lineWidth
|
||
this.leftWidth = this.timeaxis.leftWidth
|
||
this.timeaxis.children.push(this)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.fui-timeaxis__node-wrap {
|
||
position: relative;
|
||
/* #ifndef APP-NVUE */
|
||
width: 100%;
|
||
display: flex;
|
||
/* #endif */
|
||
flex-direction: row;
|
||
}
|
||
|
||
.fui-timeaxis__line {
|
||
/* #ifdef APP-NVUE */
|
||
width: 0.5px;
|
||
/* #endif */
|
||
/* #ifndef APP-NVUE */
|
||
width: 1px;
|
||
transform: scaleX(.5) translateZ(0);
|
||
transform-origin: center center;
|
||
/* #endif */
|
||
flex: 1;
|
||
}
|
||
|
||
.fui-timeaxis__node-box {
|
||
/* #ifndef APP-NVUE */
|
||
display: flex;
|
||
flex-shrink: 0;
|
||
/* #endif */
|
||
flex-direction: column;
|
||
align-items: center;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.fui-timeaxis__node {
|
||
/* #ifndef APP-NVUE */
|
||
display: flex;
|
||
/* #endif */
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.fui-timeaxis__left {
|
||
/* #ifndef APP-NVUE */
|
||
flex-shrink: 0;
|
||
/* #endif */
|
||
overflow: hidden;
|
||
}
|
||
|
||
.fui-timeaxis__content {
|
||
/* #ifndef APP-NVUE */
|
||
width: 100%;
|
||
/* #endif */
|
||
flex: 1;
|
||
}
|
||
</style> |