diff --git a/src/api/system/dictionary.ts b/src/api/system/dictionary.ts index 451d1a24..1cf9ab26 100644 --- a/src/api/system/dictionary.ts +++ b/src/api/system/dictionary.ts @@ -29,6 +29,12 @@ export const deleteDictionary =(id:string) => request.delete(`/dictionary/${id}` */ export const queryDicItem = (data:any)=>request.post('/dictionary-item/_query',data) +/** + * 查询字典项不分页 + */ +export const queryDicItemNoPage = (data:any) => request.post('/dictionary-item/_query/no-paging',data) + + /** * 保存字典项 */ diff --git a/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue b/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue index f327f525..a31b86a9 100644 --- a/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue +++ b/src/views/account/Center/components/StationMessage/components/NotificationRecord/components/ViewDialog.vue @@ -11,7 +11,7 @@