浏览代码

init

newStyle
lancer 2 年前
父节点
当前提交
c1f5b009cc
共有 2 个文件被更改,包括 7 次插入7 次删除
  1. +6
    -6
      src/api/modules/http.js
  2. +1
    -1
      src/views/Equipment/state.vue

+ 6
- 6
src/api/modules/http.js 查看文件

@@ -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 查看文件

@@ -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;
});
},


正在加载...
取消
保存