BUG 29018

This commit is contained in:
aixianling
2022-04-11 10:57:21 +08:00
parent 4d16c8c2cc
commit 8502f94796
6 changed files with 74 additions and 99 deletions

View File

@@ -64,7 +64,6 @@ export default {
instance: Function,
dict: Object,
permissions: Function,
row: Object,
},
computed: {
...mapState(['user']),
@@ -81,7 +80,7 @@ export default {
},
methods: {
getDetail() {
let {id} = this.row
let {id} = this.$route.query
this.instance.post("/appfinancingdemand/queryDetailById", null, {
params: {id}
}).then(res => {
@@ -113,7 +112,7 @@ export default {
}).catch(() => 0)
},
back() {
this.$emit('goBack')
this.$router.push({})
}
},
created() {