网页和文本 切换
This commit is contained in:
@ -1,5 +1,30 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询便签管理列表
|
||||
export function selectBymenuNote(query) {
|
||||
return request({
|
||||
url: '/note/note/selectBymenuNote',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询便签管理详细
|
||||
export function userGetNoteInfo(noteId) {
|
||||
return request({
|
||||
url: '/note/note/userGetNoteInfo' + noteId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// 查询便签管理列表
|
||||
export function listNote(query) {
|
||||
return request({
|
||||
@ -50,4 +75,4 @@ export function exportNote(query) {
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user