您好,登錄后才能下訂單哦!
這篇文章主要介紹了分布式開發(fā)醫(yī)療掛號系統(tǒng)數(shù)據(jù)字典模塊web前后端怎么實現(xiàn)的相關知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇分布式開發(fā)醫(yī)療掛號系統(tǒng)數(shù)據(jù)字典模塊web前后端怎么實現(xiàn)文章都會有所收獲,下面我們一起來看看吧。
數(shù)據(jù)字典可以管理系統(tǒng)常用的分類數(shù)據(jù)或 固定數(shù)據(jù),例如:省市區(qū)三級聯(lián)動數(shù)據(jù)、民族數(shù)據(jù)、行業(yè)數(shù)據(jù)、學歷數(shù)據(jù)等。由于我們的 分布式醫(yī)療掛號系統(tǒng) 大量使用這種數(shù)據(jù),所有我們要做一個數(shù)據(jù)管理,方便管理系統(tǒng)數(shù)據(jù),并且在一般的系統(tǒng)中基本都會做數(shù)據(jù)管理。
數(shù)據(jù)字典主要功能:使系統(tǒng)中的各項數(shù)據(jù)變的更加的嚴格,這樣有利于降低因為數(shù)據(jù)問題而導致的bug。
數(shù)據(jù)字典的數(shù)據(jù)庫表字段和對應的實體類的屬性應該是一一對應的,但要注意下面兩個地方:
添加上@TableLogic
表示為邏輯刪除,后續(xù)刪除操作會自動變?yōu)樾薷牟僮?。為了實現(xiàn)頁面上單擊展開子節(jié)點的功能,額外使用@TableField(exist = false)
加入ha’s’Children屬性。
根據(jù)下圖總結的三層調(diào)用關系,我們需要分別編寫好Controlller層、Service層、Mapper層的代碼。
通過url:/admin/cmn/dict/findChildData/{id}
訪問資源到達控制層后,控制層調(diào)用服務層的findChildData(Long id)
方法。
@Api(tags = "數(shù)據(jù)字典接口") @RestController @RequestMapping("/admin/cmn/dict") @CrossOrigin public class DictController { @Autowired private DictService dictService; @ApiOperation(value = "根據(jù)id查詢子數(shù)據(jù)列表") @GetMapping("findChildData/{id}") public Result findChildData(@PathVariable Long id) { List<Dict> list = dictService.findChildData(id); return Result.ok(list); } }
在服務層根據(jù)id查詢子數(shù)據(jù)列表,調(diào)用數(shù)據(jù)層的查詢方法查到子數(shù)據(jù)集合后,將集合遍歷,遍歷過程中為每條記錄的hasChildren屬性賦值。具體業(yè)務邏輯詳見下面的代碼:
Service接口繼承IService<T>
接口:
public interface DictService extends IService<Dict> { /** * 根據(jù)id查詢子數(shù)據(jù)列表 * @param id * @return list */ List<Dict> findChildData(Long id); }
Service實現(xiàn)類繼承ServiceImpl<TMapper, T>
類:
@Service public class DictServiceImpl extends ServiceImpl<DictMapper, Dict> implements DictService { /** * 根據(jù)id查詢子數(shù)據(jù)列表 * @param id * @return list */ @Override public List<Dict> findChildData(Long id) { QueryWrapper<Dict> queryWrapper = new QueryWrapper<>(); queryWrapper.eq("parent_id", id); List<Dict> dictList = baseMapper.selectList(queryWrapper); for (Dict dict : dictList) { // 得到每一條記錄的id值 Long dictId = dict.getId(); // 調(diào)用hasChildren方法判斷是否包含子節(jié)點 boolean flag = this.hasChildren(dictId); // 為每條記錄設置hasChildren屬性 dict.setHasChildren(flag); } return dictList; } /** * 判斷id下面是否有子結點 * @param id * @return true:有子結點,false:無子結點 */ private boolean hasChildren(Long id) { QueryWrapper<Dict> queryWrapper = new QueryWrapper<>(); queryWrapper.eq("parent_id", id); Integer count = baseMapper.selectCount(queryWrapper); return count > 0; } }
Mapper接口繼承了BaseMapper<T>
接口。由于服務層調(diào)用的方法是BaseMapper自帶的方法,所以在數(shù)據(jù)層,我們并沒有給出具體的方法。
public interface DictMapper extends BaseMapper<Dict> { }
由于在數(shù)據(jù)字典模塊中配置類、配置文件不是我們主要研究的內(nèi)容,所以這里不再給出,具體可參考github倉庫代碼。至此,數(shù)據(jù)字典模塊的后端接口已經(jīng)完成:
由于數(shù)據(jù)管理中的數(shù)據(jù)字典是一個全新的頁面,我們可以將數(shù)據(jù)字典的路由設置為/cmn/list
,路由到/cmn/list
后,會跳轉(zhuǎn)到/views/dict/list.js
資源。
// 數(shù)據(jù)字典路由 { path: '/cmn', component: Layout, redirect: '/cmn/list', name: '數(shù)據(jù)管理', meta: { title: '數(shù)據(jù)管理', icon: 'example' }, // 如果只有一級會僅顯示子按鈕,添加alwaysShow=true 可以使父按鈕也顯示 alwaysShow:true, children: [ { path: 'list', name: '數(shù)據(jù)字典', component: () => import('@/views/dict/list'), meta: { title: '數(shù)據(jù)字典', icon: 'table' } } ] },
路由后,跳轉(zhuǎn)到/views/dict/list.js
頁面,下面給出此頁面的邏輯片段代碼和其調(diào)用的api接口代碼:
表格渲染我們使用elementUI提供開發(fā)文檔:樹形數(shù)據(jù)與懶加載表格組件。
修改后的代碼如下:
:data=“l(fā)ist”
查出來的數(shù)據(jù)。
:load=“getChildrens”
加載getChildrens方法。
:tree-props="{ children: ‘children’, hasChildren: ‘hasChildren’ }"
樹的屬性值,通過屬性值來判斷hasChildren中的值是true還是false。
<template> <div class="app-container"> <el-table :data="list" :load="getChildrens" :tree-props="{ children: 'children', hasChildren: 'hasChildren' }" row-key="id" border lazy> <el-table-column label="名稱" width="230" align="left"> <template slot-scope="scope"> <span>{{ scope.row.name }}</span> </template> </el-table-column> <el-table-column label="編碼" width="220"> <template slot-scope="{ row }"> {{ row.dictCode }} </template> </el-table-column> <el-table-column label="值" width="230" align="left"> <template slot-scope="scope"> <span>{{ scope.row.value }}</span> </template> </el-table-column> <el-table-column label="創(chuàng)建時間" align="center"> <template slot-scope="scope"> <span>{{ scope.row.createTime }}</span> </template> </el-table-column> </el-table> </div> </template>
目前數(shù)據(jù)字典模塊的前后端已經(jīng)開發(fā)完成了,但是此刻如果允許程序,頁面并不會加載到后端傳過來的數(shù)據(jù)。因為不同的訪問請求訪問到不同的服務器中,我們?yōu)閿?shù)據(jù)字典模塊設置端口是8202,而前端config/dev.env.js
中,配置的是之前醫(yī)院設置模塊中的8201端口。
我們可以加入Nginx暫時解決,后期也會加入路由來替換掉Nginx,不過僅為了展示效果,這里簡單的將前端 config/dev.env.js
中的端口改為和數(shù)據(jù)字典模塊8202統(tǒng)一的端口。關于Nginx和添加統(tǒng)一路由會在后續(xù)的文章中進行介紹。
關于“分布式開發(fā)醫(yī)療掛號系統(tǒng)數(shù)據(jù)字典模塊web前后端怎么實現(xiàn)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“分布式開發(fā)醫(yī)療掛號系統(tǒng)數(shù)據(jù)字典模塊web前后端怎么實現(xiàn)”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。