|
@@ -0,0 +1,193 @@
|
|
|
+<template>
|
|
|
+ <BasicModal
|
|
|
+ v-bind="$attrs"
|
|
|
+ @register="register"
|
|
|
+ title="新增子账号"
|
|
|
+ @visible-change="handleVisibleChange"
|
|
|
+ @ok="handleSubmit"
|
|
|
+ >
|
|
|
+ <div class="pt-2px pr-3px">
|
|
|
+ <BasicForm @register="registerForm" :model="model" />
|
|
|
+ </div>
|
|
|
+ </BasicModal>
|
|
|
+</template>
|
|
|
+<script lang="ts">
|
|
|
+ import { defineComponent, ref, nextTick } from 'vue';
|
|
|
+ import { BasicModal, useModalInner } from '/@/components/Modal';
|
|
|
+ import { BasicForm, FormSchema, useForm } from '/@/components/Form/index';
|
|
|
+ import { useMessage } from '/@/hooks/web/useMessage';
|
|
|
+ import { checkUserAddAble } from '/@/api/corporation/modal';
|
|
|
+ import { useI18n } from '/@/hooks/web/useI18n';
|
|
|
+ // address: "11111"
|
|
|
+ // balance: "111"
|
|
|
+ // cameraType: "4"
|
|
|
+ // childName: "11111"
|
|
|
+ // companyId: 1146
|
|
|
+ // orderSn: "1111"
|
|
|
+ // own: "0"
|
|
|
+ // rnd: 0.9923218970879999
|
|
|
+ // snCode: "1111"
|
|
|
+ // wifiName: "1111"
|
|
|
+ const { t } = useI18n();
|
|
|
+ const schemas: FormSchema[] = [
|
|
|
+ {
|
|
|
+ field: 'own',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.devices.own'),
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ componentProps: {
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ label: '全部',
|
|
|
+ value: '1',
|
|
|
+ key: '1',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '正常',
|
|
|
+ value: '2',
|
|
|
+ key: '2',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '已关闭',
|
|
|
+ value: '2',
|
|
|
+ key: '2',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'cameraType',
|
|
|
+ component: 'Select',
|
|
|
+ label: t('routes.devices.cameraType'),
|
|
|
+ required: true,
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'childName',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.devices.childName'),
|
|
|
+ required: true,
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'wifiName',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.devices.wifiName'),
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'address',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.devices.address'),
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'balance',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.devices.balance'),
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'orderSn',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.devices.orderSn'),
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'companyId',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.devices.companyId'),
|
|
|
+ colProps: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ export default defineComponent({
|
|
|
+ components: { BasicModal, BasicForm },
|
|
|
+ props: {
|
|
|
+ userData: { type: Object },
|
|
|
+ },
|
|
|
+ setup(props) {
|
|
|
+ const modelRef = ref({});
|
|
|
+ const { createMessage } = useMessage();
|
|
|
+ const [
|
|
|
+ registerForm,
|
|
|
+ {
|
|
|
+ getFieldsValue,
|
|
|
+ // setFieldsValue,
|
|
|
+ // setProps
|
|
|
+ },
|
|
|
+ ] = useForm({
|
|
|
+ labelWidth: 120,
|
|
|
+ schemas,
|
|
|
+ showActionButtonGroup: false,
|
|
|
+ actionColOptions: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ let addListFunc = () => {};
|
|
|
+ const [register, { closeModal }] = useModalInner((data) => {
|
|
|
+ data && onDataReceive(data);
|
|
|
+ });
|
|
|
+
|
|
|
+ function onDataReceive(data) {
|
|
|
+ console.log('Data Received', data);
|
|
|
+ const { addList } = data;
|
|
|
+ if (typeof addList === 'function') {
|
|
|
+ //是函数 其中 FunName 为函数名称
|
|
|
+ addListFunc = addList;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ const handleSubmit = async () => {
|
|
|
+ console.log('getFieldsValue()', getFieldsValue());
|
|
|
+ var reg_tel =
|
|
|
+ /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/;
|
|
|
+ let { phone, memoName } = getFieldsValue();
|
|
|
+ if (phone == '') {
|
|
|
+ createMessage.error('请填写您的手机号码!');
|
|
|
+ return false;
|
|
|
+ } else if (!reg_tel.test(phone)) {
|
|
|
+ createMessage.error('请正确填写您的手机号码!');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ let res = await checkUserAddAble({ phone });
|
|
|
+ if (res.result == false) {
|
|
|
+ addListFunc({ phone, memoName });
|
|
|
+ closeModal();
|
|
|
+ } else {
|
|
|
+ createMessage.error('子账号已被该企业绑定');
|
|
|
+ }
|
|
|
+ };
|
|
|
+ function handleVisibleChange(v) {
|
|
|
+ v && props.userData && nextTick(() => onDataReceive(props.userData));
|
|
|
+ }
|
|
|
+
|
|
|
+ return {
|
|
|
+ register,
|
|
|
+ schemas,
|
|
|
+ registerForm,
|
|
|
+ model: modelRef,
|
|
|
+ handleVisibleChange,
|
|
|
+ handleSubmit,
|
|
|
+ addListFunc,
|
|
|
+ closeModal,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ });
|
|
|
+</script>
|