style: 优化开票记录搜索表单对齐样式
- 统一所有搜索条件标签宽度为80px - 设置各输入框固定宽度,提升视觉一致性
This commit is contained in:
parent
a797d29c68
commit
c66d0dffde
@ -344,26 +344,27 @@ const validateForm = {
|
||||
type="daterange"
|
||||
clearable
|
||||
placeholder="请选择提交时间"
|
||||
style="width: 240px"
|
||||
style="width: 280px"
|
||||
@update:value="$table?.handleSearch()"
|
||||
/>
|
||||
</QueryBarItem>
|
||||
<QueryBarItem label="手机号" :label-width="60">
|
||||
<QueryBarItem label="手机号" :label-width="80">
|
||||
<NInput
|
||||
v-model:value="queryItems.phone"
|
||||
clearable
|
||||
type="text"
|
||||
placeholder="请输入手机号"
|
||||
style="width: 200px"
|
||||
@keypress.enter="$table?.handleSearch()"
|
||||
/>
|
||||
</QueryBarItem>
|
||||
<QueryBarItem label="状态" :label-width="40">
|
||||
<QueryBarItem label="状态" :label-width="80">
|
||||
<NSelect
|
||||
v-model:value="queryItems.status"
|
||||
:options="statusOptions"
|
||||
placeholder="请选择状态"
|
||||
clearable
|
||||
style="width: 150px"
|
||||
style="width: 200px"
|
||||
@update:value="$table?.handleSearch()"
|
||||
/>
|
||||
</QueryBarItem>
|
||||
@ -373,6 +374,7 @@ const validateForm = {
|
||||
clearable
|
||||
type="text"
|
||||
placeholder="请输入公司名称"
|
||||
style="width: 200px"
|
||||
@keypress.enter="$table?.handleSearch()"
|
||||
/>
|
||||
</QueryBarItem>
|
||||
@ -382,6 +384,7 @@ const validateForm = {
|
||||
clearable
|
||||
type="text"
|
||||
placeholder="请输入公司税号"
|
||||
style="width: 200px"
|
||||
@keypress.enter="$table?.handleSearch()"
|
||||
/>
|
||||
</QueryBarItem>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user