From 9259c2235e31708f954a3578bde3c6a7ab9753e8 Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期一, 30 十二月 2024 15:51:40 +0800 Subject: [PATCH] 1、工作流相关组件更新 2、偶尔出现退出登录时路由报错的bug导致无法回到登录页面 3、全局配置文件修改,移除VITE_UPLOAD_URL配置等 --- src/views/model/chart/param/index.vue | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/views/model/chart/param/index.vue b/src/views/model/chart/param/index.vue index 1bbc4dc..8714213 100644 --- a/src/views/model/chart/param/index.vue +++ b/src/views/model/chart/param/index.vue @@ -2,8 +2,8 @@ <el-drawer v-model="drawer" size="40%" - title="分组列表" - :direction="direction" + title="参数列表" + direction="rtl" :before-close="handleClose" > <!-- 搜索工作栏 --> @@ -18,7 +18,7 @@ <el-form-item label="参数名称" prop="paramName"> <el-input v-model="queryParams.paramName" - placeholder="请输入" + placeholder="请输入参数名称" clearable class="!w-240px" /> @@ -106,7 +106,6 @@ const {t} = useI18n() // 国际化 const drawer = ref(false) -const direction = ref<DrawerProps['direction']>('rtl') const loading = ref(true) // 列表的加载中 const total = ref(0) // 列表的总页数 const list = ref([]) // 字典表格数据 -- Gitblit v1.9.3