Commit fcd1de88fb178529e64d7a13455776321664b90d
1 parent
d19cd895
perf(src/packages): 重写基础分页表格,优化搜索框里的文字
Showing
2 changed files
with
3 additions
and
3 deletions
... | ... | @@ -2,8 +2,8 @@ |
2 | 2 | <div class="go-tables-basic"> |
3 | 3 | <n-space> |
4 | 4 | <n-form v-if="inputShow" :model="dynamicForm" :style="{ maxWidth: '640px' }" inline> |
5 | - <n-form-item v-for="(item, index) in dynamicForm.keys" :key="index" :label="`${item.key.split(',').at(-2)}`"> | |
6 | - <n-input v-model:value="item.value" clearable> | |
5 | + <n-form-item v-for="(item, index) in dynamicForm.keys" :key="index" > | |
6 | + <n-input v-model:value="item.value" clearable :placeholder=" `请输入${item.key.split(',').at(-2)}`"> | |
7 | 7 | <template #prefix> |
8 | 8 | <n-icon :component="SearchIcon" /> |
9 | 9 | </template> | ... | ... |