This commit is contained in:
2020-12-22 15:21:11 +00:00
parent e0b70a49e3
commit 295cf4c0c4
4 changed files with 28 additions and 11 deletions

View File

@@ -305,8 +305,8 @@ export default {
vm.$router.push({
name: "home-reviews",
params: {
objectType: Number.parseInt(item.data.ayaType),
objectId: Number.parseInt(item.data.recordId),
objectType: Number.parseInt(item.data.ayaType, 10),
objectId: Number.parseInt(item.data.recordId, 10),
name: objName
}
});