浏览代码

!301 fix 修复 租户套餐导出接口地址错误 修复 删除弹窗提示错误
fix 修复 租户套餐导出接口地址错误
fix 修复 删除弹窗提示错误

Yjoioooo 2 年之前
父节点
当前提交
a3ecc71558
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      ruoyi-ui/src/views/system/tenant/index.vue
  2. 1 1
      ruoyi-ui/src/views/system/tenantPackage/index.vue

+ 1 - 1
ruoyi-ui/src/views/system/tenant/index.vue

@@ -401,7 +401,7 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除租户编号为"' + ids + '"的数据项?').then(() => {
+      this.$modal.confirm('是否确认删除租户编号为"' + row.tenantId + '"的数据项?').then(() => {
         this.loading = true;
         return delTenant(ids);
       }).then(() => {

+ 1 - 1
ruoyi-ui/src/views/system/tenantPackage/index.vue

@@ -379,7 +379,7 @@ export default {
     },
     /** 导出按钮操作 */
     handleExport() {
-      this.download('system/tenantPackage/export', {
+      this.download('system/tenant/package/export', {
         ...this.queryParams
       }, `tenantPackage_${new Date().getTime()}.xlsx`)
     }