修复资料中心的访问路径bug

This commit is contained in:
zer0Black
2023-09-29 14:55:58 +08:00
parent 51ba14167d
commit a8f138d476
2 changed files with 4 additions and 4 deletions
@@ -526,7 +526,7 @@ export default {
this.$confirm({
content: this.$t('confirmDeletion'),
onOk: () => {
deleteAction('com.jero.modules.extRepo/extRepoData/delete', { id: val.id }).then((res) => {
deleteAction('extRepo/extRepoData/delete', { id: val.id }).then((res) => {
if (res.success) {
this.$message.success(res.message)
this.loadData()
@@ -544,7 +544,7 @@ export default {
content: this.$t('confirmBatchDeletion'),
onOk: () => {
const idList = this.selectedRowKeys
deleteAction('com.jero.modules.extRepo/extRepoData/deleteBatch', { ids: idList.join(',') }).then((res) => {
deleteAction('extRepo/extRepoData/deleteBatch', { ids: idList.join(',') }).then((res) => {
if (res.success) {
this.$message.success(res.message)
this.selectedRowKeys = []
@@ -72,8 +72,8 @@ export default {
menuId: '',
visible: false,
url: {
add: 'com.jero.modules.extRepo/extRepoData/add',
edit: 'com.jero.modules.extRepo/extRepoData/edit'
add: 'extRepo/extRepoData/add',
edit: 'extRepo/extRepoData/edit'
},
rules: {
fileDescription: [