adjustment

This commit is contained in:
2023-07-27 10:03:53 +08:00
parent 3e9ee59178
commit 29209a3a00
17 changed files with 456 additions and 173 deletions

View File

@ -1,7 +1,7 @@
import { Grid, Dropdown, createElement, createCheckbox, Popup, showAlert } from "../../ui";
import { isEmail, nullOrEmpty, r } from "../../utility";
class Contact {
export class Contact {
#option;
#refs;
@ -191,7 +191,7 @@ class Contact {
}
}
class CustomerRecordContact {
export class CustomerRecordContact {
#option;
#grid;
@ -252,6 +252,4 @@ class CustomerRecordContact {
this.#grid.source = contacts;
}
}
}
export { Contact, CustomerRecordContact };
}