整体测试及优化,部分细节功能待完善

This commit is contained in:
2023-03-24 02:15:07 +08:00
parent 3f94ece6d4
commit 37402b0ea4
18 changed files with 273 additions and 139 deletions

View File

@@ -130,6 +130,21 @@ const custom = {
else{
return num/flag+'万'
}
},addTreeFormatSubject(data,type) {
if(!data) {
return []
}
data.map( item => {
item.label = item.name
item.value = item[type]
if(item.level !== 3) {
item.disabled = true
}
if(item.children) {
custom.addTreeFormatSubject(item.children,type)
}
})
return data
},
getDealType() { // 获取交易类型
return [