Commit bca25418 authored by Sixiang_Zzb's avatar Sixiang_Zzb

提交冲突

parent 4ef109a0
......@@ -66,7 +66,7 @@ const ChargeDetail = (props: any) => {
<Pagination simple defaultCurrent={curpage} total={pages * 10} onChange={pageChange} />
</div>
<>
<Tooltip title={scale == 1.3 ? '点击放大查看' + CurData.billFileUrl : '还原视图'}>
<Tooltip title={scale == 1.3 ? '点击放大查看' : '还原视图'}>
<div className={scale == 1.3 ? styles.box3out : null}>
<div className={scale == 1.3 ? styles.box3 : styles.box3of} onClick={lookup}>
<PDF
......
......@@ -10,7 +10,7 @@ import SearchOptionsCommnity from '../../../components/SearchOptions/SearchOptio
import { checkParam, RA } from '../../../utils/method'
import { validateMessages } from '@/utils/params';
import "./UsersAddInput.less"
// import "./UsersAddInput.less"
const module = "User"
......@@ -22,8 +22,9 @@ const UsersAdd = (props: any) => {
const formRef = useRef(null as any);
const [loading, setLoading] = useState(false)
const onFinish = (values: any) => {
const onFinish = (values: any) => {
console.log(values)
if (postman.extend != null) {
values.communityName = postman.extend
} else {
......@@ -57,6 +58,7 @@ const UsersAdd = (props: any) => {
}, [communityInfo])
const checkData = (rule: any, value: any, callback: any) => {
console.log(rule, value)
if (value) {
if (/^[a-zA-Z0-9]+$/g.test(value)) {
callback();
......
.box2item3___3VsZz .ant-form-item-explain {
/* .box2item3___3VsZz .ant-form-item-explain {
margin-left: -80px;
}
.box2item5___2AZ2K .ant-form-item-explain {
......@@ -9,4 +9,4 @@
}
.box2item7___ePaor .ant-form-item-explain {
margin-left: -30px;
}
} */
......@@ -108,22 +108,16 @@ const ServiceProviderManagement = (props: any) => {
}, [Data])
useEffect(() => {
//分页设置
// if (location.query.pageNum != null) {
// setPageNum(parseInt(location.query.pageNum))
// } else {
// }
setPageNum(1)
setLoading(true)
//获取数据
TosTosServiceProviderGet({
...location.query,
serviceCommunityList: (testData === null || testData.length === 0) ? CommunityList : testData,
pageNum: 1
})
}, [location])
const CallBackTitleSearch = (comment: any) => {
......
......@@ -32,9 +32,6 @@ const Login: React.FC<LoginProps> = (props) => {
const handleSubmit = (values: LoginParamsType) => {
const { dispatch } = props;
console.log({ ...values, type, userName, password });
console.log(props);
console.log(dispatch, 'dispatch');
dispatch({
type: 'login/login',
payload: { userName, password },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment