更新记录
1.0.0(2024-09-19)
下载此版本
1.0.0.初始化更新
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.1.0 |
× |
√ |
√ |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
flowChart-dome
- title
- flowStatus
- name
- time
- index
- status
- max-lenght
- empty
- pass
- backgroundColor
//使用实例
<template>
<view style="background-color: antiquewhite;border-radius: 8rpx;margin: 20rpx;padding:20rpx">
<Packing>
<flowChart-dome title="流程1" flowStatus="发起人" name="张三" time="2019-10-10"
:index="0" status="2" max-lenght="3"></flowChart-dome>
<flowChart-dome title="流程2" flowStatus="接单人" name="李四" time="2019-10-10"
:index="1" status="2" max-lenght="3"></flowChart-dome>
<flowChart-dome title="流程3" time="2019-10-10" :index="2" status="2" max-lenght="3"></flowChart-dome>
<flowChart-dome title="流程4111" time="2019-10-10" :index="3" status="2" max-lenght="3"></flowChart-dome>
</Packing>
</view>
</template>
<script setup>
import Packing from '@/uni_modules/flowChart-dome/components/flowChart-dome/Packing.vue'
</script>
<style>
</style>