Parcourir la source

init

newStyle
lancer il y a 2 ans
Parent
révision
c1f5b009cc
2 fichiers modifiés avec 7 ajouts et 7 suppressions
  1. +6
    -6
      src/api/modules/http.js
  2. +1
    -1
      src/views/Equipment/state.vue

+ 6
- 6
src/api/modules/http.js Voir le fichier

@@ -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 Voir le fichier

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


Chargement…
Annuler
Enregistrer