forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-08-23 12c7589c5fde327f44c23bb1245ede3fb575957b
text:修改引入路径
5 files modified
25 ■■■■ changed files
gz-customerSystem/src/views/register/visit/component/applyDialog.jsx 4 ●●●● patch | view | raw | blame | history
gz-customerSystem/src/views/register/visit/component/detailDialog.jsx 2 ●●● patch | view | raw | blame | history
gz-customerSystem/src/views/register/visit/component/keyVisits.jsx 2 ●●● patch | view | raw | blame | history
gz-customerSystem/src/views/register/visit/component/selectUnitDialog.jsx 4 ●●●● patch | view | raw | blame | history
gz-customerSystem/src/views/register/visit/component/visitorRegister.jsx 13 ●●●● patch | view | raw | blame | history
gz-customerSystem/src/views/register/visit/component/applyDialog.jsx
@@ -1,5 +1,5 @@
import React, { useState, useEffect, useRef, Fragment } from "react";
import * as $$ from '../../../../utils/utility';
import * as $$ from '@/utils/utility';
import { Row, Col, Space } from 'antd';
import {
  CheckOutlined,
@@ -11,7 +11,7 @@
  caseperfection_legal_active,
  caseperfection_organize,
  caseperfection_organize_active,
} from '../../../../assets/images/icon';
} from '@/assets/images/icon';
import { Form, Input, Button, Radio, Select, Modal, Cascader, Upload, Message } from '@arco-design/web-react';
import KeyVisits from "./keyVisits";
import SelectUnitDialog from "./selectUnitDialog";
gz-customerSystem/src/views/register/visit/component/detailDialog.jsx
@@ -1,6 +1,6 @@
import React, { useState } from 'react'
import KeyVisits from "./keyVisits";
import { link } from '../../../../assets/images'
import { link } from '@/assets/images'
export default function DetailDialog(props) {
  const nuturalList = [
gz-customerSystem/src/views/register/visit/component/keyVisits.jsx
@@ -1,6 +1,6 @@
import React, { useState, useEffect, useRef, Fragment } from "react";
import { Row, Col, Space } from 'antd';
import TableView from '../../../../components/TableView';
import TableView from '@/components/TableView';
export default function KeyVisits(props) {
  const tagList = [{ label: '精神障碍', color: '#C64FBE' }, { label: '吸毒', color: '#D8A247' }, { label: '社区矫正', color: '#B82F6E' }, { label: '刑满释放', color: '#199C8F' }, { label: '流浪', color: '#3ECB7A' }, { label: '重点青少年', color: '#117AC1' }, { label: '涉稳涉访', color: '#6865D7' }, { label: '潜在风险', color: '#2661CE' }]
gz-customerSystem/src/views/register/visit/component/selectUnitDialog.jsx
@@ -1,6 +1,6 @@
import React, { useState, useRef } from 'react'
import TableSearch from '../../../../components/TableSearch';
import TableView from '../../../../components/TableView';
import TableSearch from '@/components/TableSearch';
import TableView from '@/components/TableView';
import { Row, Col } from 'antd';
import { Form, Input, Button, Divider } from '@arco-design/web-react';
gz-customerSystem/src/views/register/visit/component/visitorRegister.jsx
@@ -1,9 +1,8 @@
import React, { useState, useEffect, useRef } from "react";
import { Row, Col, Space, Tooltip, Button } from 'antd';
import { Form, Input, Radio, Select, DatePicker, Cascader, Modal, Upload, InputNumber } from '@arco-design/web-react';
import '@arco-themes/react-gzzz/index.less';
import PersonCard from '../../../../components/personCard';
import * as $$ from '../../../../utils/utility';
import PersonCard from '@/components/personCard';
import * as $$ from '@/utils/utility';
import {
  question1,
  applyMaterials,
@@ -11,9 +10,9 @@
  evidenceMaterials,
  evidenceMaterials_active,
} from '../../../../assets/images';
} from '@/assets/images';
import { CheckOutlined, } from '@ant-design/icons';
import TableView from '../../../../components/TableView';
import TableView from '@/components/TableView';
import '../../index.less';
import ApplyDialog from "./applyDialog";
import AgentDialog from "./agentDialog";
@@ -22,8 +21,8 @@
import NewFileCheck from '../../../filesCheck/newFileCheck';
import { IconLink } from '@arco-design/web-react/icon';
import MapView from './map'
import { scan } from '../../../../assets/images/icon'
import MyDrawer from '../../../../components/MyDrawer';
import { scan } from '@/assets/images/icon'
import MyDrawer from '@/components/MyDrawer';
const RadioGroup = Radio.Group;// 根据调解案号获取纠纷登记信息
const FormItem = Form.Item;