fix(ticketQueryList): 修复接口报错问题

This commit is contained in:
woody 2025-05-28 14:54:51 +08:00
parent 72038ce5f0
commit 587f3e80d5
2 changed files with 3 additions and 4 deletions

View File

@ -73,7 +73,6 @@ export default {
return new Promise((resolve) => {
getRouters().then((res) => {
this.rolaMenu = this.getName(res.data)
console.log(this.rolaMenu, 'this.rolaMenu')
resolve(res)
})
})

View File

@ -196,12 +196,12 @@
<script>
import topBar from '@/components/topBar'
import * as api from '@/api/ticket.js'
import { vertexList, memberTeam } from '@/api/settle.js'
export default {
name: 'Bzpz',
components: {
topBar
},
data() {
return {
creationTime: [],
@ -249,10 +249,10 @@ export default {
this.getDataList()
},
getData() {
api.vertexFindAll().then((res) => {
vertexList().then((res) => {
this.options = res.data
})
api.listNoPage().then((res) => {
memberTeam().then((res) => {
this.teamNameList = res.rows
})
},