登录对接

This commit is contained in:
仲么了
2023-07-03 09:16:54 +08:00
parent e9b1e9a417
commit 5f67499e57
19 changed files with 358 additions and 181 deletions

View File

@@ -152,7 +152,7 @@ export default {
projectListFilter() {
return this.projectList.filter((item) => {
if (this.select.engineeringName) {
return item.engineeringName === this.select.engineeringName
return item.engineeringName === this.select.engineeringName || item.value == -1
} else {
return true
}
@@ -227,9 +227,7 @@ export default {
url: '/pages/device/APF/detail',
})
},
init() {
},
init() {},
},
mounted() {
this.userInfo = uni.getStorageSync('userInfo')

View File

@@ -195,7 +195,7 @@ export default {
},
getProjectList() {
getProjectList({
currentPage: 1,
pageNum: 1,
pageSize: 9999,
}).then((res) => {
console.log(res)
@@ -208,6 +208,7 @@ export default {
return {
text: item.name,
value: item.id,
...item,
}
}),
]