Browse Source

init

newStyle
lancer 2 years ago
parent
commit
c1f5b009cc
2 changed files with 7 additions and 7 deletions
  1. +6
    -6
      src/api/modules/http.js
  2. +1
    -1
      src/views/Equipment/state.vue

+ 6
- 6
src/api/modules/http.js View File

@@ -320,11 +320,11 @@ export function templategeupdateSort(data) {


//禁忌列表
export function taboofindbypage(data) {
export function taboofindbypage(query) {
return request({
url: 'autoSR/sensitivewords/findbypage',
method:'post',
data
method:'get',
params:query
})
}

@@ -348,11 +348,11 @@ export function tabooupdate(data) {
}

//修改禁忌
export function taboodelete(data) {
export function taboodelete(query) {
return request({
url: 'autoSR/sensitivewords/delete',
method:'post',
data
method:'get',
params:query
})
}



+ 1
- 1
src/views/Equipment/state.vue View File

@@ -484,7 +484,7 @@ export default {
})
.then((res) => {
// console.log(res);
this.tableData = res.data.records;
this.tableData = res.data.list.records;
this.total = res.data.total;
});
},


Loading…
Cancel
Save