|
@@ -1,16 +1,16 @@
|
|
|
import { BasicColumn } from '/@/components/Table';
|
|
|
import { FormSchema } from '/@/components/Form/index';
|
|
|
import { h } from 'vue';
|
|
|
-import Input from './components/Input.vue';
|
|
|
-import InputTextArea from './components/InputTextArea.vue';
|
|
|
-import InputNumber from './components/InputNumber.vue';
|
|
|
-import ArrayCom from './components/ArrayCom.vue';
|
|
|
-import Select from './components/Select.vue';
|
|
|
-import Checkbox from './components/Checkbox.vue';
|
|
|
-import Radio from './components/Radio.vue';
|
|
|
-import DatePicker from './components/DatePicker.vue';
|
|
|
-import TimePicker from './components/TimePicker.vue';
|
|
|
-import Switch from './components/Switch.vue';
|
|
|
+import Input from './customComponents/Input.vue';
|
|
|
+import InputTextArea from './customComponents/InputTextArea.vue';
|
|
|
+import InputNumber from './customComponents/InputNumber.vue';
|
|
|
+import ArrayCom from './customComponents/ArrayCom.vue';
|
|
|
+import Select from './customComponents/Select.vue';
|
|
|
+import Checkbox from './customComponents/Checkbox.vue';
|
|
|
+import Radio from './customComponents/Radio.vue';
|
|
|
+import DatePicker from './customComponents/DatePicker.vue';
|
|
|
+import TimePicker from './customComponents/TimePicker.vue';
|
|
|
+import Switch from './customComponents/Switch.vue';
|
|
|
|
|
|
export const columns: BasicColumn[] = [
|
|
|
{
|
|
@@ -290,6 +290,36 @@ export const schemas: FormSchema[] = [
|
|
|
value: 'IDcard',
|
|
|
key: 'IDcard',
|
|
|
},
|
|
|
+ {
|
|
|
+ label: '座机电话(tel)',
|
|
|
+ value: 'tel',
|
|
|
+ key: 'tel',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '手机(mobile)',
|
|
|
+ value: 'mobile',
|
|
|
+ key: 'mobile',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '邮编(zipcode)',
|
|
|
+ value: 'zipcode',
|
|
|
+ key: 'zipcode',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '中文(chinese)',
|
|
|
+ value: 'chinese',
|
|
|
+ key: 'chinese',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '用户名(username)',
|
|
|
+ value: 'username',
|
|
|
+ key: 'username',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '密码(password)',
|
|
|
+ value: 'password',
|
|
|
+ key: 'password',
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
},
|