[ルックアップ更新]条件式の不具合対応

This commit is contained in:
xiaozhe.ma
2024-08-29 12:33:00 +09:00
parent 60359ed9bd
commit 5fc03c6fe0
9 changed files with 965 additions and 27 deletions

View File

@@ -139,12 +139,12 @@ const columns = [
{ name: 'kintoneuser', label: 'User', field: 'kintoneuser', sortable: true },
{ name: 'kintonepwd' },
{ name: 'active', field: 'active' }
]
const userDomainTableFilter = ref()
];
const userDomainTableFilter = ref();
const currentUserName = ref('')
const currentUserName = ref('');
const useOtherUser = ref(false);
const otherUserId = ref('')
const otherUserId = ref('');
let editId = ref(0);
@@ -168,7 +168,7 @@ const addUserDomainFinished = (val: string) => {
}
};
const showDeleteConfirm = ref(false)
const showDeleteConfirm = ref(false);
const clickDeleteConfirm = (row: any) => {
showDeleteConfirm.value = true;