eslint
This commit is contained in:
parent
7a9d075ecc
commit
a425f3857f
@ -113,7 +113,7 @@ export default function BelongPeople(props: propsInfo) {
|
||||
// 所属者表格选择触发
|
||||
const belongRowSelection = {
|
||||
// selectedRowKeys: React.Key[]
|
||||
onChange: (selectedRowKeys: React.Key[], selectedRows: BelongDataType[]) => {
|
||||
onChange: (_selectedRowKeys: React.Key[], selectedRows: BelongDataType[]) => {
|
||||
// console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
||||
setauthorName(selectedRows[0].name)
|
||||
setauthorIdCardType(selectedRows[0].idCardType)
|
||||
|
@ -261,7 +261,7 @@ export default function ContactPeople(props: any) {
|
||||
{/* <Column title="实名认证状态" dataIndex="address" key="key" /> */}
|
||||
<Column
|
||||
title="操作"
|
||||
render={(text, record: any) => (
|
||||
render={(_text, record: any) => (
|
||||
<Space size="middle">
|
||||
<a onClick={() => {
|
||||
// alert(record.projOwnerId);
|
||||
@ -328,7 +328,7 @@ export default function ContactPeople(props: any) {
|
||||
{/* <Column title="实名认证状态" dataIndex="address" key="key" /> */}
|
||||
<Column
|
||||
title="操作"
|
||||
render={(text, record: any) => (
|
||||
render={(_text, record: any) => (
|
||||
<Space size="middle">
|
||||
<a onClick={() => {
|
||||
// alert(record.projOwnerId);
|
||||
|
@ -3,21 +3,19 @@ import './card-proj.css';
|
||||
import {
|
||||
CheckOutlined,
|
||||
ClockCircleOutlined,
|
||||
CloseCircleOutlined, DeleteOutlined,
|
||||
DownloadOutlined, DownOutlined,
|
||||
CloseCircleOutlined,
|
||||
DownloadOutlined,
|
||||
EditOutlined,
|
||||
EyeOutlined,
|
||||
LoadingOutlined,
|
||||
SearchOutlined,
|
||||
WarningOutlined,
|
||||
FolderOutlined
|
||||
} from '@ant-design/icons';
|
||||
import { Button, Dropdown, Tag, Modal, Carousel } from 'antd';
|
||||
import { Button, Tag, Modal, Carousel } from 'antd';
|
||||
import { GenerateStatus, ProjChargeType } from "../../interfaces/proj/IProj.ts";
|
||||
import { useNavigate } from "react-router-dom";
|
||||
import { Axios, post, downloadUrl, get } from "../../util/AjaxUtils.ts";
|
||||
import { useContext, useEffect, useState } from "react";
|
||||
import { IndexListContext } from "../../context/IndexListContext.ts";
|
||||
import { Axios, post, downloadUrl } from "../../util/AjaxUtils.ts";
|
||||
import {useEffect, useState } from "react";
|
||||
import useMessage from "antd/es/message/useMessage";
|
||||
import setImg from '../../static/right/set.png'
|
||||
import orderImg from '../../static/right/order.png'
|
||||
|
@ -755,7 +755,7 @@ export default function ProjEditStep2(props: any) {
|
||||
{/* <Column title="实名认证状态" dataIndex="address" key="key" /> */}
|
||||
<Column
|
||||
title="操作"
|
||||
render={(text, record: any) => (
|
||||
render={(_text, record: any) => (
|
||||
<Space size="middle">
|
||||
<a onClick={() => {
|
||||
|
||||
@ -903,7 +903,7 @@ export default function ProjEditStep2(props: any) {
|
||||
{/* <Column title="实名认证状态" dataIndex="address" key="key" /> */}
|
||||
<Column
|
||||
title="操作"
|
||||
render={(text, record: any) => (
|
||||
render={(_text, record: any) => (
|
||||
<Space size="middle">
|
||||
<a onClick={() => {
|
||||
// alert(record.projOwnerId);
|
||||
|
@ -118,7 +118,7 @@ export default function ProjEditStep2() {
|
||||
// 所属者表格选择触发
|
||||
const belongRowSelection = {
|
||||
// selectedRowKeys: React.Key[]
|
||||
onChange: (selectedRowKeys: React.Key[], selectedRows: BelongDataType[]) => {
|
||||
onChange: (_selectedRowKeys: React.Key[], selectedRows: BelongDataType[]) => {
|
||||
// console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
||||
setauthorName(selectedRows[0].name)
|
||||
setauthorIdCardType(selectedRows[0].idCardType)
|
||||
@ -138,7 +138,7 @@ export default function ProjEditStep2() {
|
||||
// 联系人表格选择触发
|
||||
const ContantRowSelection = {
|
||||
// selectedRowKeys: React.Key[]
|
||||
onChange: (selectedRowKeys: React.Key[], selectedRows: ContactDataType[]) => {
|
||||
onChange: (_selectedRowKeys: React.Key[], selectedRows: ContactDataType[]) => {
|
||||
// console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
||||
setApplyConcatId(selectedRows[0].projContactId)
|
||||
setapplyContactCsaNo(selectedRows[0].csaNo)
|
||||
|
Loading…
Reference in New Issue
Block a user