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: {
|
columnField: {
|
||||||
component: null,
|
component: null,
|
||||||
},
|
},
|
||||||
|
columnFilter: {
|
||||||
|
inWhere: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: t('item.list.stemMultiplier'),
|
label: t('item.list.stemMultiplier'),
|
||||||
|
@ -217,11 +220,14 @@ const columns = computed(() => [
|
||||||
columnField: {
|
columnField: {
|
||||||
component: null,
|
component: null,
|
||||||
},
|
},
|
||||||
|
columnFilter: {
|
||||||
|
inWhere: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: t('item.list.isActive'),
|
label: t('item.list.isActive'),
|
||||||
name: 'isActive',
|
name: 'isActive',
|
||||||
align: 'left',
|
align: 'center',
|
||||||
component: 'checkbox',
|
component: 'checkbox',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -29,6 +29,7 @@ const store = arrayData.store;
|
||||||
|
|
||||||
const userParams = {
|
const userParams = {
|
||||||
state: 'pending',
|
state: 'pending',
|
||||||
|
daysOnward: 7,
|
||||||
};
|
};
|
||||||
|
|
||||||
const tableRef = ref();
|
const tableRef = ref();
|
||||||
|
@ -120,7 +121,7 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'daysOnward',
|
name: 'daysOnward',
|
||||||
label: t('item.buyRequest.daysOnward'),
|
label: t('travel.travelList.tableVisibleColumns.daysOnward'),
|
||||||
visible: false,
|
visible: false,
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
inWhere: false,
|
inWhere: false,
|
||||||
|
|
Loading…
Reference in New Issue