fix(ticketQueryList): 修复接口报错问题
This commit is contained in:
parent
bf7f8111b7
commit
859319dc64
|
@ -73,7 +73,6 @@ export default {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
getRouters().then((res) => {
|
getRouters().then((res) => {
|
||||||
this.rolaMenu = this.getName(res.data)
|
this.rolaMenu = this.getName(res.data)
|
||||||
console.log(this.rolaMenu, 'this.rolaMenu')
|
|
||||||
resolve(res)
|
resolve(res)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -196,12 +196,12 @@
|
||||||
<script>
|
<script>
|
||||||
import topBar from '@/components/topBar'
|
import topBar from '@/components/topBar'
|
||||||
import * as api from '@/api/ticket.js'
|
import * as api from '@/api/ticket.js'
|
||||||
|
import { vertexList, memberTeam } from '@/api/settle.js'
|
||||||
export default {
|
export default {
|
||||||
name: 'Bzpz',
|
name: 'Bzpz',
|
||||||
components: {
|
components: {
|
||||||
topBar
|
topBar
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
creationTime: [],
|
creationTime: [],
|
||||||
|
@ -249,10 +249,10 @@ export default {
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
getData() {
|
getData() {
|
||||||
api.vertexFindAll().then((res) => {
|
vertexList().then((res) => {
|
||||||
this.options = res.data
|
this.options = res.data
|
||||||
})
|
})
|
||||||
api.listNoPage().then((res) => {
|
memberTeam().then((res) => {
|
||||||
this.teamNameList = res.rows
|
this.teamNameList = res.rows
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue