fix: 系统参数编辑和查询问题

This commit is contained in:
DaxPay
2025-02-06 13:51:15 +08:00
parent 73ce82fa4e
commit 98aad8d688
3 changed files with 8 additions and 8 deletions

View File

@@ -2,18 +2,18 @@
VITE_GLOB_APP_TITLE=DaxPay服务端 VITE_GLOB_APP_TITLE=DaxPay服务端
# 独立部署模式 # 独立部署模式
VITE_PUBLIC_PATH=/ #VITE_PUBLIC_PATH=/
# API 接口前缀 ## API 接口前缀
VITE_GLOB_API_URL_PREFIX=/server #VITE_GLOB_API_URL_PREFIX=/server
# 嵌入式模式 与后端部署在一起 # 嵌入式模式 与后端部署在一起
#VITE_PUBLIC_PATH=/web VITE_PUBLIC_PATH=/web
# API 接口前缀 # API 接口前缀
#VITE_GLOB_API_URL_PREFIX= VITE_GLOB_API_URL_PREFIX=
# 是否启用gzip压缩或brotli压缩, 可选: gzip | brotli | none, 如果你需要多种形式,你可以用','来分隔 # 是否启用gzip压缩或brotli压缩, 可选: gzip | brotli | none, 如果你需要多种形式,你可以用','来分隔
VITE_BUILD_COMPRESS='gzip' VITE_BUILD_COMPRESS='none'
# 接口地址 # 接口地址
VITE_GLOB_API_URL= VITE_GLOB_API_URL=

View File

@@ -27,7 +27,7 @@
placeholder="请输入参数名称" placeholder="请输入参数名称"
/> />
</a-form-item> </a-form-item>
<a-form-item label="参数Key" name="key"> <a-form-item label="参数Key" name="paramKey">
<a-input <a-input
v-model:value="form.paramKey" v-model:value="form.paramKey"
:disabled="showable || form.internal" :disabled="showable || form.internal"

View File

@@ -109,7 +109,7 @@
// 查询条件 // 查询条件
const fields = [ const fields = [
{ field: 'name', type: STRING, name: '参数名称', placeholder: '请输入参数名称' }, { field: 'name', type: STRING, name: '参数名称', placeholder: '请输入参数名称' },
{ field: 'key', type: STRING, name: '参数Key', placeholder: '请输入参数Key' }, { field: 'paramKey', type: STRING, name: '参数Key', placeholder: '请输入参数Key' },
] as QueryField[] ] as QueryField[]
const xTable = ref<VxeTableInstance>() const xTable = ref<VxeTableInstance>()