docs: 📝 配置key改为配置键

配置key改为配置键
This commit is contained in:
胡少翔
2024-07-31 09:26:59 +08:00
parent 49f42bae7c
commit 2ce7c9c328
2 changed files with 6 additions and 6 deletions

View File

@@ -81,7 +81,7 @@ export interface ConfigForm {
id?: number;
/** 配置名称 */
configName?: string;
/** 配置key */
/** 配置 */
configKey?: string;
/** 配置值 */
configValue?: string;
@@ -95,7 +95,7 @@ export interface ConfigPageVO {
id?: number;
/** 配置名称 */
configName?: string;
/** 配置key */
/** 配置 */
configKey?: string;
/** 配置值 */
configValue?: string;

View File

@@ -6,7 +6,7 @@
<el-form-item label="关键字" prop="keywords">
<el-input
v-model="queryParams.keywords"
placeholder="请输入配置key\配置名称"
placeholder="请输入配置\配置名称"
clearable
@keyup.enter="handleQuery"
/>
@@ -60,7 +60,7 @@
/>
<el-table-column
key="configKey"
label="配置key"
label="配置"
prop="configKey"
min-width="100"
/>
@@ -131,8 +131,8 @@
placeholder="请输入配置名称"
/>
</el-form-item>
<el-form-item label="配置key" prop="configKey">
<el-input v-model="formData.configKey" placeholder="请输入配置key" />
<el-form-item label="配置" prop="configKey">
<el-input v-model="formData.configKey" placeholder="请输入配置" />
</el-form-item>
<el-form-item label="配置值" prop="configValue">
<el-input v-model="formData.configValue" placeholder="请输入配置值" />