1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 20:39:48 +08:00

Fixed error with document action list component population (#439)

This commit is contained in:
Yamel Senih 2020-04-07 17:48:24 -04:00 committed by GitHub
parent 8d0fcc04f9
commit 8a792e1803
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,7 @@ export default {
if (!this.withoutRecord && this.$route.query.action !== this.documentActions.recordUuid) {
this.$store.dispatch('listDocumentActionStatus', {
recordUuid: this.$route.query.action,
tableName: this.$route.params.tableName,
recordId: this.$route.params.recordId
})
}

View File

@ -170,6 +170,7 @@ export default {
if (!this.withoutRecord && this.$route.query.action !== this.documentActions.recordUuid) {
this.$store.dispatch('listDocumentActionStatus', {
recordUuid: this.$route.query.action,
tableName: this.$route.params.tableName,
recordId: this.$route.params.recordId
})
}