Przeglądaj źródła

fix: 切换租户】取消切换租户提示语建议更改为取消切换

qindao 1 rok temu
rodzic
commit
74cb52b624

+ 1 - 1
src/layout/components/Header/SwitchTenant.vue

@@ -72,7 +72,7 @@ const handleChange = (targetTenantId: string) => {
   }).catch(() => {
     ElMessage({
       type: 'info',
-      message: '取消删除',
+      message: '取消切换',
     });
   });
 };

+ 1 - 0
src/views/system/log/components/LoginLog.vue

@@ -84,6 +84,7 @@
       </el-table>
 
       <section class="mt-4 flex justify-end">
+        <!-- 分页组件,显示总条目数、每页显示条目数选择器、上一页、页码、下一页 -->
         <el-pagination background layout="total, sizes, prev, pager, next" :page-sizes="[10, 30, 50]" :total="total"
           v-model:page-size="requestParams.pageSize" v-model:current-page="requestParams.pageNumber"
           @change="queryLoginLogPage" />