修复资料中心的访问路径bug
This commit is contained in:
@@ -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: [
|
||||
|
||||
Reference in New Issue
Block a user