소스 검색

消息

newStyle
jyt 2 년 전
부모
커밋
bba79cfe0e
3개의 변경된 파일9개의 추가작업 그리고 9개의 파일을 삭제
  1. +0
    -8
      src/api/modules/api.js
  2. +8
    -0
      src/api/modules/http.js
  3. +1
    -1
      src/views/contentManage/updateRecord/list.vue

+ 0
- 8
src/api/modules/api.js 파일 보기

@@ -1174,11 +1174,3 @@ export function sensitivewordsList(data) {
params: data
})
}
// 更新记录列表
export function updateListApi(data) {
return request({
url: '/autoSR/api/zkMessage/messagePage',
method: 'get',
params: data
})
}

+ 8
- 0
src/api/modules/http.js 파일 보기

@@ -860,4 +860,12 @@ export function theCirculation(query) {
method: 'get',
data: query
})
}
// 更新记录列表
export function updateListApi(data) {
return request({
url: 'autoSR/api/zkMessage/messagePage',
method: 'get',
params: data
})
}

+ 1
- 1
src/views/contentManage/updateRecord/list.vue 파일 보기

@@ -131,7 +131,7 @@ export default {
this.filefindByPage();
},
filefindByPage(obj) {
this.$api.api.updateListApi(obj).then((res) => {
this.$api.http.updateListApi(obj).then((res) => {
console.log(res)
this.tableData = res.data
});


불러오는 중...
취소
저장