医废处置公司小程序

This commit is contained in:
2025-06-12 11:58:01 +08:00
parent 575bc6b568
commit bcde35513c
70 changed files with 13158 additions and 0 deletions
@@ -0,0 +1,50 @@
<template>
<view class="tui-timeaxis-item">
<slot name="content"></slot>
<view class="tui-timeaxis-node" :style="{backgroundColor:backgroundColor}">
<slot name="node"></slot>
</view>
</view>
</template>
<script>
export default {
name: "tuiTimeaxisItem",
props: {
//节点背景色
backgroundColor: {
type: String,
default: "#fafafa"
}
},
data() {
return {
};
}
}
</script>
<style scoped>
.tui-timeaxis-item {
position: relative;
width: 100%;
display: flex;
flex-direction: column;
margin-bottom: 25px;
}
.tui-timeaxis-node {
position: absolute;
top: 0;
left: -20px;
transform-origin: 0;
transform: translateX(-50%);
display: flex;
align-items: center;
justify-content: center;
z-index: 99;
background-color: #fafafa;
font-size: 24rpx;
}
</style>