代码更新

This commit is contained in:
2022-12-01 10:23:48 +08:00
parent b4f1ee22c2
commit 0781e71d48
8 changed files with 25 additions and 12 deletions

View File

@@ -385,7 +385,7 @@ export default {
}
},
created() {
crudUserStor.getSect().then(res => {
crudUserStor.getSect({ 'stor_id': '' }).then(res => {
this.sects = res.content
})
},

View File

@@ -32,10 +32,11 @@ export function getUserStor(data) {
})
}
export function getSect() {
export function getSect(data) {
return request({
url: '/api/userStor/getSect',
method: 'post'
method: 'post',
data
})
}