ソースを参照

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


読み込み中…
キャンセル
保存