1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
| <template>
| <BasicModal
| v-bind="$attrs"
| @register="register"
| :title="t('添加储区')"
| @visible-change="handleVisibleChange"
| @ok="handleSubmit"
| >
| <div class="pt-3px pr-3px">
| <BasicForm @register="registerForm" :model="model" />
| </div>
| </BasicModal>
| </template>
| <script lang="ts">
| import { defineComponent, ref, unref } from 'vue';
| import { BasicModal, useModalInner } from '/@/components/Modal';
| import { BasicForm, FormSchema, useForm } from '/@/components/Form/index';
| import { SaveRegion } from '/@/api/tigerapi/wms/house';
| import { useMessage } from '/@/hooks/web/useMessage';
| import { useI18n } from '/@/hooks/web/useI18n';
|
| const { t } = useI18n('WMS.WareHouse');
|
| const schemas: FormSchema[] = [
| {
| field: 'REGION_NAME',
| component: 'Input',
| label: t('储区名称'),
| defaultValue: '',
| colProps: {
| span: 24,
| },
| required: true,
| },
| {
| field: 'REGION_CODE',
| component: 'Input',
| label: t('储区代码'),
| defaultValue: '',
| colProps: {
| span: 24,
| },
| required: true,
| },
|
| {
| field: 'field1',
| component: 'Input',
| label: 'wh_code',
| colProps: {
| span: 24,
| },
| show: false,
| },
| {
| field: 'field2',
| component: 'Input',
| label: 'org_code',
| colProps: {
| span: 24,
| },
| show: false,
| },
| ];
| export default defineComponent({
| components: { BasicModal, BasicForm },
| props: {
| userData: { type: Object },
| },
| emit: ['success', 'register'],
| setup(_, { emit }) {
| const modelRef = ref({});
| const { createMessage } = useMessage();
| const [
| registerForm,
| {
| // setFieldsValue,
| // setProps
| validate,
| },
| ] = useForm({
| labelWidth: 120,
| schemas,
| showActionButtonGroup: false,
| actionColOptions: {
| span: 24,
| },
| });
|
| const [register, { setModalProps, closeModal }] = useModalInner((data) => {
| setModalProps({ confirmLoading: false });
| data && onDataReceive(data);
| });
|
| function onDataReceive(data) {
| console.log('Data Received', data);
| // 方式1;
| // setFieldsValue({
| // field2: data.data,
| // field1: data.info,
| // });
|
| // // 方式2
| modelRef.value = { field2: data.data, field1: data.info };
|
| // setProps({
| // model:{ field2: data.data, field1: data.info }
| // })
| }
|
| // function handleVisibleChange(v) {
| // v && props.userData && nextTick(() => onDataReceive(props.userData));
| // }
|
| async function handleSubmit() {
| try {
| const values = await validate();
| setModalProps({ confirmLoading: true });
| // TODO custom api
| //保存用户
| const apiAction = SaveRegion(values, unref(false));
| apiAction.then((action) => {
| console.log('action', action);
| if (action.IsSuccessed) {
| closeModal();
| createMessage.success(t('添加成功'));
| emit('success', {
| isUpdate: unref(false),
| values: { ...values, id: 0 },
| });
| } else {
| createMessage.error(t('添加失败,此仓库代码在该储区已存在'));
| }
| });
| } finally {
| setModalProps({ confirmLoading: false });
| }
| }
|
| return { register, schemas, registerForm, model: modelRef, handleSubmit, t };
| },
| });
| </script>
|
|