fix:sort
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 6m0s

This commit is contained in:
luo
2026-06-22 11:09:50 +08:00
parent d3b5f55c64
commit ebf9739f06
8 changed files with 86 additions and 59 deletions

View File

@@ -8,7 +8,6 @@
:items="searchFormItems"
:gutter="16"
:el-col-span="6"
label-width="100"
:show-expand="false"
@reset="handleReset"
@search="handleSearch"
@@ -569,7 +568,7 @@
}
},
{
label: '主账号用户名',
label: '用户名',
prop: 'username',
type: 'input',
config: {

View File

@@ -9,7 +9,7 @@
<ArtSearchBar
v-model:filter="commissionSearchForm"
:items="commissionSearchItems"
:show-expand="false"
show-expand
@reset="handleCommissionReset"
@search="handleCommissionSearch"
/>
@@ -273,7 +273,7 @@
}
},
{
label: '状态',
label: '结算状态',
prop: 'status',
type: 'select',
options: [
@@ -315,7 +315,7 @@
}
},
{
label: '时间范围',
label: '起止时间',
prop: 'dateRange',
type: 'date',
config: {
@@ -518,7 +518,7 @@
// 搜索表单配置
const withdrawalSearchItems = computed<SearchFormItem[]>(() => [
{
label: '状态',
label: '审核状态',
prop: 'status',
type: 'select',
options: [
@@ -533,7 +533,7 @@
}
},
{
label: '时间范围',
label: '起止时间',
prop: 'dateRange',
type: 'date',
config: {

View File

@@ -6,7 +6,6 @@
v-model:filter="searchForm"
:items="searchFormItems"
show-expand
label-width="100"
@reset="handleReset"
@search="handleSearch"
></ArtSearchBar>
@@ -152,17 +151,17 @@
}
},
{
label: '状态',
label: '审核状态',
prop: 'status',
type: 'select',
options: withdrawalStatusOptions,
config: {
clearable: true,
placeholder: '请选择状态'
placeholder: '请选择审核状态'
}
},
{
label: '开始至结束',
label: '起止时间',
prop: 'dateRange',
type: 'date',
config: {