refs #7283 fix itemMigration list filters
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
54015fb6bf
commit
55ddc8644f
|
@ -208,6 +208,9 @@ const columns = computed(() => [
|
|||
columnField: {
|
||||
component: null,
|
||||
},
|
||||
columnFilter: {
|
||||
inWhere: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
label: t('item.list.stemMultiplier'),
|
||||
|
@ -217,11 +220,14 @@ const columns = computed(() => [
|
|||
columnField: {
|
||||
component: null,
|
||||
},
|
||||
columnFilter: {
|
||||
inWhere: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
label: t('item.list.isActive'),
|
||||
name: 'isActive',
|
||||
align: 'left',
|
||||
align: 'center',
|
||||
component: 'checkbox',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -29,6 +29,7 @@ const store = arrayData.store;
|
|||
|
||||
const userParams = {
|
||||
state: 'pending',
|
||||
daysOnward: 7,
|
||||
};
|
||||
|
||||
const tableRef = ref();
|
||||
|
@ -120,7 +121,7 @@ const columns = computed(() => [
|
|||
{
|
||||
align: 'left',
|
||||
name: 'daysOnward',
|
||||
label: t('item.buyRequest.daysOnward'),
|
||||
label: t('travel.travelList.tableVisibleColumns.daysOnward'),
|
||||
visible: false,
|
||||
columnFilter: {
|
||||
inWhere: false,
|
||||
|
|
Loading…
Reference in New Issue