一、主页相关
src/app/modules/home/home.component.html 主页在这
src/app/modules/home/components/entity/entities-table.component.html 大部分表格内容在这(包括侧界面) 每个表格界面基本都是继承于这个界面来做的
UserTabsComponent继承于EntityTabsComponent 这个界面基本都是用来做属性栏的
(UserTabsComponent来自于src/app/modules/home/pages/user/user-tabs.component.ts)
二、Menu的修改
Menu套了三层,主要的组件在src/app/modules/home/menu 这里面
src/app/modules/home/menu/side-menu.component.ts 是逻辑上的最外层
src/app/modules/home/menu/menu-toggle.component.ts和
src/app/modules/home/menu/menu-link.component.ts分别是链接本身和toggle框
但实际的内容在 src/app/core/services/menu.service.ts 和 src/app/core/services/menu.models.ts 中
注意所有的文本修改都需要去src/assets/locale/locale.constant-zh_CN.json 中改
比如要最简单的把菜单中的“设备“改为“设备管理”,要修改 src/app/core/services/menu.service.ts 中
{
id: guid(),
name: 'device.devices',
type: 'link',
path: '/devices',
icon: 'devices_other'
},
将name改为'device.management'
三、设备相关
设备详细信息:src/app/modules/home/pages/device/device.component.ts
四、用户相关
添加用户信息:src/app/modules/home/components/wizard/device-wizard-dialog.component.ts
用户具体联系信息:tb-contact在src/app/shared/components/contact.component.ts 里
五、设备配置相关
设备配置详细信息:src/app/modules/home/pages/device-profile/device-profile-tabs.component.html
六、表格相关
表格在home.component.html这个页面中,由router-outlet进行注入文章来源:https://www.toymoban.com/news/detail-545659.html
具体的注入内容在src/app/modules/home/pages/customer/customer-routing.module.ts中,该文件分别由模板src/app/modules/home/components/entity/entities-table.component.html 和文件中规定的内容决定文章来源地址https://www.toymoban.com/news/detail-545659.html
到了这里,关于【学习笔记】Thingsboard修改记录的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!