更新记录
2.9(2024-11-23) 下载此版本
组件优化
2.8(2024-08-17) 下载此版本
组件优化
2.6(2024-08-17) 下载此版本
组件优化
查看更多平台兼容性
Vue2 | Vue3 |
---|---|
√ | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.7.0 app-vue app-nvue | √ | √ | √ | √ | √ | √ |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
√ | √ | √ | √ |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | √ | √ | √ |
chenchuang-ownershipstructure
uniapp专属精品组件页面模板(由前端组件开发出品)精品组件页面模板
●组件模板规划:
由前端组件开发出品的精品组件页面模板,将陆续发布,预计高达约几百种供您使用,是快速快发项目、创业的必备精品。
合集地址: uni-app模板合集地址:(https://ext.dcloud.net.cn/publisher?id=274945) 如查看全部页面模板,请前往上述uniapp插件市场合集地址;
●组件模板效果图:
可下载项目后预览,效果图见右侧图片;
●组件模板费用:
学习:免费下载,进行学习,无费用;
使用/商用:本页面地址赞赏10元后,可终身商用;
●组件模板使用版权/商用:
本组件模板免费下载可供学习,如需使用及商用,请在本组件页面模板进行赞赏10元
(仅需10元获取精品页面模板代码-物有所值,1个组件页面市场价100元 )
赞赏10元后(当前项目产生赞赏订单可追溯)即可终身商用当前本地址下载的页面模版代码,不同下载地址需进行不同的赞赏。(不赞赏就进行商用使用者,面临侵权!保留追究知识产权法律责任!后果自负!)
我的技术公众号(私信可加前端技术交流群)
群内气氛挺不错的,应该或许可能大概,算是为数不多的,专搞技术的前端群,偶尔聊天摸鱼
使用方法
<!-- treeName:树形结构的主题名称 treeData: 树形结构的填充数据 目前支持三级树形结构-->
<cc-treeStructure v-if="(curTreeName.length > 0)" :treeName="curTreeName" :treeData="curTreeData">
</cc-treeStructure>
HTML代码实现部分
<template>
<view class="content">
<!-- treeName:树形结构的主题名称 treeData: 树形结构的填充数据 -->
<cc-treeStructure v-if="(curTreeName.length > 0)" :treeName="curTreeName" :treeData="curTreeData">
</cc-treeStructure>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello',
curTreeName: '',
curTreeData: []
}
},
onLoad() {
this.curTreeName = "广州汽车集团股份有限公司";
let tmpArr = [];
for (let i = 0; i < 4; i++) {
// 模拟企业控股数据
let s = {
'ratio': '20%',
'amount': '1000000万',
'label': '广州|先进制造业|高新技术',
'investName': '广州汽车工业集团有限公司' + i,
'investType': '0',
'invests': [{
'ratio': '20%',
'amount': '100000万',
'label': '广州|汽车|高新技术',
'investName': '广汽丰田股份有限公司',
'investType': '0',
},
{
'ratio': '10%',
'amount': '90000万',
'label': '广州|工业|高新技术',
'investName': '中国机械工业集团有限公司',
'investType': '0',
},
{
'ratio': '10%',
'amount': '900万',
'label': '股东',
'investName': '曾庆洪',
'investType': '1',
},
{
'ratio': '10%',
'amount': '900万',
'label': '股东',
'investName': '吴松',
'investType': '1',
}
]
};
let tmpDict = Object.assign(s, {
"isOpen": false
});
tmpArr.push(tmpDict);
}
// 模拟个人控股数据
let t = {
'ratio': '10%',
'amount': '900万',
'label': '股东',
'investName': '曾庆洪',
'investType': '1',
'invests': []
};
let tmpDict = Object.assign(t, {
"isOpen": false
});
tmpArr.push(tmpDict);
this.curTreeData = tmpArr;
},
methods: {
}
}
</script>
<!-- /*
*/ -->
<style>
page {
background-color: #f6f6f6;
}
.content {
display: flex;
flex-direction: column;
}
</style>