mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
feat(form): formState现在,
This commit is contained in:
parent
9948360435
commit
e3f6ef48e6
@ -31,7 +31,7 @@
|
|||||||
import { provide, reactive, ref, shallowRef, toRaw, watch, watchEffect } from 'vue';
|
import { provide, reactive, ref, shallowRef, toRaw, watch, watchEffect } from 'vue';
|
||||||
import { cloneDeep, isEqual } from 'lodash-es';
|
import { cloneDeep, isEqual } from 'lodash-es';
|
||||||
|
|
||||||
import { TMagicForm } from '@tmagic/design';
|
import { TMagicForm, tMagicMessage, tMagicMessageBox } from '@tmagic/design';
|
||||||
|
|
||||||
import Container from './containers/Container.vue';
|
import Container from './containers/Container.vue';
|
||||||
import { getConfig } from './utils/config';
|
import { getConfig } from './utils/config';
|
||||||
@ -106,6 +106,8 @@ const formState: FormState = reactive<FormState>({
|
|||||||
setField: (prop: string, field: any) => fields.set(prop, field),
|
setField: (prop: string, field: any) => fields.set(prop, field),
|
||||||
getField: (prop: string) => fields.get(prop),
|
getField: (prop: string) => fields.get(prop),
|
||||||
deleteField: (prop: string) => fields.delete(prop),
|
deleteField: (prop: string) => fields.delete(prop),
|
||||||
|
$messageBox: tMagicMessageBox,
|
||||||
|
$message: tMagicMessage,
|
||||||
post: (options: any) => {
|
post: (options: any) => {
|
||||||
if (requestFuc) {
|
if (requestFuc) {
|
||||||
return requestFuc({
|
return requestFuc({
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import type { TMagicMessage, TMagicMessageBox } from '@tmagic/design';
|
||||||
|
|
||||||
export interface ValidateError {
|
export interface ValidateError {
|
||||||
message: string;
|
message: string;
|
||||||
field: string;
|
field: string;
|
||||||
@ -59,6 +61,8 @@ export type FormState = {
|
|||||||
setField: (prop: string, field: any) => void;
|
setField: (prop: string, field: any) => void;
|
||||||
getField: (prop: string) => any;
|
getField: (prop: string) => any;
|
||||||
deleteField: (prop: string) => any;
|
deleteField: (prop: string) => any;
|
||||||
|
$messageBox: TMagicMessageBox;
|
||||||
|
$message: TMagicMessage;
|
||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user