合并qzc代码
commit
2519ae0dd1
Binary file not shown.
|
After Width: | Height: | Size: 140 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 124 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 133 KiB |
|
|
@ -9,7 +9,7 @@ import {divIcon} from "leaflet";
|
|||
import { httppost2 } from '../../utils/request';
|
||||
import apiurl from '../../service/apiurl';
|
||||
import CryptoJS from 'crypto-js';
|
||||
|
||||
import { createCrudService } from '../../components/crud/_';
|
||||
const { SubMenu } = Menu;
|
||||
|
||||
const HeaderUser: React.FC<{
|
||||
|
|
@ -39,25 +39,35 @@ const HeaderUser: React.FC<{
|
|||
|
||||
|
||||
const onFinish = async (val: any) => {
|
||||
if(val.newSecretKey!==val.secondSecretKey){
|
||||
message.error('确认密码错误')
|
||||
return
|
||||
}
|
||||
const params = {
|
||||
oldSecretKey:encryptData(val.oldSecretKey),
|
||||
newSecretKey:encryptData(val.newSecretKey),
|
||||
secondSecretKey:encryptData(val.secondSecretKey),
|
||||
userId: localStorage.getItem('userId')
|
||||
}
|
||||
const res = await httppost2(apiurl.setPassword,params)
|
||||
if(res.code===200){
|
||||
message.success('修改成功')
|
||||
const path = `${apiurl.systemM.userM.updatePassword}?oldPassword=${val.oldPassword}&newPassword=${val.newPassword}`;
|
||||
createCrudService(path).userEdit().then((result) => {
|
||||
if (result?.code === 200) {
|
||||
message.success('修改成功,即将重新登录')
|
||||
setOpen(false)
|
||||
setTimeout(() => {
|
||||
logout()
|
||||
}, 1500);
|
||||
}else{
|
||||
message.error(res.description)
|
||||
}
|
||||
})
|
||||
// if(val.newSecretKey!==val.secondSecretKey){
|
||||
// message.error('确认密码错误')
|
||||
// return
|
||||
// }
|
||||
// const params = {
|
||||
// oldSecretKey:encryptData(val.oldSecretKey),
|
||||
// newSecretKey:encryptData(val.newSecretKey),
|
||||
// secondSecretKey:encryptData(val.secondSecretKey),
|
||||
// userId: localStorage.getItem('userId')
|
||||
// }
|
||||
// const res = await httppost2(apiurl.setPassword,params)
|
||||
// if(res.code===200){
|
||||
// message.success('修改成功')
|
||||
// setTimeout(() => {
|
||||
// logout()
|
||||
// }, 1500);
|
||||
// }else{
|
||||
// message.error(res.description)
|
||||
// }
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -90,7 +100,7 @@ const HeaderUser: React.FC<{
|
|||
</div>:null
|
||||
}
|
||||
|
||||
<Modal title="修改密码" open={open} onOk={()=>setOpen(false)} onCancel={()=>setOpen(false)} footer={null}>
|
||||
<Modal destroyOnClose title="修改密码" open={open} onOk={()=>setOpen(false)} onCancel={()=>setOpen(false)} footer={null}>
|
||||
<Form
|
||||
name="basic"
|
||||
labelCol={{span: 5}}
|
||||
|
|
@ -101,23 +111,23 @@ const HeaderUser: React.FC<{
|
|||
>
|
||||
<Form.Item
|
||||
label="原密码"
|
||||
name="oldSecretKey"
|
||||
name="oldPassword"
|
||||
rules={[{required: true}]}>
|
||||
<Input.Password />
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
label="新密码"
|
||||
name="newSecretKey"
|
||||
name="newPassword"
|
||||
rules={[{required: true}]}>
|
||||
<Input.Password />
|
||||
</Form.Item>
|
||||
|
||||
<Form.Item
|
||||
{/* <Form.Item
|
||||
label="确认密码"
|
||||
name="secondSecretKey"
|
||||
rules={[{required: true}]}>
|
||||
<Input.Password />
|
||||
</Form.Item>
|
||||
</Form.Item> */}
|
||||
|
||||
<Form.Item
|
||||
wrapperCol={{
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ const TopMenu: React.FC<{
|
|||
const menuClicked = (id: any) => {
|
||||
const menuItem:any = menu.find(m => m.id == id);
|
||||
if (menuItem.title === "雨水工灾情") {
|
||||
getReadStatus()
|
||||
// getReadStatus()
|
||||
}
|
||||
const url = getMenuUrl(menuItem);
|
||||
|
||||
|
|
@ -74,17 +74,17 @@ const TopMenu: React.FC<{
|
|||
* @description 由于进入雨水工灾情 初始化进入是这个页面 发请求来获取未读和已读状态
|
||||
*
|
||||
*/
|
||||
const getReadStatus = () => {
|
||||
createCrudService(apiurl.ssyq.status).delGet().then((res) => {
|
||||
if (res.code === 200) {
|
||||
dispatch.runtime.setIsReadObject(res.data)
|
||||
}
|
||||
})
|
||||
}
|
||||
// const getReadStatus = () => {
|
||||
// createCrudService(apiurl.ssyq.status).delGet().then((res) => {
|
||||
// if (res.code === 200) {
|
||||
// dispatch.runtime.setIsReadObject(res.data)
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
|
||||
useEffect(() => {
|
||||
getReadStatus()
|
||||
}, [])
|
||||
// useEffect(() => {
|
||||
// getReadStatus()
|
||||
// }, [])
|
||||
return (
|
||||
|
||||
<div className='app-top-menu'>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import {httppost2, download, httpPostFile, httpget, httpget2,httpget6} from "../../utils/request";
|
||||
import {httppost2, download, httpPostFile, httpget, httpget2,httpget6,xyt_httpput} from "../../utils/request";
|
||||
import apiurl from "../../service/apiurl";
|
||||
import {config} from "../../config";
|
||||
|
||||
|
|
@ -156,6 +156,10 @@ export function createCrudService(urlSet) {
|
|||
const resData = await httppost2(urlSet, params) || {};
|
||||
return resData;
|
||||
}
|
||||
const userEdit = async (params) => {
|
||||
const resData = await xyt_httpput(urlSet, params) || {};
|
||||
return resData;
|
||||
}
|
||||
|
||||
const edit1 = async (params) => {
|
||||
const resData = await httppost2(urlSet, params) || {};
|
||||
|
|
@ -246,6 +250,7 @@ export function createCrudService(urlSet) {
|
|||
todo: todo,
|
||||
save: save,
|
||||
edit: edit,
|
||||
userEdit,
|
||||
edit1: edit1,
|
||||
del: del,
|
||||
insert:insert,
|
||||
|
|
|
|||
|
|
@ -350,7 +350,7 @@ export async function loadMenu(): Promise<MenuItem[]> {
|
|||
{
|
||||
id: id(), title: '白蚁防治', redirect: '/mgr/sg/byfz/bypc',
|
||||
children: [
|
||||
{ id: id(), title: '白蚁普查', path: '/mgr/sg/byfz/bypc' },
|
||||
{ id: id(), title: '白蚁监测', path: '/mgr/sg/byfz/bypc' },
|
||||
{ id: id(), title: '防治宣传', path: '/mgr/sg/byfz/byxc' },
|
||||
]
|
||||
},
|
||||
|
|
@ -360,9 +360,9 @@ export async function loadMenu(): Promise<MenuItem[]> {
|
|||
{
|
||||
id: id(), title: '维修养护', path: '/mgr/sg/wxyh',
|
||||
},
|
||||
{
|
||||
id: id(), title: '库容管理', path: '/mgr/sg/krgl',
|
||||
},
|
||||
// {
|
||||
// id: id(), title: '库容管理', path: '/mgr/sg/krgl',
|
||||
// },
|
||||
{
|
||||
id: id(), title: '值班管理', redirect: '/mgr/sg/zbgl/zbb',
|
||||
children: [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
import { config } from '../config'
|
||||
import Zfzl from '../views/gxsl/zfzl'
|
||||
|
||||
const pubapi_old = 'https://owrsvr.cloudowr.cn/svr'
|
||||
const pubapi = 'https://owrsvr.cloudowr.cn/pubapi'
|
||||
|
|
@ -8,7 +7,11 @@ const service_fxdd = '/gunshiApp/tsg'
|
|||
const service_xyt = '/gunshiApp/tsg'//登陆先用小玉潭
|
||||
const service_shzh = '/shzh'
|
||||
const apiurl = {
|
||||
|
||||
systemM: {
|
||||
userM: {
|
||||
updatePassword:service_xyt + '/system/user/profile/updatePwd'
|
||||
}
|
||||
},
|
||||
krline: {
|
||||
list: service_fxdd + "/stZvarlB/list",
|
||||
save: service_fxdd + "/stZvarlB/insert",
|
||||
|
|
@ -354,7 +357,9 @@ const apiurl = {
|
|||
},
|
||||
byfz: {
|
||||
bypc: {
|
||||
page: service_fxdd + "/termite/survey/page",
|
||||
// page: service_fxdd + "/termite/survey/page",
|
||||
page: service_fxdd + "/termite/survey/pageDetail",
|
||||
count:service_fxdd + "/termite/survey/count",
|
||||
save: service_fxdd + "/termite/survey/insert",
|
||||
edit: service_fxdd + "/termite/survey/update",
|
||||
delete: service_fxdd + "/termite/survey/del",
|
||||
|
|
@ -984,6 +989,10 @@ const apiurl = {
|
|||
update: service_fxdd + "/attResBase/update",
|
||||
getFile:service_fxdd + "/attResBase/file/get"
|
||||
},
|
||||
buildInfo: {
|
||||
detail: service_fxdd + "/attResBuilding/info",
|
||||
update: service_fxdd + "/attResBuilding/update",
|
||||
},
|
||||
kr: {
|
||||
list: service_fxdd + "/stZvarlB/list",
|
||||
save: service_fxdd + "/stZvarlB/insert",
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ module.exports = function (app) {
|
|||
// target: 'http://36.139.207.50:18083/',//移动云
|
||||
// target: 'http://192.168.66.49:24105/',//移动云
|
||||
// target: 'http://192.168.66.32:24105/',//ls
|
||||
// target: 'http://192.168.66.32:24105/', //ls
|
||||
changeOrigin: true,
|
||||
})
|
||||
);
|
||||
|
|
|
|||
|
|
@ -53,7 +53,19 @@ async function send(url, options) {
|
|||
|
||||
return {};
|
||||
}
|
||||
export function xyt_httpput(url, data = {}) {
|
||||
const options = {
|
||||
method: 'PUT',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'adcd': localStorage.getItem('ADCD6'),
|
||||
"authorization":"Bearer" + ' ' + localStorage.getItem('access_token')
|
||||
},
|
||||
body: JSON.stringify(data),
|
||||
};
|
||||
|
||||
return send(url, options);
|
||||
}
|
||||
export function httpget(url, data = {}) {
|
||||
const params = [];
|
||||
for (const k in data) {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ export default function drpOption({ data, wrz, grz }) {
|
|||
// 显示图例
|
||||
show: true,
|
||||
// 图例的位置
|
||||
data: ['警戒水位', '危险水位', "降雨量", "水位", "转换流量"],
|
||||
data: ['警戒水位', '保证水位', "降雨量", "水位", "转换流量"],
|
||||
},
|
||||
xAxis: [
|
||||
{
|
||||
|
|
@ -165,7 +165,7 @@ export default function drpOption({ data, wrz, grz }) {
|
|||
{
|
||||
xAxisIndex: 1,
|
||||
yAxisIndex: 1,
|
||||
name: '危险水位',
|
||||
name: '保证水位',
|
||||
type: 'line',
|
||||
color: "#D9001B",
|
||||
lineStyle: {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import React, { useState, useEffect, useMemo, useRef } from 'react'
|
||||
import { Table, Card,Button,message,Popconfirm } from 'antd';
|
||||
import { Table, Card, Button, message, Popconfirm,Spin } from 'antd';
|
||||
import ToolBar from './toolbar';
|
||||
import { useSelector } from 'react-redux';
|
||||
import ReactEcharts from 'echarts-for-react';
|
||||
|
|
@ -12,25 +12,33 @@ import jrxOption from "./jrxOptions"
|
|||
import { Rnd } from "react-rnd"
|
||||
|
||||
export default function Xmzlmb() {
|
||||
const typeName = {
|
||||
'大坝B0+130': '1',
|
||||
'大坝B0+132': '2',
|
||||
'大坝B0+250': '3',
|
||||
'大坝B0+252': '4',
|
||||
'大坝B0+370': '5',
|
||||
'大坝B0+372': '6',
|
||||
}
|
||||
const role = useSelector(state => state.auth.role);
|
||||
|
||||
const [code, setCode] = useState([])
|
||||
const [searchVal, setSearchVal] = useState({})
|
||||
const [dataSources, setDateSources] = useState([])
|
||||
const [table2Data, setTable2Data] = useState([])
|
||||
const [dmList, setDmList] = useState([])
|
||||
const [trData, setTrData] = useState([])
|
||||
const [swiper, setSwiper] = useState(false)
|
||||
const [timer, setTimer] = useState(100); // 定时器
|
||||
const [dbType, setDbType] = useState('1')
|
||||
const [dbType, setDbType] = useState('1');
|
||||
const [dbType1, setDbType1] = useState('1');
|
||||
const [loading, setLoading] = useState(false);
|
||||
const echartsRef = useRef(null)
|
||||
const jrxOptions = useMemo(() => {
|
||||
if (dataSources && dbType) {
|
||||
return jrxOption(dataSources[0],dbType)
|
||||
if (dataSources && dbType && dbType1) {
|
||||
return jrxOption(dataSources[0], dbType,dbType1)
|
||||
} else {
|
||||
return dataSources[0];
|
||||
}
|
||||
}, [dataSources,dbType])
|
||||
}, [dataSources, dbType,dbType1])
|
||||
|
||||
const columns = [
|
||||
{ title: '序号', key: 'inx', dataIndex: 'inx', width: 60, align: "center" },
|
||||
|
|
@ -59,6 +67,7 @@ export default function Xmzlmb() {
|
|||
const width = useMemo(() => columns1?.reduce((total, cur) => total + (cur.width), 0), [columns1]);
|
||||
// 单图多线以及数据表的数据
|
||||
const getTableData = async (params) => {
|
||||
setLoading(true);
|
||||
try {
|
||||
const res = await httppost2(apiurl.gcaqjc.gcaqfx.jrx.page, params)
|
||||
let newArr = [];
|
||||
|
|
@ -90,6 +99,9 @@ export default function Xmzlmb() {
|
|||
...obj,
|
||||
}
|
||||
})
|
||||
if (result.length > 0) {
|
||||
setLoading(false)
|
||||
}
|
||||
// let res1 = result.map(item => ({...item,rz:(item.rz - 100).toFixed(2)})) //为了测试 最后需要删除
|
||||
setDateSources(result)
|
||||
} catch (error) {
|
||||
|
|
@ -97,15 +109,7 @@ export default function Xmzlmb() {
|
|||
}
|
||||
}
|
||||
|
||||
// 多图单线数据
|
||||
const getTable2Data = async (params) => {
|
||||
try {
|
||||
const res = await httppost2(apiurl.gcaqjc.sjtjcx.czcx.list1, params)
|
||||
setTable2Data(res.data)
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
|
||||
const exportExcel = () => {
|
||||
let params = {
|
||||
...searchVal,
|
||||
|
|
@ -131,7 +135,7 @@ export default function Xmzlmb() {
|
|||
try {
|
||||
const res = await httppost2(apiurl.gcaqjc.sjtjcx.czcx.tree)
|
||||
let filterData = res.data.filter(s => s.profileCode == code)
|
||||
setTrData(filterData[0].children)
|
||||
setTrData(filterData[0]?.children)
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
|
|
@ -151,7 +155,7 @@ export default function Xmzlmb() {
|
|||
v.scrollTop = 0;
|
||||
// setTimeout(() => { v.scrollTop = 0 }, 1000)
|
||||
}
|
||||
echartsRef.current.getEchartsInstance().setOption(jrxOption(dataSources[index % dataSources.length],dbType))
|
||||
echartsRef.current.getEchartsInstance().setOption(jrxOption(dataSources[index % dataSources.length], dbType,dbType1))
|
||||
index++;
|
||||
}, Number(1000));
|
||||
setTimer(time); // 定时器保存变量 利于停止
|
||||
|
|
@ -161,24 +165,7 @@ export default function Xmzlmb() {
|
|||
const [scale, setScale] = useState(1)
|
||||
const scaleRef = useRef(null)
|
||||
scaleRef.current = scale;
|
||||
// 放大
|
||||
const zoomIn = () => {
|
||||
const img = document.getElementById("img");
|
||||
scaleRef.current += 0.05
|
||||
// setScale(scaleRef.current)
|
||||
img.style.transform = `scale(${scaleRef.current})`;
|
||||
}
|
||||
|
||||
// 缩小
|
||||
const zoomOut = () => {
|
||||
console.log(scaleRef);
|
||||
const img = document.getElementById("img");
|
||||
if (scaleRef.current > 1) {
|
||||
scaleRef.current -= 0.05
|
||||
// setScale(scaleRef.current)
|
||||
}
|
||||
img.style.transform = `scale(${scaleRef.current})`;
|
||||
}
|
||||
useEffect(() => {
|
||||
if (trData.length > 0 && searchVal) {
|
||||
let params = {
|
||||
|
|
@ -186,26 +173,29 @@ export default function Xmzlmb() {
|
|||
...searchVal
|
||||
}
|
||||
getTableData(params)
|
||||
getTable2Data(params)
|
||||
}
|
||||
|
||||
}, [trData, searchVal]);
|
||||
|
||||
useEffect(() => {
|
||||
if (code) {
|
||||
if (code.length) {
|
||||
getDmTree()
|
||||
}
|
||||
if (timer) {
|
||||
clearInterval(timer)
|
||||
}
|
||||
if (dmList.length > 0 && code) {
|
||||
if (dmList.length > 0 && code.length) {
|
||||
let name = dmList.find(s => s.id == code)?.projNm
|
||||
let type = name == "大坝B0+060" ? "1" :
|
||||
name == "大坝B0+090" ? "2" :
|
||||
name == "大坝B0+120" ? "2" : ''
|
||||
let type = (name == "大坝B0+130" || name == "大坝B0+132") ? "1" :
|
||||
(name == "大坝B0+250" || name == "大坝B0+252") ? "2" :
|
||||
(name == "大坝B0+370" || name == "大坝B0+372") ? "3" : '';
|
||||
let type1 = typeName[name];
|
||||
setDbType(type)
|
||||
setDbType1(type1)
|
||||
}
|
||||
}, [code])
|
||||
}, [code, dmList])
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
getDmList()
|
||||
}, [])
|
||||
|
|
@ -220,12 +210,11 @@ export default function Xmzlmb() {
|
|||
clearInterval(timer); // 停止定时器
|
||||
}
|
||||
}, [swiper, dataSources])
|
||||
|
||||
useEffect(() => {
|
||||
let scale = 1
|
||||
const img = document.getElementById("img");
|
||||
if (!img) return;
|
||||
const fun = (e) => {
|
||||
console.log(1111)
|
||||
// 大于0:滚轮向上滚动 小于0:滚轮向下滚动
|
||||
if (e.wheelDelta > 0) {
|
||||
scale += 0.05;
|
||||
|
|
@ -247,7 +236,7 @@ export default function Xmzlmb() {
|
|||
img.removeEventListener("wheel",fun)
|
||||
}
|
||||
|
||||
},[])
|
||||
},[loading])
|
||||
|
||||
return (
|
||||
<div className='content-box' style={{ backgroundColor: '#fff', height: '100%', display: 'flex', padding: '10px' }}>
|
||||
|
|
@ -271,48 +260,30 @@ export default function Xmzlmb() {
|
|||
role={role}
|
||||
/>
|
||||
</Card>
|
||||
<div className="ant-card-body" style={{ padding: "20px 0 0 0",overflow:"hidden" }}>
|
||||
{
|
||||
!loading ? <div className="ant-card-body" style={{ padding: "20px 0 0 0", overflow: "hidden" }}>
|
||||
|
||||
<div className='body-top' style={{ height: 380, width: "100%", marginTop: 10 }} >
|
||||
<div style={{ height: 420, width: "100%",overflow:'hidden',position:'relative' }} >
|
||||
<Rnd
|
||||
default={{
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: '68%',
|
||||
width: 1305,
|
||||
height: 380
|
||||
}}
|
||||
// style={{position:"relative"}}
|
||||
|
||||
>
|
||||
<div id="img">
|
||||
<div style={{ textAlign: "center", marginBottom: 10, fontSize: 20 }}>断面名称:{dmList.find(s => s.id == code)?.projNm}</div>
|
||||
{/* <div style={{ position: "absolute", top: -38, right: 131,cursor:"pointer",fontWeight:700 }}>
|
||||
<div
|
||||
style={{ padding: "0px 8px", border: "1px solid #dfdfdf", textAlign: "center" }}
|
||||
title='放大'
|
||||
onClick={zoomIn}
|
||||
>
|
||||
+
|
||||
</div>
|
||||
<div
|
||||
style={{ padding: "0px 8px", border: "1px solid #dfdfdf", marginTop: 5, textAlign: "center" }}
|
||||
title='缩小'
|
||||
onClick={zoomOut}
|
||||
>
|
||||
-
|
||||
</div>
|
||||
</div> */}
|
||||
<ReactEcharts
|
||||
option={jrxOptions}
|
||||
style={{ width: "100%", height: 380 }}
|
||||
notMerge={true}
|
||||
ref={echartsRef}
|
||||
|
||||
/>
|
||||
</div>
|
||||
</Rnd>
|
||||
</div>
|
||||
<div className='body-top' style={{marginTop:60}}>
|
||||
<div className='body-top' style={{ marginTop: 30 }}>
|
||||
<Table
|
||||
columns={columns1}
|
||||
key="inx"
|
||||
|
|
@ -321,12 +292,15 @@ export default function Xmzlmb() {
|
|||
scroll={{ x: width, y: 250, scrollToFirstRowOnChange: true }}
|
||||
onRow={record => {
|
||||
return {
|
||||
onClick:() => {echartsRef.current.getEchartsInstance().setOption(jrxOption(record,dbType))}
|
||||
onClick: () => { echartsRef.current.getEchartsInstance().setOption(jrxOption(record, dbType,dbType1)) }
|
||||
}
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div> :
|
||||
<Spin size='large' style={{width:'100%',margin:'300px auto'}}></Spin>
|
||||
}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,81 +1,109 @@
|
|||
|
||||
export default function jrxOptions(data = {}, type = "1") {
|
||||
// const yMin = type == "1" ? 147 : type == "2" ? 146 : 146;
|
||||
// const yMax = type == "1" ? 209 : type == "2" ? 210 : 210;
|
||||
const yMin = type == "1" ? 70 : type == "2" ? 70 : 70;
|
||||
const yMax = type == "1" ? 154 : type == "2" ? 150 : 150;
|
||||
const type1 = ["SY05", "SY06", "SY07", "SY08"]
|
||||
const type2 = ["SY09","SY10","SY11","SY12"]
|
||||
const alltype = type == "1" ? type1 : type == "2" ? type2 : type2;
|
||||
export default function jrxOptions(data = {}, type = "1",typeName='1') {
|
||||
// debugger
|
||||
const yMin = type == "3" ? 70 : type == "2" ? 67 :
|
||||
type == '1' ? 59 : 70;
|
||||
const yMax = type == "3" ? 129 : type == "2" ? 117
|
||||
: type == "1" ? 118 : 150;
|
||||
const type1 = ["SY01", "SY04", "SY07", "SY16"];
|
||||
const type2 = ["SY10", "SY13"];
|
||||
const type3 = ["SY02", "SY05", "SY08", "SY17"];
|
||||
const type4 = ["SY11", "SY14"];
|
||||
const type5 = ["SY03", "SY06", "SY09"];
|
||||
const type6 = ["SY12", "SY15"];
|
||||
const alltype = typeName == "1" ? type1 :
|
||||
typeName == "2" ? type2 :
|
||||
typeName == "3" ? type3 :
|
||||
typeName == "4" ? type4 :
|
||||
typeName == "5" ? type5 :
|
||||
typeName == "6" ? type6 :[]
|
||||
;
|
||||
|
||||
// 字体颜色
|
||||
const textColor = '#666'
|
||||
const imageUrl060 = `${process.env.PUBLIC_URL}/assets/images/060.png `
|
||||
const imageUrl090 = `${process.env.PUBLIC_URL}/assets/images/090.png `
|
||||
const imageUrl = type == "1" ? imageUrl060 :
|
||||
type == "2" ? imageUrl090 : imageUrl090;
|
||||
const imageUrl370 = `${process.env.PUBLIC_URL}/assets/images/zb370.png `
|
||||
const imageUrl250 = `${process.env.PUBLIC_URL}/assets/images/zb250.png `
|
||||
const imageUrl130 = `${process.env.PUBLIC_URL}/assets/images/zb130.png `
|
||||
const imageUrl = type == "1" ? imageUrl130 :
|
||||
type == "2" ? imageUrl250 :
|
||||
type == "3" ? imageUrl370 : imageUrl370
|
||||
;
|
||||
const rule = `${process.env.PUBLIC_URL}/assets/images/ruler.png `
|
||||
// const xValue = type == "1" ? (((data?.rz - 169) + 0.75 * 14) / 0.75):
|
||||
// type == "2" ? (((data?.rz - 169) + 0.85 * 14) / 0.85) : (((data?.rz - 169) + 0.85 * 14) / 0.85)
|
||||
|
||||
const xValue = type == "1" ? (((data?.rz - 99) + 1.1 * 13) / 1.1):
|
||||
type == "2" ? (((data?.rz - 99) + 1 * 14) / 1) : (((data?.rz - 99) + 1 * 14) / 1)
|
||||
// rz 是最上面那条线 rz1是那条贴近坝面的线 xValue求解的是最上面那条线的末尾横坐标
|
||||
const xValue = type == "3" ? (((data?.rz - 86) + 0.6 * 5) / 0.6) :
|
||||
type == "2" ? (((data?.rz - 87) + 0.63 * 7) / 0.63) :
|
||||
type == "1" ? (((data?.rz - 88) + 0.7 * 10) / 0.7) :
|
||||
(((data?.rz - 99) + 1 * 14) / 1)
|
||||
const rz = data?.rz ?
|
||||
[[xValue, data?.rz], [0, data?.rz],] :
|
||||
[]
|
||||
const rz1 = data?.rz ?
|
||||
type == "1" ?
|
||||
[[0, 99], [13, 99], [xValue, data?.rz]]:
|
||||
type == "3" ?
|
||||
[[0, 86], [5, 86], [xValue, data?.rz]] :
|
||||
type == "2" ?
|
||||
[[0, 87], [7, 87], [xValue, data?.rz]]
|
||||
:
|
||||
type == "1" ?
|
||||
[[0, 88], [10, 88], [xValue, data?.rz]]
|
||||
:
|
||||
[[0, 99], [14, 99], [xValue, data?.rz]]
|
||||
: [[0, 99], [14, 99], [xValue, data?.rz]]
|
||||
:
|
||||
[]
|
||||
// gz1、gz2、gz3、gz4分别为渗压管
|
||||
const gz1 = data[alltype[0]] ?
|
||||
type == "1" ? [[51.6, 85], [51.6, data[alltype[0]]]] :
|
||||
type == "2" ? [[47.5, 85], [47.5, data[alltype[0]]]] :
|
||||
type == "3" ? [[47, 101], [47, data[alltype[0]]]] :
|
||||
type == "2" ? [[45.5, 98], [45.5, data[alltype[0]]]] :
|
||||
type == "1" ? [[44, 83], [44, data[alltype[0]]]] :
|
||||
[[47.5, 158], [85, data[alltype[0]]]]
|
||||
: [];
|
||||
// const gz1 = [[51.6, 85],[51.6, 91]];
|
||||
// const gz2 = [[53.6, 85], [53.6, 94]];
|
||||
|
||||
// const gz3 = [[72.5, 90], [72.5, 95]];
|
||||
// const gz4 = [[84.5, 96], [84.5, 99]];
|
||||
|
||||
|
||||
const gz2 = data[alltype[1]] ?
|
||||
type == "1" ? [[53.6, 85], [53.6, data[alltype[1]]]] :
|
||||
type == "2" ? [[49.5, 85], [49.5, data[alltype[1]]]] :
|
||||
type == "3" ? [[51, 101], [51, data[alltype[1]]]] :
|
||||
type == "2" ? [[50, 98], [50, data[alltype[1]]]] :
|
||||
type == "1" ? [[51.5, 82], [51.5, data[alltype[1]]]] :
|
||||
[[53.6, 158], [53.6, data[alltype[1]]]] :
|
||||
[];
|
||||
|
||||
const gz3 = data[alltype[2]] ?
|
||||
type == "1" ? [[72.5, 90], [72.5, data[alltype[2]]]] :
|
||||
type == "2" ? [[66.5, 90], [66.5, data[alltype[2]]]] :
|
||||
type == "3" ? [[58.5, 95], [58.5, data[alltype[2]]]] :
|
||||
type == "2" ? [[58, 92], [58, data[alltype[2]]]] :
|
||||
type == "1" ? [[58, 81], [58, data[alltype[2]]]] :
|
||||
[[73, 161], [73, data[alltype[2]]]] : [];
|
||||
|
||||
|
||||
const gz4 = data[alltype[3]] ?
|
||||
type == "1" ? [[84.5, 96], [84.5, data[alltype[3]]]] :
|
||||
type == "2" ? [[77, 96], [77, data[alltype[3]]]] :
|
||||
type == "3" ? [] :
|
||||
type == "2" ? [[77, 82], [77, data[alltype[3]]]] :
|
||||
type == "1" ? [[79, 78], [79, data[alltype[3]]]] :
|
||||
[[85, 166], [85, data[alltype[3]]]] : [];
|
||||
|
||||
// 将渗压管连起来的线
|
||||
const line = data?.rz ?
|
||||
type == "1" ?
|
||||
type == "3" ?
|
||||
[
|
||||
[xValue, data?.rz],
|
||||
[51.6, data[alltype[0]]],
|
||||
[53.6, data[alltype[1]]],
|
||||
[72.5, data[alltype[2]]],
|
||||
[84.5, data[alltype[3]]]
|
||||
[47, data[alltype[0]]],
|
||||
[51, data[alltype[1]]],
|
||||
[58.5, data[alltype[2]]],
|
||||
|
||||
] :
|
||||
type == "2" ?
|
||||
[
|
||||
[xValue, data?.rz],
|
||||
[47.5, data[alltype[0]]],
|
||||
[49.5, data[alltype[1]]],
|
||||
[66.5, data[alltype[2]]],
|
||||
[45.5, data[alltype[0]]],
|
||||
[50, data[alltype[1]]],
|
||||
[58, data[alltype[2]]],
|
||||
[77, data[alltype[3]]]
|
||||
] :
|
||||
type == "1"?
|
||||
[
|
||||
[xValue, data?.rz],
|
||||
[44, data[alltype[0]]],
|
||||
[51.5, data[alltype[1]]],
|
||||
[58, data[alltype[2]]],
|
||||
[79, data[alltype[3]]]
|
||||
]:
|
||||
[
|
||||
[xValue, data?.rz],
|
||||
[51.6, data[alltype[0]]],
|
||||
|
|
@ -204,7 +232,7 @@ return {
|
|||
},
|
||||
splitLine: {
|
||||
// 网格
|
||||
show: false,
|
||||
show: true,
|
||||
lineStyle: {
|
||||
color: '#CCCCCC',
|
||||
type: 'dashed'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import React, { Fragment, useRef, useMemo,useEffect,useState } from 'react';
|
||||
import BasicCrudModal from '../../../../components/crud/BasicCrudModal';
|
||||
import { Table, Card, Modal, Form, Input, Button, Row,Col, Timeline, message, Tabs,Image } from 'antd';
|
||||
import { Table, Card, Modal, Form, Input, Button, Row,Col, Timeline, message, Tabs,Image,Tag } from 'antd';
|
||||
import {FileWordOutlined,FilePdfOutlined,FileZipOutlined,FileExcelOutlined } from '@ant-design/icons';
|
||||
import { useSelector } from 'react-redux';
|
||||
import ToolBar from './toolbar';
|
||||
|
|
@ -8,14 +8,22 @@ import ModalForm from './form';
|
|||
import apiurl from '../../../../service/apiurl';
|
||||
import usePageTable from '../../../../components/crud/usePageTable2';
|
||||
import { createCrudService } from '../../../../components/crud/_';
|
||||
import { httppost2 } from '../../../../utils/request';
|
||||
import {CrudOpRender_text} from '../../../../components/crud/CrudOpRender';
|
||||
|
||||
import './index.less';
|
||||
const url = "http://223.75.53.141:9102/test.by-lyf.tmp"
|
||||
const Page = () => {
|
||||
const role = useSelector(state => state.auth.role);
|
||||
const editBtn = role?.rule?.find(item => item.menuName == "编辑") || true;
|
||||
const viewBtn = role?.rule?.find(item => item.menuName == "查看")|| true;
|
||||
const delBtn = role?.rule?.find(item => item.menuName == "删除") || true;
|
||||
|
||||
const [stats, setStats] = useState({
|
||||
total: 400,
|
||||
withMosquito: 14,
|
||||
withoutMosquito: 382,
|
||||
noData: 4
|
||||
});
|
||||
const surveyType = {
|
||||
1: "日常检查排查",
|
||||
2: "定期普查",
|
||||
|
|
@ -33,38 +41,79 @@ const Page = () => {
|
|||
}
|
||||
const refModal = useRef();
|
||||
const [searchVal, setSearchVal] = useState({})
|
||||
const [count, setCount] = useState({})
|
||||
// const columns = [
|
||||
// { title: '序号', key: 'inx', dataIndex: 'inx', width: 60, align: "center" },
|
||||
// {title: '填报日期', key: 'reportDate', dataIndex: 'reportDate', width: 140,},
|
||||
// {
|
||||
// title: '普查类型', key: 'surveyType', dataIndex: 'surveyType', width: 200,
|
||||
// render: (value) => <span>{value ? surveyType[value] : ''}</span>
|
||||
// },
|
||||
// {
|
||||
// title: '普查方式', key: 'surveyWay', dataIndex: 'surveyWay', width: 200,
|
||||
// render: (value) => <span>{value ? surveyWay[value] : ''}</span>
|
||||
|
||||
// },
|
||||
// {
|
||||
// title: '危害情况', key: 'isHarm', dataIndex: 'isHarm', width: 200,
|
||||
// render: (value, row) =>(
|
||||
// <span style={row.harmNum > 0 ? { color: "red" } : {}}>{isHarm[row.harmNum > 0 ? 1 : 0]}</span>)
|
||||
// },
|
||||
// {title: '白蚁危害处数', key: 'harmNum', dataIndex: 'harmNum', width: 100},
|
||||
// {title: '已处置处数', key: 'handleNum', dataIndex: 'handleNum', width: 100},
|
||||
// {title: '上报人', key: 'reportUserName', dataIndex: 'reportUserName', width: 100},
|
||||
// {
|
||||
// title: '操作', key: 'operation', width: 200, fixed: 'right',align: 'center',
|
||||
// render: (value, row, index) => (
|
||||
// <CrudOpRender_text
|
||||
// edit={editBtn ? true : false}
|
||||
// del={delBtn ? true : false}
|
||||
// view={viewBtn ? true : false}
|
||||
// command={(cmd) => () => command(cmd)(row)} />)
|
||||
// },
|
||||
// ];
|
||||
|
||||
const columns = [
|
||||
{ title: '序号', key: 'inx', dataIndex: 'inx', width: 60, align: "center" },
|
||||
{title: '填报日期', key: 'reportDate', dataIndex: 'reportDate', width: 140,},
|
||||
{
|
||||
title: '普查类型', key: 'surveyType', dataIndex: 'surveyType', width: 200,
|
||||
render: (value) => <span>{value ? surveyType[value] : ''}</span>
|
||||
title: '监测时间',
|
||||
dataIndex: 'reportDate',
|
||||
key: 'reportDate',
|
||||
width: 180,
|
||||
align:'center'
|
||||
},
|
||||
{
|
||||
title: '普查方式', key: 'surveyWay', dataIndex: 'surveyWay', width: 200,
|
||||
render: (value) => <span>{value ? surveyWay[value] : ''}</span>
|
||||
title: '测点编号',
|
||||
dataIndex: 'pileNumber',
|
||||
key: 'pileNumber',
|
||||
width: 120,
|
||||
align:'center'
|
||||
},
|
||||
{
|
||||
title: '有无白蚁',
|
||||
dataIndex: 'isHarm',
|
||||
align:'center',
|
||||
key: 'isHarm',
|
||||
width: 100,
|
||||
render:(text, record) => {
|
||||
// 如果 isHarm 为 null 或 undefined,显示无
|
||||
if (text == null) {
|
||||
return <Tag color="#04d919" style={{borderRadius: '50%', padding: '4px 8px'}}>无</Tag>;
|
||||
}
|
||||
|
||||
},
|
||||
{
|
||||
title: '危害情况', key: 'isHarm', dataIndex: 'isHarm', width: 200,
|
||||
render: (value, row) =>(
|
||||
<span style={row.harmNum > 0 ? { color: "red" } : {}}>{isHarm[row.harmNum > 0 ? 1 : 0]}</span>)
|
||||
},
|
||||
{title: '白蚁危害处数', key: 'harmNum', dataIndex: 'harmNum', width: 100},
|
||||
{title: '已处置处数', key: 'handleNum', dataIndex: 'handleNum', width: 100},
|
||||
{title: '上报人', key: 'reportUserName', dataIndex: 'reportUserName', width: 100},
|
||||
{
|
||||
title: '操作', key: 'operation', width: 200, fixed: 'right',align: 'center',
|
||||
render: (value, row, index) => (
|
||||
<CrudOpRender_text
|
||||
edit={editBtn ? true : false}
|
||||
del={delBtn ? true : false}
|
||||
view={viewBtn ? true : false}
|
||||
command={(cmd) => () => command(cmd)(row)} />)
|
||||
},
|
||||
// 如果 isHandle 为 null 或 undefined,当作 false 处理
|
||||
const isHandle = record.isHandle ?? false;
|
||||
|
||||
return (
|
||||
<Tag
|
||||
color={text ? (isHandle ? '#04d919' : '#d9001b') : '#04d919'}
|
||||
style={{borderRadius: '50%', padding: '4px 8px'}}
|
||||
>
|
||||
{text ? (isHandle ? '无' : '有') : '无'}
|
||||
</Tag>
|
||||
);
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
const width = useMemo(() => columns.reduce((total, cur) => total + (cur.width), 0), [columns]);
|
||||
|
||||
const command = (type) => (params) => {
|
||||
|
|
@ -89,6 +138,26 @@ const Page = () => {
|
|||
const successCallback = () => {
|
||||
refresh()
|
||||
}
|
||||
|
||||
// 获取白蚁统计数量
|
||||
const getCount = async () => {
|
||||
const params = {
|
||||
pageSo: {
|
||||
pageNumber: 1,
|
||||
pageSize: 99999,
|
||||
}
|
||||
}
|
||||
try {
|
||||
const res = await httppost2(apiurl.rcgl.byfz.bypc.count, params);
|
||||
setCount(res.data);
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
|
||||
}
|
||||
}
|
||||
useEffect(() => {
|
||||
getCount();
|
||||
}, [])
|
||||
useEffect(() => {
|
||||
if (searchVal) {
|
||||
const params = {
|
||||
|
|
@ -104,12 +173,50 @@ const Page = () => {
|
|||
return (
|
||||
<>
|
||||
<div className='content-root clearFloat xybm' style={{paddingRight:"0",paddingBottom:"0"}}>
|
||||
<div className='lf CrudAdcdTreeTableBox' style={{width:"100%",overflowY:"auto"}}>
|
||||
<div className='lf CrudAdcdTreeTableBox' style={{ width: "100%" }}>
|
||||
<Row gutter={16} className='statsRow'>
|
||||
<Col span={6}>
|
||||
<div className='statItem'>
|
||||
<div className='valueWrapper'>
|
||||
<span className='number' style={{ color: '#722ed1' }}>{count.totalPoint}</span>
|
||||
<span className="unit">个</span>
|
||||
</div>
|
||||
<span className='label'>总监测点数</span>
|
||||
</div>
|
||||
</Col>
|
||||
<Col span={6}>
|
||||
<div className='statItem'>
|
||||
<div className='valueWrapper'>
|
||||
<span className='number' style={{ color: '#f5222d' }}>{count.hasAnt}</span>
|
||||
<span className="unit">个</span>
|
||||
</div>
|
||||
<span className='label'>有白蚁</span>
|
||||
</div>
|
||||
</Col>
|
||||
<Col span={6}>
|
||||
<div className='statItem'>
|
||||
<div className='valueWrapper'>
|
||||
<span className='number' style={{ color: '#52c41a' }}>{count.notAnt}</span>
|
||||
<span className="unit">个</span>
|
||||
</div>
|
||||
<span className='label'>无白蚁</span>
|
||||
</div>
|
||||
</Col>
|
||||
<Col span={6}>
|
||||
<div className='statItem'>
|
||||
<div className='valueWrapper'>
|
||||
<span className='number' style={{ color: '#8c8c8c' }}>{count.noData}</span>
|
||||
<span className="unit">个</span>
|
||||
</div>
|
||||
<span className='label'>无数据</span>
|
||||
</div>
|
||||
</Col>
|
||||
</Row>
|
||||
<Card className='nonebox'>
|
||||
<ToolBar
|
||||
setSearchVal={setSearchVal}
|
||||
onSave={command('save')}
|
||||
role={role}
|
||||
// onSave={command('save')}
|
||||
// role={role}
|
||||
/>
|
||||
</Card>
|
||||
<div className="ant-card-body" style={{ padding: "20px 0 0 0" }}>
|
||||
|
|
|
|||
|
|
@ -1,30 +1,33 @@
|
|||
.basic-info{
|
||||
position: relative;
|
||||
font-size: 16px;
|
||||
margin-bottom: 20px;
|
||||
padding:5px 25px;
|
||||
border-bottom: 1px solid #eee;
|
||||
&::before{
|
||||
position: absolute;
|
||||
top:8px;
|
||||
left:0;
|
||||
content: "";
|
||||
display: block;
|
||||
width: 5px;
|
||||
height: 20px;
|
||||
background-color: #0079fe;
|
||||
}
|
||||
}
|
||||
.time-line{
|
||||
width: 50%;
|
||||
margin-left: 6%;
|
||||
margin-top: 1%;
|
||||
.time-line-item{
|
||||
.statsRow {
|
||||
display: flex;
|
||||
// align-items: center;
|
||||
column-gap: 20px;
|
||||
.item-right{
|
||||
flex:1
|
||||
justify-content: space-between;
|
||||
margin-bottom: 24px;
|
||||
padding: 16px;
|
||||
|
||||
.statItem {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
.unit {
|
||||
font-size: 14px;
|
||||
margin-right: 8px;
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
}
|
||||
.valueWrapper {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
}
|
||||
.number {
|
||||
display: block;
|
||||
font-size: 32px;
|
||||
font-weight: 600;
|
||||
|
||||
}
|
||||
|
||||
.label {
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -5,17 +5,17 @@ import moment from 'moment';
|
|||
import NormalSelect from '../../../../components/Form/NormalSelect';
|
||||
const { RangePicker } = DatePicker;
|
||||
const ToolBar = ({ setSearchVal, onSave, storeData, role }) => {
|
||||
const addBtn = role?.rule?.find(item => item.menuName == "新增")|| true;
|
||||
const searchBtn = role?.rule?.find(item => item.menuName == "查询")|| true;
|
||||
// const addBtn = role?.rule?.find(item => item.menuName == "新增")|| true;
|
||||
// const searchBtn = role?.rule?.find(item => item.menuName == "查询")|| true;
|
||||
const [form] = Form.useForm();
|
||||
|
||||
const onFinish = (values) => {
|
||||
let dateSo;
|
||||
if (values.year) {
|
||||
dateSo = moment(values.year).format('YYYY')
|
||||
dateSo = moment(values.year).format('YYYY-MM-DD')
|
||||
}
|
||||
delete values.year
|
||||
setSearchVal({...values, year:Number(dateSo)});
|
||||
setSearchVal({...values, searchDate:dateSo});
|
||||
}
|
||||
|
||||
// useEffect(() => {
|
||||
|
|
@ -31,29 +31,27 @@ const ToolBar = ({ setSearchVal, onSave, storeData, role }) => {
|
|||
<>
|
||||
<div style={{display:'flex',justifyContent:'space-between'}}>
|
||||
<Form form={form} className='toolbarBox' layout="inline" onFinish={onFinish}>
|
||||
<Form.Item label="年份" name="year">
|
||||
<Form.Item label="监测日期" name="year">
|
||||
<DatePicker
|
||||
allowClear
|
||||
style={{ width: "150px" }}
|
||||
picker="year"
|
||||
style={{ width: "240px" }}
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item label="危害情况" name="isHarm">
|
||||
<Form.Item label="测点编号" name="pileNumber">
|
||||
<Input
|
||||
allowClear
|
||||
style={{ width: "240px" }}
|
||||
/>
|
||||
</Form.Item>
|
||||
{/* <Form.Item label="危害情况" name="isHarm">
|
||||
<NormalSelect
|
||||
allowClear
|
||||
style={{ width: '150px' }}
|
||||
options={[{ label: "无危害 ", value: 0 },{ label: "有危害 ", value: 1 }]} />
|
||||
</Form.Item>
|
||||
{searchBtn ? <Form.Item>
|
||||
<Button type="primary" htmlType="submit">查询</Button>
|
||||
</Form.Item> : null }
|
||||
{
|
||||
(onSave && addBtn) ?
|
||||
</Form.Item> */}
|
||||
<Form.Item>
|
||||
<Button onClick={onSave}>新增</Button>
|
||||
<Button type="primary" htmlType="submit">查询</Button>
|
||||
</Form.Item>
|
||||
:null
|
||||
}
|
||||
</Form>
|
||||
</div>
|
||||
</>
|
||||
|
|
|
|||
|
|
@ -425,7 +425,7 @@ console.log(record);
|
|||
<Col span={24}>
|
||||
<Form.Item
|
||||
label="处理描述"
|
||||
name="itemProblemDesc"
|
||||
name="handleDesc"
|
||||
labelCol={{ span: 3 }}
|
||||
wrapperCol={{ span: 19 }}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
|
|||
const [itemParams, setItemParams] = useState([])
|
||||
const [list, setList] = useState([])
|
||||
const taskTypes = [
|
||||
{label:"日常巡查",value:0},
|
||||
{label:"特别检查",value:1},
|
||||
{label:"汛前巡检",value:2},
|
||||
{label:"日常巡查",value:1},
|
||||
{label:"特别检查",value:2},
|
||||
{label:"汛前巡检",value:3},
|
||||
]
|
||||
const [form] = Form.useForm();
|
||||
|
||||
|
|
|
|||
|
|
@ -268,7 +268,7 @@ console.log(record);
|
|||
>
|
||||
<Row gutter={[16]}>
|
||||
{
|
||||
handleImgfileList.length > 0 && handleImgfileList.map(file => {
|
||||
handleImgfileList?.length > 0 && handleImgfileList.map(file => {
|
||||
return (
|
||||
<Col span={12}>
|
||||
<div className={mode == "view" ? 'file-item view-file' : 'file-item'} >
|
||||
|
|
@ -295,7 +295,7 @@ console.log(record);
|
|||
>
|
||||
<Row gutter={[16]}>
|
||||
{
|
||||
handleVideoFileList.length > 0 && handleVideoFileList.map(file => {
|
||||
handleVideoFileList?.length > 0 && handleVideoFileList.map(file => {
|
||||
return (
|
||||
<Col span={12}>
|
||||
<div className={mode == "view" ? 'file-item view-file' : 'file-item'} >
|
||||
|
|
|
|||
|
|
@ -74,6 +74,9 @@ const AdcdTreeSelector: React.FC<IProps> = ({ onSelectFun, setAdcd, showCheckbox
|
|||
setTreeData(adcdTreedata);
|
||||
setLoading(false);
|
||||
setOrderMax(Math.max(...adcdTreedata.map((item:any) => item?.orderIndex)))
|
||||
} else {
|
||||
setLoading(false);
|
||||
setTreeData([]);
|
||||
}
|
||||
};
|
||||
// @ts-ignore
|
||||
|
|
|
|||
|
|
@ -0,0 +1,65 @@
|
|||
import React,{useState,useEffect} from 'react'
|
||||
import {Card,Table} from 'antd'
|
||||
import ModalToolBar from './ModalToolBar';
|
||||
import { httppost5 } from '../../../utils/request';
|
||||
import { exportFile } from '../../../utils/tools';
|
||||
import apiurl from '../../../service/apiurl';
|
||||
export default function ModalContent() {
|
||||
const columns = [
|
||||
{
|
||||
title: '序号',
|
||||
key: 'inx',
|
||||
width: 80,
|
||||
render: (r, i) => <span>{i + 1}</span>
|
||||
},
|
||||
{
|
||||
title: '闸门名称',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '操作内容',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '操作结果',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
}
|
||||
,
|
||||
{
|
||||
title: '操作时间',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
}
|
||||
]
|
||||
const [searchVal, setSearchVal] = useState(false)
|
||||
|
||||
const exportExcel = () => {
|
||||
let params = {
|
||||
...searchVal,
|
||||
// pageSo: {
|
||||
// pageNumber: tableProps.pagination.current,
|
||||
// pageSize:tableProps.pagination.pageSize
|
||||
// }
|
||||
}
|
||||
httppost5(apiurl.gcaqjc.sjtjcx.ndsytjb.export, params).then(res => {
|
||||
exportFile(`闸门操作记录.xlsx`,res.data)
|
||||
})
|
||||
}
|
||||
return (
|
||||
<div>
|
||||
<Card className='nonebox'>
|
||||
<ModalToolBar
|
||||
setSearchVal={setSearchVal}
|
||||
exportFile={exportExcel}
|
||||
/>
|
||||
</Card>
|
||||
|
||||
<div className="ant-card-body" style={{ padding: "20px 0 0 0" }}>
|
||||
<Table columns={columns} rowKey="inx" dataSource={[]} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
@ -0,0 +1,118 @@
|
|||
import React, { useEffect, useState } from 'react';
|
||||
import { Form, Input, Button, DatePicker } from 'antd';
|
||||
|
||||
import moment from 'moment';
|
||||
import NormalSelect from '../../../components/Form/NormalSelect';
|
||||
const { RangePicker } = DatePicker;
|
||||
const ToolBar = ({ setSearchVal, exportFile }) => {
|
||||
const optionsType = [
|
||||
{
|
||||
label: "今日",
|
||||
value: 1
|
||||
},
|
||||
{
|
||||
label: "近一周",
|
||||
value: 2
|
||||
},
|
||||
{
|
||||
label: "近一月",
|
||||
value: 3
|
||||
},
|
||||
{
|
||||
label: "近三月",
|
||||
value: 4
|
||||
},
|
||||
{
|
||||
label: "近一年",
|
||||
value: 5
|
||||
},
|
||||
]
|
||||
const types = [
|
||||
{ label: "主坝", value: 1 },
|
||||
{ label: "副坝", value: 2 },
|
||||
{ label: "灌溉发电洞", value: 3 },
|
||||
|
||||
]
|
||||
const [form] = Form.useForm();
|
||||
|
||||
const onFinish = (values) => {
|
||||
let dateTimeSo;
|
||||
if (values.tm) {
|
||||
dateTimeSo = {
|
||||
start: moment(values.tm[0]).format('YYYY-MM-DD 00:00:00'),
|
||||
end: moment(values.tm[1]).format('YYYY-MM-DD 00:00:00')
|
||||
}
|
||||
}
|
||||
delete values.tm
|
||||
setSearchVal({ ...values, dateTimeSo });
|
||||
}
|
||||
|
||||
const onValuesChange = (e) => {
|
||||
switch (e.ranger) {
|
||||
case 1:
|
||||
form.setFieldValue("tm",[moment().startOf("day"),moment()])
|
||||
break;
|
||||
case 2:
|
||||
form.setFieldValue("tm",[moment().subtract(7, 'days'),moment()])
|
||||
break;
|
||||
case 3:
|
||||
form.setFieldValue("tm",[moment().subtract(1, 'months'),moment()])
|
||||
break;
|
||||
case 4:
|
||||
form.setFieldValue("tm",[moment().subtract(3, 'months'),moment()])
|
||||
break;
|
||||
case 5:
|
||||
form.setFieldValue("tm",[moment().subtract(1, 'years'),moment()])
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
useEffect(() => {
|
||||
let dateTimeSo = {
|
||||
start: moment().subtract(1, "years").format('YYYY-MM-DD 00:00:00'),
|
||||
end: moment().format('YYYY-MM-DD 00:00:00')
|
||||
}
|
||||
form.setFieldValue("tm", [moment(dateTimeSo.start), moment(dateTimeSo.end)])
|
||||
setSearchVal({ dateTimeSo })
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<>
|
||||
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
|
||||
<Form form={form} className='toolbarBox' layout="inline" onFinish={onFinish} onValuesChange={onValuesChange}>
|
||||
<Form.Item label="闸门名称" name="maintainType">
|
||||
<NormalSelect allowClear style={{ width: '150px' }} options={types} />
|
||||
</Form.Item>
|
||||
<Form.Item label="日期范围" name="tm">
|
||||
<RangePicker
|
||||
allowClear
|
||||
style={{ width: "220px" }}
|
||||
format="YYYY-MM-DD"
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item label="常用时段" name="ranger">
|
||||
<NormalSelect
|
||||
allowClear
|
||||
style={{ width: "100px" }}
|
||||
options={optionsType}
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item>
|
||||
<Button type="primary" htmlType="submit">查询</Button>
|
||||
</Form.Item>
|
||||
|
||||
<Form.Item>
|
||||
<Button onClick={() => form.resetFields()}>重置</Button>
|
||||
</Form.Item>
|
||||
<Form.Item>
|
||||
<Button onClick={() => exportFile()}>导出</Button>
|
||||
</Form.Item>
|
||||
</Form>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default ToolBar;
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
import React, { useEffect, useMemo, useState } from 'react'
|
||||
import { Modal, Tabs, Descriptions, Image } from 'antd';
|
||||
import { Modal, Tabs, Descriptions, Image, Divider, Table } from 'antd';
|
||||
import {DoubleRightOutlined} from '@ant-design/icons'
|
||||
import { Stage } from 'react-konva';
|
||||
import Sider from './Sider';
|
||||
import Topper1 from './Topper1';
|
||||
|
|
@ -11,6 +12,7 @@ import HFivePlayer from '../../../components/video1Plary'
|
|||
import './index.less';
|
||||
import { httpget, httpget2, httppost2 } from '../../../utils/request';
|
||||
import apiurl from '../../../service/apiurl';
|
||||
import ModalContent from './ModalContent';
|
||||
const url = "http://223.75.53.141:9102/test.by-lyf.tmp"
|
||||
const CanvasW = 1080
|
||||
const CanvasH = 640
|
||||
|
|
@ -176,6 +178,65 @@ const myType = {
|
|||
}
|
||||
|
||||
const Page = () => {
|
||||
|
||||
const jcColumns = [
|
||||
{
|
||||
title: '项目',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '实时数据',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '数据采集时间',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
}
|
||||
]
|
||||
|
||||
const zfColumns = [
|
||||
{
|
||||
title: '闸阀名称',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '当前开关状态',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '数据采集时间',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
}
|
||||
]
|
||||
|
||||
const jlColumns = [
|
||||
{
|
||||
title: '闸阀名称',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '操作内容',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '操作结果',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '操作时间',
|
||||
key: 'project',
|
||||
width: 150,
|
||||
}
|
||||
]
|
||||
const [itemIndex, setItemIndex] = useState(null)
|
||||
const [waterRatio, setWaterRatio] = useState(0)
|
||||
const [data, setData] = useState({})
|
||||
|
|
@ -240,6 +301,7 @@ const Page = () => {
|
|||
return
|
||||
}
|
||||
setVideoList(data)
|
||||
getVideoSrc(data[0]?.indexCode)
|
||||
}
|
||||
|
||||
const getVideoSrc = async (current) => {
|
||||
|
|
@ -261,11 +323,43 @@ const Page = () => {
|
|||
return (
|
||||
<>
|
||||
<div className='content-root clearFloat xybm sg_zmjk' style={{ paddingRight: "0", paddingBottom: "0" }}>
|
||||
<div className='lf CrudAdcdTreeTableBox' style={{width:"100%",overflowY:"auto"}}>
|
||||
<div className='lf CrudAdcdTreeTableBox' style={{ width: "100%" }}>
|
||||
{/* <Card className='nonebox'>
|
||||
</Card> */}
|
||||
<div className="ant-card-body" style={{ padding: "20px 0 0 0" }}>
|
||||
<dvi className="sg_zmjk_left">
|
||||
<div className="sg_zmjk_left">
|
||||
<div className='sg_zmjk_left_title'>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 20 }} />
|
||||
闸阀监控
|
||||
</div>
|
||||
<div className='sz_left_up_table'>
|
||||
<Table
|
||||
columns={zfColumns}
|
||||
rowKey={(record) => record.id}
|
||||
dataSource={[]}
|
||||
pagination={false}
|
||||
/>
|
||||
</div>
|
||||
<div className='sg_zmjk_left_title' style={{ marginTop: 175,display:'flex',justifyContent:'space-between' }}>
|
||||
<div><Divider type="vertical" style={{ width: 5, background: '#259def', height: 20 }} />
|
||||
最近操作记录</div>
|
||||
<div onClick={() => setOpen(true)}>
|
||||
<div style={{display:'flex',columnGap:10,cursor:'pointer',fontSize:14,color:'#000',fontWeight:400}}>
|
||||
<span>查看更多信息</span>
|
||||
<DoubleRightOutlined />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className='sz_left_up_table'>
|
||||
<Table
|
||||
columns={jlColumns}
|
||||
rowKey={(record) => record.id}
|
||||
dataSource={[]}
|
||||
pagination={false}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
{/* <div className="sg_zmjk_left">
|
||||
<Stage width={1080} height={640}>
|
||||
<Sider pts={pts} side="left" />
|
||||
<Sider pts={pts} side="right" />
|
||||
|
|
@ -302,12 +396,14 @@ const Page = () => {
|
|||
}
|
||||
<div key="sider2" style={{ flexGrow: 1, width: 100 }}></div>
|
||||
</div>
|
||||
</dvi>
|
||||
<dvi className="sg_zmjk_right">
|
||||
</div> */}
|
||||
<div className="sg_zmjk_right">
|
||||
<div className='sg_zmjk_right_video'>
|
||||
<div className='sg_zmjk_right_video_title'>视频监控</div>
|
||||
<div className='sg_zmjk_right_video_title'>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 20 }} />
|
||||
监控视频</div>
|
||||
<div className='sg_zmjk_right_video_content'>
|
||||
<div className='sg_zmjk_right_video_content_left'>
|
||||
{/* <div className='sg_zmjk_right_video_content_left'>
|
||||
{
|
||||
videoList.map((item,index)=>(
|
||||
<div className={index===itemIndex?'sg_zmjk_right_video_content_left_item itemChecked':'sg_zmjk_right_video_content_left_item'} onClick={()=>{setItemIndex(index);getVideoSrc(item.indexCode)}}>
|
||||
|
|
@ -315,7 +411,7 @@ const Page = () => {
|
|||
</div>
|
||||
))
|
||||
}
|
||||
</div>
|
||||
</div> */}
|
||||
<div className='sg_zmjk_right_video_content_right'>
|
||||
{
|
||||
videoArr?.src &&
|
||||
|
|
@ -337,9 +433,17 @@ const Page = () => {
|
|||
</div>
|
||||
</div>
|
||||
<div className='sg_zmjk_right_information'>
|
||||
<div className='sg_zmjk_right_information_title'>监测数据</div>
|
||||
<div style={{height:'144px',overflowY:'auto',padding:'20px'}}>
|
||||
{
|
||||
<div className='sg_zmjk_right_information_title'>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 20 }} />
|
||||
监测数据</div>
|
||||
<div style={{ width: '100%', marginTop: 10 }}>
|
||||
<Table
|
||||
columns={jcColumns}
|
||||
rowKey={(record) => record.id}
|
||||
dataSource={[]}
|
||||
pagination={false}
|
||||
/>
|
||||
{/* {
|
||||
list?.map((item)=>{
|
||||
if(item.type===1){
|
||||
return (
|
||||
|
|
@ -367,25 +471,26 @@ const Page = () => {
|
|||
)
|
||||
}
|
||||
})
|
||||
}
|
||||
} */}
|
||||
</div>
|
||||
</div>
|
||||
<div className='sg_zmjk_right_more' onClick={()=>setOpen(true)}>查看更多信息</div>
|
||||
</dvi>
|
||||
{/* <div className='sg_zmjk_right_more' onClick={() => setOpen(true)}>查看更多信息</div> */}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Modal
|
||||
open={open}
|
||||
width={1000}
|
||||
title=""
|
||||
width={1100}
|
||||
title="闸门操作记录"
|
||||
footer={null}
|
||||
onCancel={() => {
|
||||
setOpen(false)
|
||||
}}
|
||||
>
|
||||
<div style={{ height: '600px' }}>
|
||||
<Tabs>
|
||||
<ModalContent/>
|
||||
{/* <Tabs>
|
||||
<Tabs.TabPane tab="基本信息" key="item-1">
|
||||
<Descriptions bordered size="small" column={3} >
|
||||
<Descriptions.Item label="启闭设备类型" style={{ width: '16.5%' }}>{{ 1: '卷扬式', 2: '螺杆式', 3: '凹轮式', 4: '涡轮式', 5: '丝杆式' }?.[data?.hdgrTp] || '-'}</Descriptions.Item>
|
||||
|
|
@ -405,7 +510,7 @@ const Page = () => {
|
|||
<Tabs.TabPane tab="工程图片" key="item-2">
|
||||
<Image width={800} src={url + data?.files?.filePath} alt='' />
|
||||
</Tabs.TabPane>
|
||||
</Tabs>
|
||||
</Tabs> */}
|
||||
</div>
|
||||
</Modal>
|
||||
</>
|
||||
|
|
|
|||
|
|
@ -2,12 +2,24 @@
|
|||
.ant-card-body{
|
||||
display: flex;
|
||||
height: 100%;
|
||||
column-gap: 20px;
|
||||
.sg_zmjk_left{
|
||||
top: 30px;
|
||||
// top: 30px;
|
||||
position: relative;
|
||||
width: 1080px;
|
||||
height: 640px;
|
||||
transform: scale(0.9,1);
|
||||
width: 930px;
|
||||
// height: 640px;
|
||||
.sg_zmjk_left_title{
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
border-bottom: 1px solid #bbb;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
.sz_left_up_table{
|
||||
margin-top: 10px;
|
||||
// height: 355px;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.sg_zmjk_right{
|
||||
|
|
@ -19,16 +31,18 @@
|
|||
|
||||
.sg_zmjk_right_video{
|
||||
height: 400px;
|
||||
margin: 30px 20px 30px -30px;
|
||||
// margin: 30px 20px 30px -30px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #bbb;
|
||||
// border: 1px solid #bbb;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.sg_zmjk_right_video_title{
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
padding-left: 10px;
|
||||
// padding-left: 10px;
|
||||
border-bottom: 1px solid #bbb;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
.sg_zmjk_right_video_content{
|
||||
flex: 1;
|
||||
|
|
@ -57,7 +71,7 @@
|
|||
}
|
||||
}
|
||||
.sg_zmjk_right_video_content_right{
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
}
|
||||
|
|
@ -65,14 +79,16 @@
|
|||
}
|
||||
.sg_zmjk_right_information{
|
||||
height: 180px;
|
||||
margin: -10px 20px 30px -30px;
|
||||
// margin: -10px 20px 30px -30px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #bbb;
|
||||
// border: 1px solid #bbb;
|
||||
.sg_zmjk_right_information_title{
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
padding-left: 10px;
|
||||
// padding-left: 10px;
|
||||
border-bottom: 1px solid #bbb;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
.sg_zmjk_right_information_content{
|
||||
display: flex;
|
||||
|
|
@ -83,10 +99,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.sg_zmjk_right_more{
|
||||
margin: -10px 20px 30px -30px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,496 @@
|
|||
import React, { useState, useEffect } from 'react'
|
||||
import { Row, Col, Form, Input, Divider, DatePicker, Button, Upload, message, Modal } from "antd"
|
||||
import { formItemLayout } from '../../../../../components/crud/FormLayoutProps'
|
||||
import { httpget2, httppost2 } from '../../../../../utils/request';
|
||||
import apiurl from '../../../../../service/apiurl';
|
||||
import './index.less'
|
||||
export default function BuildInfo() {
|
||||
const [form] = Form.useForm();
|
||||
const [skdisabled, setSkDisabled] = useState(true)
|
||||
const [data, setData] = useState()
|
||||
const getData = async () => {
|
||||
try {
|
||||
const res = await httpget2(apiurl.dataResourcesCenter.projectAndWater.buildInfo.detail)
|
||||
if (res.code == 200) {
|
||||
form.setFieldsValue(res.data)
|
||||
setData(res.data)
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
const onFinish = async () => {
|
||||
try {
|
||||
const values = form.getFieldsValue();
|
||||
const params = {
|
||||
...data,
|
||||
...values,
|
||||
}
|
||||
const res = await httppost2(apiurl.dataResourcesCenter.projectAndWater.buildInfo.update, params)
|
||||
if (res.code == 200) {
|
||||
message.success("修改成功")
|
||||
setSkDisabled(true)
|
||||
getData()
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
getData()
|
||||
}, [])
|
||||
return (
|
||||
<div className='basic-info-content'>
|
||||
<Form
|
||||
form={form}
|
||||
{...formItemLayout}
|
||||
>
|
||||
<div style={{ width: '100%', background: '#e7f4ff', padding: 8, marginBottom: 10, display: 'flex', alignItems: 'center' }}>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 18 }} />
|
||||
<span style={{ fontWeight: 600 }}>主坝</span>
|
||||
</div>
|
||||
<Row>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝型"
|
||||
name="mainType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶高程(m)"
|
||||
name="mainCrestElevation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶长度(m)"
|
||||
name="mainCrestLength"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶宽度(m)"
|
||||
name="mainCrestWidth"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col><Col span={8}>
|
||||
<Form.Item
|
||||
label="最大坝高(m)"
|
||||
name="mainMaxHeight"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
<div style={{ width: '100%', background: '#e7f4ff', padding: 8, marginBottom: 10, display: 'flex', alignItems: 'center' }}>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 18 }} />
|
||||
<span style={{ fontWeight: 600 }}>副坝</span>
|
||||
</div>
|
||||
<Row>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝型"
|
||||
name="auxType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶高程(m)"
|
||||
name="auxCrestElevation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶长度(m)"
|
||||
name="auxCrestLength"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶宽度(m)"
|
||||
name="auxCrestWidth"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col><Col span={8}>
|
||||
<Form.Item
|
||||
label="最大坝高(m)"
|
||||
name="auxMaxHeight"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
<div style={{ width: '100%', background: '#e7f4ff', padding: 8, marginBottom: 10, display: 'flex', alignItems: 'center' }}>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 18 }} />
|
||||
<span style={{ fontWeight: 600 }}>溢洪道</span>
|
||||
</div>
|
||||
<Row>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="型式"
|
||||
name="spillwayType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="堰顶型式"
|
||||
name="spillwayCrestType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="地基特性"
|
||||
name="spillwayFoundation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="溢流堰顶高程(m)"
|
||||
name="spillwayCrestElevation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="溢流堰净宽(m)"
|
||||
name="spillwayNetWidth"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="消能型式"
|
||||
name="spillwayEnergyDissipation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="校核洪水下泄流量(m³/s)"
|
||||
name="spillwayCheckFloodDischarge"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="设计洪水下泄流量(m³/s)"
|
||||
name="spillwayDesignFloodDischarge"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="消能防冲下泄流量(m³/s)"
|
||||
name="spillwayScouringDischarge"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
<div style={{ width: '100%', background: '#e7f4ff', padding: 8, marginBottom: 10, display: 'flex', alignItems: 'center' }}>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 18 }} />
|
||||
<span style={{ fontWeight: 600 }}>灌溉发电洞</span>
|
||||
</div>
|
||||
<Row>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="型式"
|
||||
name="irrigationType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="衬砌型式"
|
||||
name="irrigationLiningType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="地基特性"
|
||||
name="irrigationFoundation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="进口底板高程(m)"
|
||||
name="irrigationInletElevation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="断面尺寸(m)"
|
||||
name="irrigationCrossSection"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="洞长(m)"
|
||||
name="irrigationLength"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="设计流量(m³/s)"
|
||||
name="irrigationDesignFlow"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="进口闸门型式"
|
||||
name="irrigationGateType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="进口启闭机型式"
|
||||
name="irrigationHoistType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
<div style={{ width: '100%', background: '#e7f4ff', padding: 8, marginBottom: 10, display: 'flex', alignItems: 'center' }}>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 18 }} />
|
||||
<span style={{ fontWeight: 600 }}>放空洞</span>
|
||||
</div>
|
||||
<Row>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="型式"
|
||||
name="emptyingType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="衬砌型式"
|
||||
name="emptyingLiningType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="地基特性"
|
||||
name="emptyingFoundation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="进口底板高程(m)"
|
||||
name="emptyingInletElevation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="断面尺寸(m)"
|
||||
name="emptyingCrossSection"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="洞长(m)"
|
||||
name="emptyingLength"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="设计流量(m³/s)"
|
||||
name="emptyingDesignFlow"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="进口闸门型式"
|
||||
name="emptyingGateType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col> <Col span={8}>
|
||||
<Form.Item
|
||||
label="进口启闭机型式"
|
||||
name="emptyingHoistType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
<div style={{ width: '100%', background: '#e7f4ff', padding: 8, marginBottom: 10, display: 'flex', alignItems: 'center' }}>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 18 }} />
|
||||
<span style={{ fontWeight: 600 }}>拦洪坝</span>
|
||||
</div>
|
||||
<Row>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝型"
|
||||
name="floodControlType"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶高程(m)"
|
||||
name="floodControlCrestElevation"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶长度(m)"
|
||||
name="floodControlCrestLength"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="坝顶宽度(m)"
|
||||
name="floodControlCrestWidth"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col><Col span={8}>
|
||||
<Form.Item
|
||||
label="最大坝高(m)"
|
||||
name="floodControlMaxHeight"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
<div style={{ width: '100%', background: '#e7f4ff', padding: 8, marginBottom: 10, display: 'flex', alignItems: 'center' }}>
|
||||
<Divider type="vertical" style={{ width: 5, background: '#259def', height: 18 }} />
|
||||
<span style={{ fontWeight: 600 }}>防汛道路</span>
|
||||
</div>
|
||||
<Row>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="防汛路长度(m)"
|
||||
name="roadLength"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
label="路面宽度(m)"
|
||||
name="roadWidth"
|
||||
|
||||
>
|
||||
<Input allowClear style={{ width: '300px' }} disabled={skdisabled} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{ marginTop: 80 }}>
|
||||
<Col span={24}>
|
||||
<Form.Item
|
||||
wrapperCol={{ span: 14, offset: 10 }}
|
||||
>
|
||||
{
|
||||
skdisabled ? <Button type="primary" onClick={() => setSkDisabled(false)}>编辑</Button> :
|
||||
<div style={{ display: 'flex', columnGap: 20 }}>
|
||||
<Button onClick={() => setSkDisabled(true)}>取消</Button>
|
||||
<Button type="primary" onClick={() => { onFinish() }}>保存</Button>
|
||||
</div>
|
||||
}
|
||||
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
</Form>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
.basic-info-container {
|
||||
background: #fff;
|
||||
.ant-descriptions {
|
||||
.ant-descriptions-header {
|
||||
margin-bottom: 16px;
|
||||
padding: 8px;
|
||||
border-left: 4px solid #1890ff;
|
||||
background-color: #e7f4ff;
|
||||
.ant-descriptions-title {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
}
|
||||
}
|
||||
|
||||
.ant-descriptions-view {
|
||||
border: 1px solid #f0f0f0;
|
||||
|
||||
.ant-descriptions-item {
|
||||
padding: 12px 24px;
|
||||
|
||||
.ant-descriptions-item-label {
|
||||
width: 160px;
|
||||
background: #fafafa;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.ant-descriptions-item-content {
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ant-descriptions + .ant-descriptions {
|
||||
margin-top: 24px;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
const descriptionsConfig = [
|
||||
{
|
||||
title: '主坝',
|
||||
column: 3,
|
||||
items: [
|
||||
{
|
||||
label: '坝型',
|
||||
key: 'bx'
|
||||
},
|
||||
{
|
||||
label: '坝顶高程',
|
||||
key: 'gc'
|
||||
},
|
||||
{
|
||||
label: '统一社会信用代码',
|
||||
key: 'creditCode2'
|
||||
}
|
||||
// ... 其他基础信息项
|
||||
]
|
||||
},
|
||||
{
|
||||
title: '许可信息',
|
||||
column: 2,
|
||||
items: [
|
||||
{
|
||||
label: '取水证号',
|
||||
key: 'licenseNo'
|
||||
},
|
||||
{
|
||||
label: '取水项目名称',
|
||||
key: 'projectName'
|
||||
}
|
||||
// ... 其他许可信息项
|
||||
]
|
||||
}
|
||||
// ... 可以添加更多描述组
|
||||
];
|
||||
const dataconfig = {
|
||||
unitName: 'XX市老城区龙泉供水有限责任公司',
|
||||
creditCode: '915107242056002w',
|
||||
creditCode2: '91510724205600',
|
||||
licenseNo: 'B510705G2021-1061',
|
||||
projectName: 'XX市老城区龙泉供水有限责任公司',
|
||||
projectName2: 'XX市老城区龙泉供水',
|
||||
approvalOrg: 'XXXX省水利厅',
|
||||
waterType: '地下水',
|
||||
waterType2: '地下水',
|
||||
waterPurpose: '制水供水',
|
||||
yearAmount: '699',
|
||||
yearAmount2: '699'
|
||||
};
|
||||
export {descriptionsConfig,dataconfig} ;
|
||||
|
|
@ -7,6 +7,7 @@ import apiurl from '../../../../service/apiurl';
|
|||
import { httpget2, httppost2 } from '../../../../utils/request';
|
||||
import XlLine from './xlLine'
|
||||
import "./index.less"
|
||||
import BuildInfo from './buildInfo'
|
||||
export default function ShuikuBasicInfo() {
|
||||
const [tabVal, setTabVal] = useState('1')
|
||||
const [data,setData] =useState('')
|
||||
|
|
@ -36,6 +37,10 @@ export default function ShuikuBasicInfo() {
|
|||
className={tabVal === '2' ? 'fxdd_hsybjs_toolbar_item hsybjs_checked' : 'fxdd_hsybjs_toolbar_item'}
|
||||
onClick={() => setTabVal('2')}>主要特征参数
|
||||
</div>
|
||||
<div
|
||||
className={tabVal === '5' ? 'fxdd_hsybjs_toolbar_item hsybjs_checked' : 'fxdd_hsybjs_toolbar_item'}
|
||||
onClick={() => setTabVal('5')}>主要建筑物信息
|
||||
</div>
|
||||
<div
|
||||
className={tabVal === '3' ? 'fxdd_hsybjs_toolbar_item hsybjs_checked' : 'fxdd_hsybjs_toolbar_item'}
|
||||
onClick={() => setTabVal('3')}>水库库容曲线
|
||||
|
|
@ -44,10 +49,10 @@ export default function ShuikuBasicInfo() {
|
|||
className={tabVal === '4' ? 'fxdd_hsybjs_toolbar_item hsybjs_checked' : 'fxdd_hsybjs_toolbar_item'}
|
||||
onClick={() => setTabVal('4')}>水库泄流曲线
|
||||
</div>
|
||||
<div
|
||||
{/* <div
|
||||
className={tabVal === '5' ? 'fxdd_hsybjs_toolbar_item hsybjs_checked' : 'fxdd_hsybjs_toolbar_item'}
|
||||
onClick={() => setTabVal('5')}>月生态流量
|
||||
</div>
|
||||
</div> */}
|
||||
</div>
|
||||
<div
|
||||
className='shuiku-content'
|
||||
|
|
@ -57,8 +62,8 @@ export default function ShuikuBasicInfo() {
|
|||
{tabVal === "2" ? <TzParams /> : null}
|
||||
{tabVal === "3" ? <KrLine dataInfo={data}/> : null}
|
||||
{tabVal === "4" ? <XlLine /> : null}
|
||||
{tabVal === "5" ? <MonthLl dataInfo={data}/> : null}
|
||||
|
||||
{/* {tabVal === "5" ? <MonthLl dataInfo={data}/> : null} */}
|
||||
{tabVal === "5" ? <BuildInfo /> : null}
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
|
|
@ -69,10 +69,23 @@ export default function ProjectBasciInfo() {
|
|||
}
|
||||
|
||||
const fileChange = (info) => {
|
||||
|
||||
let newFileList = [...info.fileList];
|
||||
newFileList = newFileList.slice(-1);
|
||||
// 处理文件状态
|
||||
newFileList = newFileList.map(file => {
|
||||
if (file.response) {
|
||||
return {
|
||||
...file,
|
||||
status: 'done', // 确保状态正确
|
||||
url: file.response.url,
|
||||
fileId: file.response.data?.fileId
|
||||
};
|
||||
}
|
||||
return file;
|
||||
});
|
||||
if (info.file.status === "done") {
|
||||
setLoading(false);
|
||||
|
||||
message.success(`${info.file.name} 上传成功`);
|
||||
}
|
||||
if (info.file.status === "uploading") {
|
||||
setLoading(true);
|
||||
|
|
@ -88,7 +101,7 @@ export default function ProjectBasciInfo() {
|
|||
return file.response?.data?.fileId
|
||||
})
|
||||
setFileIds(fileIds)
|
||||
setFileList(info.fileList)
|
||||
setFileList(newFileList)
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -138,6 +151,8 @@ export default function ProjectBasciInfo() {
|
|||
|
||||
}
|
||||
}
|
||||
console.log('f', fileList);
|
||||
|
||||
useEffect(() => {
|
||||
getData()
|
||||
}, [])
|
||||
|
|
@ -364,31 +379,46 @@ export default function ProjectBasciInfo() {
|
|||
maxCount={1}
|
||||
disabled={loading}
|
||||
beforeUpload={beforeUpload}
|
||||
itemRender={(origin,file) => {
|
||||
return (
|
||||
<div style={{display:"flex",alignItems:"center",columnGap:10}}>
|
||||
showUploadList={false}
|
||||
>
|
||||
{fileList.map(file => (
|
||||
<div key={file.uid} style={{ display: "flex", alignItems: "center", columnGap: 10 }}>
|
||||
<PaperClipOutlined />
|
||||
<span
|
||||
style={{ cursor: "pointer" }}
|
||||
onClick={() => { setPerviewOpen(true); setIframeId(file.response?.data?.fileId)}}
|
||||
>
|
||||
{file?.name}</span>
|
||||
{skdisabled ? null :
|
||||
<DeleteOutlined
|
||||
style={{ marginLeft: 20, cursor: "pointer" }}
|
||||
onClick={() => deleteFile(file.response?.data?.fileId)}
|
||||
/>
|
||||
onClick={(e) => {
|
||||
e.stopPropagation(); // 阻止触发上传
|
||||
if (file.response?.data?.fileId) {
|
||||
setPerviewOpen(true);
|
||||
setIframeId(file.response.data.fileId);
|
||||
}
|
||||
</div>
|
||||
)
|
||||
}}
|
||||
>
|
||||
{skdisabled ? null :
|
||||
<div style={{display:"flex",alignItems:"center",columnGap:10,color:"#4f85ec",cursor:skdisabled?"not-allowed":"pointer"}}>
|
||||
<PaperClipOutlined />
|
||||
<a style={{cursor:"pointer"}}>上传PDF文件</a>
|
||||
{file.name}
|
||||
</span>
|
||||
{!skdisabled && (
|
||||
<DeleteOutlined
|
||||
style={{ marginLeft: 20, cursor: "pointer" }}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation(); // 阻止触发上传
|
||||
deleteFile(file.response?.data?.fileId);
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
}
|
||||
))}
|
||||
{!skdisabled && fileList.length === 0 && (
|
||||
<div style={{
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
columnGap: 10,
|
||||
color: "#4f85ec",
|
||||
cursor: "pointer"
|
||||
}}>
|
||||
<PaperClipOutlined />
|
||||
<a>上传PDF文件</a>
|
||||
</div>
|
||||
)}
|
||||
</Upload>
|
||||
</Form.Item>
|
||||
</Col>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ const ToolBar = ({ setSearchVal, onExport, storeData, role }) => {
|
|||
<Form form={form} className='toolbarBox' layout="inline" onFinish={onFinish}>
|
||||
<Form.Item label="类型" name="types">
|
||||
<Select options={[
|
||||
{value:1,label:'大事记'}, {value:2,label:'调度指令'}, {value:3,label:'维修养护'},{value:4,label:'安全鉴定'}, {value:5,label:"除险加固"}, {value:6,label:'白蚁普查'}
|
||||
{value:1,label:'大事记'}, {value:2,label:'调度指令'}, {value:3,label:'维修养护'},{value:4,label:'安全鉴定'}, {value:5,label:"除险加固"}, {value:6,label:'白蚁监测'}
|
||||
]} allowClear mode='multiple' maxTagCount='responsive' style={{ width: "200px" }}/>
|
||||
</Form.Item>
|
||||
<Form.Item label="发生日期" name="tm">
|
||||
|
|
|
|||
|
|
@ -182,21 +182,21 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
|
|||
<Col span={12}>
|
||||
<Form.Item
|
||||
label="施行日期"
|
||||
name="announcementDate"
|
||||
name="implementationDate"
|
||||
getValueFromEvent={(e, dateString) => dateString}
|
||||
getValueProps={(value) => ({ value: value ? moment(value) : undefined })}
|
||||
>
|
||||
<DatePicker disabled={mode === 'view'} format={'YYYY-MM-DD HH:mm:ss'} style={{ width: '100%' }} allowClear />
|
||||
<DatePicker disabled={mode === 'view'} format={'YYYY-MM-DD'} style={{ width: '100%' }} allowClear />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item
|
||||
label="公布日期"
|
||||
name="implementationDate"
|
||||
name="announcementDate"
|
||||
getValueFromEvent={(e, dateString) => dateString}
|
||||
getValueProps={(value) => ({ value: value ? moment(value) : undefined })}
|
||||
>
|
||||
<DatePicker disabled={mode === 'view'} format={'YYYY-MM-DD HH:mm:ss'} style={{ width: '100%' }} allowClear />
|
||||
<DatePicker disabled={mode === 'view'} format={'YYYY-MM-DD'} style={{ width: '100%' }} allowClear />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
|
|
|
|||
|
|
@ -44,16 +44,16 @@ const Page = () => {
|
|||
},
|
||||
{
|
||||
title: '公布日期', key: 'announcementDate', dataIndex: 'announcementDate',
|
||||
render: (value) => <span>{dayjs(value).format('YYYY-MM-DD')}</span>,
|
||||
render: (value) => <span>{value ? dayjs(value).format('YYYY-MM-DD'):''}</span>,
|
||||
},
|
||||
{
|
||||
title: '施行日期', key: 'implementationDate', dataIndex: 'implementationDate'
|
||||
},
|
||||
{
|
||||
title: '上传时间', key: 'uploadDate', dataIndex: 'uploadDate'
|
||||
title: '上传时间', key: 'createTime', dataIndex: 'createTime'
|
||||
},
|
||||
{
|
||||
title: '附件', key: 'files', dataIndex: 'files',render:(v,r)=><a onClick={()=>download(v[0].fileId,v[0]?.fileName)}><PaperClipOutlined />{v[0]?.fileName}</a>
|
||||
title: '附件', key: 'files', dataIndex: 'files', render: (v, r) => <a onClick={() => download(v[0].fileId, v[0]?.fileName)}>{ v[0]?.fileName ?<PaperClipOutlined />:''}{v[0]?.fileName}</a>
|
||||
},
|
||||
{
|
||||
title: '操作', key: 'operation',
|
||||
|
|
|
|||
|
|
@ -18,12 +18,12 @@ const ToolBar = ({ setSearchVal, onSave, storeData, role }) => {
|
|||
if (values.implementationDate) {
|
||||
// 施行日期
|
||||
values.stmIm= values.implementationDate[0].format('YYYY-MM-DD HH:mm:ss')
|
||||
values.etmIm= values.implementationDate[0].format('YYYY-MM-DD HH:mm:ss')
|
||||
values.etmIm= values.implementationDate[1].format('YYYY-MM-DD HH:mm:ss')
|
||||
}
|
||||
if (values.uploadTime) {
|
||||
// 上传日期
|
||||
values.stmUd= values.uploadTime[0].format('YYYY-MM-DD HH:mm:ss')
|
||||
values.etmUd= values.uploadTime[0].format('YYYY-MM-DD HH:mm:ss')
|
||||
values.etmUd= values.uploadTime[1].format('YYYY-MM-DD HH:mm:ss')
|
||||
}
|
||||
|
||||
delete values.announcementDate
|
||||
|
|
|
|||
|
|
@ -280,7 +280,7 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
|
|||
labelCol={{ span: 3 }}
|
||||
wrapperCol={{ span: 19 }}
|
||||
>
|
||||
<InputNumber min={0} disabled={mode==='view'} style={{width:'100%'}} allowClear />
|
||||
<Input disabled={mode==='view'} style={{width:'100%'}} allowClear />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
|
|
|
|||
|
|
@ -30,7 +30,8 @@ const Page = () => {
|
|||
},{
|
||||
label: "政治学习教育",
|
||||
value:4
|
||||
},{
|
||||
},
|
||||
{
|
||||
label: "其他",
|
||||
value:5
|
||||
},
|
||||
|
|
@ -51,7 +52,7 @@ const Page = () => {
|
|||
{ title: '主办单位', key: 'unit', dataIndex: 'unit', width: 150 },
|
||||
{
|
||||
title: '培训分类', key: 'type', dataIndex: 'type', width: 150,
|
||||
render: (v) => <span>{types[v]?.label}</span>
|
||||
render: (v) => <span>{types[v - 1]?.label}</span>
|
||||
},
|
||||
{
|
||||
title: '培训内容', key: 'content', dataIndex: 'content', width: 200,ellipsis: true
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ const Page = ({ uploadUrl, downloadUrl, type, getFormInfo, formJsonData }) => {
|
|||
<p className="ant-upload-drag-icon">
|
||||
<InboxOutlined />
|
||||
</p>
|
||||
<p className="ant-upload-text">点击或将文件拖拽到这里上传 支持扩展名:jpeg、png</p>
|
||||
<p className="ant-upload-text">点击或将文件拖拽到这里上传</p>
|
||||
</Dragger>}
|
||||
<div className='flex'>
|
||||
{fileListHj?.[item1.key]?.map((item) => {
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@ const Page = ({ uploadUrl, downloadUrl, type, getFormInfo, formJsonData }) => {
|
|||
<p className="ant-upload-drag-icon">
|
||||
<InboxOutlined />
|
||||
</p>
|
||||
<p className="ant-upload-text">点击或将文件拖拽到这里上传 支持扩展名:jpeg、png</p>
|
||||
<p className="ant-upload-text">点击或将文件拖拽到这里上传</p>
|
||||
</Dragger>}
|
||||
<div className='flex'>
|
||||
{fileListHj?.[item1.key]?.map((item) => {
|
||||
|
|
|
|||
|
|
@ -11,14 +11,14 @@ const ToolBar = ({ setSearchVal, onSave, storeData, role }) => {
|
|||
const [showGj, setShowGj] = useState(false)
|
||||
const onFinish = (values) => {
|
||||
let dateSo;
|
||||
if (values.tm) {
|
||||
if (values.createTime) {
|
||||
dateSo = {
|
||||
start: moment(values.tm[0]).format('YYYY-MM-DD HH:mm:ss'),
|
||||
end: moment(values.tm[1]).format('YYYY-MM-DD HH:mm:ss')
|
||||
stm: moment(values.createTime[0]).format('YYYY-MM-DD'),
|
||||
etm: moment(values.createTime[1]).format('YYYY-MM-DD')
|
||||
}
|
||||
}
|
||||
delete values.tm
|
||||
setSearchVal({ ...values, dateSo });
|
||||
delete values.createTime
|
||||
setSearchVal({ ...values, ...dateSo });
|
||||
}
|
||||
|
||||
const opntios = [
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ const Page = ({ treeSelect }) => {
|
|||
<div className={styles.listborder} style={{ padding: '0 10px', marginBottom: 5 }}>{data?.status?'启用':'禁用'}</div>
|
||||
<div className={styles.contentBor} style={{ padding: '0 10px', marginBottom: 5, height: '35%' }}>
|
||||
<div className={styles.listborder} style={{ padding: '0 10px', height: '30%' }}>法律依据</div>
|
||||
{data?.legalName ?? '无内容请添加'}
|
||||
{data?.legalContent ?? '无内容请添加'}
|
||||
</div>
|
||||
|
||||
<div style={{ display: 'flex', height: '33%' }}>
|
||||
|
|
|
|||
|
|
@ -131,6 +131,16 @@ const Page = ({ setTreeSelect }) => {
|
|||
return res
|
||||
}
|
||||
}
|
||||
|
||||
const getFirstLeafKey =(treeData) =>{
|
||||
if (!treeData || !treeData.length) return null;
|
||||
|
||||
let node = treeData[0];
|
||||
while (node.children && node.children.length > 0) {
|
||||
node = node.children[0];
|
||||
}
|
||||
return {id:node.id,name:node.legalName};
|
||||
}
|
||||
useEffect(() => {
|
||||
httpget(apiurl.szzf.clyj.tree).then(res => {
|
||||
setData(res.data)
|
||||
|
|
@ -145,11 +155,13 @@ const Page = ({ setTreeSelect }) => {
|
|||
// setSelect([res.data[0].id])
|
||||
// getFirstChild(res.data)
|
||||
|
||||
setSelect([getFirstChild(res.data).id]);
|
||||
// setSelect([getFirstChild(res.data).id]);
|
||||
setSelect([getFirstLeafKey(res.data)?.id])
|
||||
setExpandedKeys([getFirstLeafKey(res.data)?.id])
|
||||
setTreeSelect(
|
||||
[{
|
||||
key: getFirstChild(res.data).id,
|
||||
name: getFirstChild(res.data).legalName,
|
||||
key: getFirstLeafKey(res.data)?.id,
|
||||
name: getFirstLeafKey(res.data)?.name,
|
||||
|
||||
}]
|
||||
|
||||
|
|
|
|||
|
|
@ -156,6 +156,16 @@ const FormZdy = ({ fileKey,typeName = "ddForm", formJson, getFormInfo, type, for
|
|||
|
||||
}, [type, formJsonData, isModalOpen])
|
||||
|
||||
const disableParentNodes =(treeData) => {
|
||||
return treeData.map(node => {
|
||||
const newNode = { ...node };
|
||||
if (node.children && node.children.length > 0) {
|
||||
newNode.disabled = true;
|
||||
newNode.children = disableParentNodes(node.children);
|
||||
}
|
||||
return newNode;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
return (
|
||||
|
|
@ -172,7 +182,7 @@ const FormZdy = ({ fileKey,typeName = "ddForm", formJson, getFormInfo, type, for
|
|||
labelCol={item.labelCol}
|
||||
rules={[{ required: item.required, message: '请输入' + item.label }]}
|
||||
>
|
||||
<Input disabled={type == 'view' || item.disabled} placeholder={item.placeholder} addonAfter={item.addonAfter}/>
|
||||
<Input disabled={type == 'view' || item.disabled} placeholder={item.placeholder} />
|
||||
</Form.Item>}
|
||||
{item.type == "title" &&
|
||||
<Form.Item
|
||||
|
|
@ -253,7 +263,7 @@ const FormZdy = ({ fileKey,typeName = "ddForm", formJson, getFormInfo, type, for
|
|||
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
|
||||
allowClear
|
||||
fieldNames={item.fieldNames}
|
||||
treeData={item.treeData}
|
||||
treeData={disableParentNodes(item.treeData)}
|
||||
treeCheckable={item.multiple}
|
||||
disabled={type == 'view'}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -194,7 +194,7 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
|
|||
<Col span={12}>
|
||||
<div className="file-item" style={{ width: "75%",marginTop:5 }}>
|
||||
<div className='file-description'>
|
||||
{file.name.indexOf('.docx') > -1 ?
|
||||
{file.name.indexOf('.doc') > -1 ?
|
||||
<div
|
||||
onClick={() => { download(file.response?.data?.fileId) }}
|
||||
style={{ cursor: 'pointer' }}
|
||||
|
|
@ -220,7 +220,7 @@ const ModalForm = ({ mode, record, onEdit, onSave, onSimilarSave }) => {
|
|||
<FileZipOutlined style={{ fontSize: 40 }} />
|
||||
</div>
|
||||
:
|
||||
file.name.indexOf('.xlsx') > -1 ?
|
||||
file.name.indexOf('.xls') > -1 ?
|
||||
<div
|
||||
onClick={() => { download(file.response?.data?.fileId) }}
|
||||
style={{ cursor: 'pointer' }}
|
||||
|
|
|
|||
|
|
@ -33,13 +33,13 @@ const Page = () => {
|
|||
},
|
||||
{
|
||||
title: '发布日期', key: 'releaseDate', dataIndex: 'releaseDate',
|
||||
render: (value) => <span>{dayjs(value).format('YYYY-MM-DD')}</span>,
|
||||
render: (value) => <span>{value ? dayjs(value).format('YYYY-MM-DD') : ''}</span>,
|
||||
},
|
||||
{
|
||||
title: '发布单位', key: 'fillUnit', dataIndex: 'fillUnit'
|
||||
},
|
||||
{
|
||||
title: '上传时间', key: 'uploadDate', dataIndex: 'uploadDate'
|
||||
title: '上传时间', key: 'minUpTime', dataIndex: 'minUpTime'
|
||||
},
|
||||
{
|
||||
title: '附件', key: 'files', dataIndex: 'files', render:(v,r)=><a onClick={()=>download(v[0].fileId,v[0]?.fileName)}><PaperClipOutlined />{v[0]?.fileName}</a>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,110 @@ import { httpget2, httppost2,xyt_httpget2 } from '../../../utils/request';
|
|||
import apiurl from '../../../service/apiurl';
|
||||
import "./index.less"
|
||||
export default function Zzjgck() {
|
||||
const demoList = [
|
||||
{
|
||||
title: '中共红安县檀树岗水库支部委员会',
|
||||
key: 100,
|
||||
parentId: 0,
|
||||
children: [
|
||||
{
|
||||
title: "第一党小组委员会",
|
||||
parentId: 100,
|
||||
key: 101,
|
||||
children: [
|
||||
{
|
||||
title: "周志才",
|
||||
parentId: 101,
|
||||
key: 103,
|
||||
},
|
||||
{
|
||||
title: "刘立新",
|
||||
parentId: 101,
|
||||
key: 104,
|
||||
},
|
||||
{
|
||||
title: "陈辉来",
|
||||
parentId: 101,
|
||||
key: 105,
|
||||
},
|
||||
{
|
||||
title: "王胜娣",
|
||||
parentId: 101,
|
||||
key: 106,
|
||||
},
|
||||
{
|
||||
title: "高服气",
|
||||
parentId: 101,
|
||||
key: 107,
|
||||
},
|
||||
{
|
||||
title: "李帅华",
|
||||
parentId: 101,
|
||||
key: 108,
|
||||
},
|
||||
{
|
||||
title: "潘宏祥",
|
||||
parentId: 101,
|
||||
key: 109,
|
||||
},
|
||||
{
|
||||
title: "耿协成",
|
||||
parentId: 101,
|
||||
key: 110,
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "第二党小组委员会",
|
||||
parentId: 100,
|
||||
key: 102,
|
||||
children: [
|
||||
{
|
||||
title: "吴吉琛",
|
||||
parentId: 102,
|
||||
key: 111,
|
||||
},
|
||||
{
|
||||
title: "吴胜林",
|
||||
parentId: 102,
|
||||
key: 112,
|
||||
},
|
||||
{
|
||||
title: "刘义华",
|
||||
parentId: 102,
|
||||
key: 113,
|
||||
},
|
||||
{
|
||||
title: "陈斌",
|
||||
parentId: 102,
|
||||
key: 113,
|
||||
},
|
||||
{
|
||||
title: "董希贵",
|
||||
parentId: 102,
|
||||
key: 114,
|
||||
},
|
||||
{
|
||||
title: "吴昌元",
|
||||
parentId: 102,
|
||||
key: 115,
|
||||
},
|
||||
{
|
||||
title: "石守银",
|
||||
parentId: 102,
|
||||
key: 116,
|
||||
},
|
||||
{
|
||||
title: "高粱",
|
||||
parentId: 102,
|
||||
key: 117,
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
const [deptList, setDeptList] = useState([])
|
||||
|
|
@ -56,17 +159,17 @@ export default function Zzjgck() {
|
|||
|
||||
// 演示用
|
||||
|
||||
const nameObj = {
|
||||
"刘测": "高伟",
|
||||
"若依": "刘立新",
|
||||
"张雨齐": "彭双林",
|
||||
"杜飞": "王忠明",
|
||||
"李斯": "刘艳华",
|
||||
"李峰": "吴吉琛",
|
||||
"刘玉": "赵国栋",
|
||||
"李星雨": "李星雨",
|
||||
// const nameObj = {
|
||||
// "刘测": "高伟",
|
||||
// "若依": "刘立新",
|
||||
// "张雨齐": "彭双林",
|
||||
// "杜飞": "王忠明",
|
||||
// "李斯": "刘艳华",
|
||||
// "李峰": "吴吉琛",
|
||||
// "刘玉": "赵国栋",
|
||||
// "李星雨": "李星雨",
|
||||
|
||||
}
|
||||
// }
|
||||
const handleTreeList = (dept, user) => {
|
||||
const deptArr = dept.map(item => {
|
||||
return {
|
||||
|
|
@ -77,7 +180,7 @@ export default function Zzjgck() {
|
|||
children: user.filter(u => u.deptId == item.deptId).map(u => ({
|
||||
...u,
|
||||
value: u.userId,
|
||||
title: nameObj[u.nickName],
|
||||
title: u.nickName,
|
||||
}))
|
||||
}
|
||||
})
|
||||
|
|
@ -93,11 +196,13 @@ export default function Zzjgck() {
|
|||
}, [deptUserList, deptList])
|
||||
|
||||
const jgOptions = useMemo(() => {
|
||||
if (treeList.length > 0) {
|
||||
return jgOption(treeList);
|
||||
} else {
|
||||
return {}
|
||||
}
|
||||
return jgOption(demoList)
|
||||
// if (treeList.length > 0) {
|
||||
|
||||
// return jgOption(treeList);
|
||||
// } else {
|
||||
// return {}
|
||||
// }
|
||||
}, [treeList])
|
||||
|
||||
useEffect(() => {
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ export default function jgOption(data1) {
|
|||
fontSize: 18,
|
||||
color: '#000',
|
||||
align: 'center',
|
||||
padding: [10, 10],
|
||||
padding: [5, 10],
|
||||
backgroundColor: {
|
||||
image: three,
|
||||
repeat: "norepeat",
|
||||
|
|
|
|||
|
|
@ -86,8 +86,6 @@ const Page = () => {
|
|||
|
||||
const { tableProps, search, refresh } = usePageTable(createCrudService(apiurl.ddjl.page).find_noCode);
|
||||
|
||||
console.log(tableProps);
|
||||
|
||||
/**
|
||||
* @description 处理成功的回调
|
||||
*/
|
||||
|
|
@ -109,7 +107,7 @@ const Page = () => {
|
|||
"pageSize": 10,
|
||||
"pageNumber": 1
|
||||
},
|
||||
"dateSo": {
|
||||
"dateTimeSo": {
|
||||
"start": moment().format('YYYY-01-01 00:00:00'),
|
||||
"end": moment().format('YYYY-MM-DD HH:mm:ss')
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,24 +21,24 @@ const ToolBar = ({ setSearchVal, onSave, storeData, role, setIsChecked, setDelVa
|
|||
}
|
||||
|
||||
const onFinish = (values) => {
|
||||
let dateSo;
|
||||
let dateTimeSo;
|
||||
if (values.tm) {
|
||||
dateSo = {
|
||||
dateTimeSo = {
|
||||
start: moment(values.tm[0]).format('YYYY-MM-DD 00:00:00'),
|
||||
end: moment(values.tm[1]).format('YYYY-MM-DD 00:00:00')
|
||||
}
|
||||
}
|
||||
delete values.tm
|
||||
setSearchVal({...values, dateSo});
|
||||
setSearchVal({...values, dateTimeSo});
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
let dateSo = {
|
||||
let dateTimeSo = {
|
||||
start: moment().format('YYYY-01-01 00:00:00'),
|
||||
end: moment().format('YYYY-MM-DD 00:00:00')
|
||||
}
|
||||
form.setFieldValue("tm", [moment(dateSo.start), moment(dateSo.end)])
|
||||
setSearchVal({ dateSo })
|
||||
form.setFieldValue("tm", [moment(dateTimeSo.start), moment(dateTimeSo.end)])
|
||||
setSearchVal({ dateTimeSo })
|
||||
}, [])
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -97,10 +97,15 @@ const ModalForm = ({ mode, record,onEdit,onSave,onCrudSuccess }) => {
|
|||
try {
|
||||
const result = await httpget2(apiurl.rcgl.zbgl.zbrz.rotaUser, {rotaDate: moment(date).format('YYYY-MM-DD')});
|
||||
if (result.code == 200 && mode == "save") {
|
||||
if (result.data.length > 0) {
|
||||
const dept = result.data.find(item => item.rotaType == 2).userId;
|
||||
const lead = result.data.find(item => item.rotaType == 1).userId;
|
||||
form.setFieldValue("dutyUserId",dept)
|
||||
form.setFieldValue("leaderUserId",lead)
|
||||
} else {
|
||||
form.setFieldValue("dutyUserId",'')
|
||||
form.setFieldValue("leaderUserId",'')
|
||||
}
|
||||
}
|
||||
|
||||
} catch (error) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue