提交 579a0fac authored 作者: 钟是志's avatar 钟是志

Merge remote-tracking branch 'origin/master'

...@@ -38,7 +38,7 @@ export default class WebModal extends Component { ...@@ -38,7 +38,7 @@ export default class WebModal extends Component {
} }
render() { render() {
let {visible, handleCancel, title, width} = this.props; let {visible, handleCancel, title, width, getContainer} = this.props;
const {top} = this.state; const {top} = this.state;
const style = { const style = {
borderRadius: 4, borderRadius: 4,
...@@ -55,9 +55,7 @@ export default class WebModal extends Component { ...@@ -55,9 +55,7 @@ export default class WebModal extends Component {
closable={false} closable={false}
visible={visible} visible={visible}
footer={null} footer={null}
getContainer={() => { getContainer={getContainer !== undefined ? getContainer : undefined}
return getContainer(dom);
}}
destroyOnClose={true} destroyOnClose={true}
width={!!width ? width : 800} width={!!width ? width : 800}
handleCancel={handleCancel} handleCancel={handleCancel}
......
...@@ -167,6 +167,7 @@ export default class userButton extends Component { ...@@ -167,6 +167,7 @@ export default class userButton extends Component {
{/* <Btn get='2' btnOne={()=>{this.showModal('不同意')}} btnTwo={()=>{this.showModal('驳回')}} btnThree={()=>{this.showModal('通过')}}/> */} {/* <Btn get='2' btnOne={()=>{this.showModal('不同意')}} btnTwo={()=>{this.showModal('驳回')}} btnThree={()=>{this.showModal('通过')}}/> */}
<MyModal <MyModal
visible={visibleOk} visible={visibleOk}
getContainer={false}
title={isSecond ? '重新发起' : '通过审批'} title={isSecond ? '重新发起' : '通过审批'}
width={600} width={600}
handleCancel={this.handleCancelOk}> handleCancel={this.handleCancelOk}>
......
差异被折叠。
...@@ -115,6 +115,7 @@ export default class index extends Component { ...@@ -115,6 +115,7 @@ export default class index extends Component {
<div <div
style={{ style={{
height: 650, height: 650,
maxWidth: 1200,
}}> }}>
<a target={'_blank'} href={path} download={pathName}> <a target={'_blank'} href={path} download={pathName}>
下载文件 下载文件
......
...@@ -5,13 +5,11 @@ ...@@ -5,13 +5,11 @@
*/ */
import React, { Component } from 'react'; import React, { Component } from 'react';
import styles from './style.less'; import styles from './style.less';
import { Icon, Alert, Select, Button } from 'antd'; import { Icon } from 'antd';
import AceEditor from 'react-ace';
import AllImg from '../assets/AllFuc.png'; import AllImg from '../assets/AllFuc.png';
import All2Img from '../assets/AllFuc2.png'; import All2Img from '../assets/AllFuc2.png';
import ExcelBtn from '../excelInitFuc'; import ExcelBtn from '../excelInitFuc';
import RollTab from './rollTab'; import RollTab from './rollTab';
const { Option } = Select;
export default class FormulaForm extends Component { export default class FormulaForm extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
...@@ -149,27 +147,6 @@ export default class FormulaForm extends Component { ...@@ -149,27 +147,6 @@ export default class FormulaForm extends Component {
this.refs.rolltab.setCloseAll(); this.refs.rolltab.setCloseAll();
}}> }}>
{this.props.editor} {this.props.editor}
{/* <AceEditor height={600} width={1200}
placeholder='"请输入js语句"'
mode={"javascript"}
theme={"textmate"}
fontSize={12}
value={aceValue}
onChange={this.onAceChange.bind(this)}
showPrintMargin={true}
showGutter={true}
highlightActiveLine={true}
name="UNIQUE_ID_OF_DIV"
// keyboardHandler="vim"
setOptions={{
enableBasicAutocompletion: true,
enableLiveAutocompletion: true,
enableSnippets: true,
showLineNumbers: true,
tabSize: 2,
}}
editorProps={{ $blockScrolling: true }}
/> */}
</div> </div>
</div> </div>
......
import React, {useState, useEffect, useRef} from 'react'; import React, { useState, useEffect, useRef } from 'react';
import styles from './styles.less'; import styles from './styles.less';
import {Modal, Button, Icon, message} from 'antd'; import { Modal, Button, Icon, message } from 'antd';
import ShowItem, {dragEventList, zipImage} from './ShowItem'; import ShowItem, { dragEventList, zipImage } from './ShowItem';
import {apiRequest} from "../../utils/request"; import { apiRequest } from '../../utils/request';
import {deepCopy} from "@/webPublic/one_stop_public/utils/myutils"; import { deepCopy } from '@/webPublic/one_stop_public/utils/myutils';
let fakeFileInfo = { let fakeFileInfo = {
path: '/u/202112/25143111x0ki.jpg', // 超大的图片 path: '/u/202112/25143111x0ki.jpg', // 超大的图片
name: '摇摇后摇.jpg', name: '摇摇后摇.jpg',
}; };
const getContent = (signConfig = [], ratioX) => { const getContent = (signConfig = [], ratioX) => {
let data = deepCopy(signConfig); let data = deepCopy(signConfig);
return JSON.stringify({ return JSON.stringify({
objs: data.map((g) => { objs: data.map(g => {
// 1200 的 x => 1500的 x // 1200 的 x => 1500的 x
// //
g.x = Math.ceil(g.x * ratioX, 10); g.x = Math.ceil(g.x * ratioX, 10);
...@@ -25,7 +24,7 @@ const getContent = (signConfig = [], ratioX) => { ...@@ -25,7 +24,7 @@ const getContent = (signConfig = [], ratioX) => {
g.y = g.y + 20; g.y = g.y + 20;
// g.x = g.x + 20; // g.x = g.x + 20;
} }
if(g.type === 'image'){ if (g.type === 'image') {
g.w = Math.ceil(g.w * ratioX); g.w = Math.ceil(g.w * ratioX);
g.h = Math.ceil(g.h * ratioX); g.h = Math.ceil(g.h * ratioX);
} }
...@@ -35,7 +34,6 @@ const getContent = (signConfig = [], ratioX) => { ...@@ -35,7 +34,6 @@ const getContent = (signConfig = [], ratioX) => {
}); });
}; };
export default function PictureSignature({ export default function PictureSignature({
json, json,
disabled, disabled,
...@@ -45,18 +43,18 @@ export default function PictureSignature({ ...@@ -45,18 +43,18 @@ export default function PictureSignature({
form, form,
// fileInfo, // fileInfo,
...others ...others
}) { }) {
let imageRef = useRef(); let imageRef = useRef();
const [fileInfo, setFileInfo] = useState({...others?.fileInfo}); const [fileInfo, setFileInfo] = useState({ ...others?.fileInfo });
// const [fileInfo, setFileInfo] = useState(fakeFileInfo); // const [fileInfo, setFileInfo] = useState(fakeFileInfo);
const [openEdit, setOpenEdit] = useState(false); const [openEdit, setOpenEdit] = useState(false);
const [showModal, setShowModal] = useState(false); const [showModal, setShowModal] = useState(false);
const [otherProps, setOtherProps] = useState({}); const [otherProps, setOtherProps] = useState({});
const [imageInfo, setImageInfo] = useState(null); const [imageInfo, setImageInfo] = useState(null);
const changeShowModal = () => { const changeShowModal = () => {
if(!showModal){ if (!showModal) {
if (!imageInfo && !disabled) { if (!imageInfo && !disabled) {
zipImage(fileInfo.path, fileInfo.name, otherProps?.backgroundImageWidth).then((res) => { zipImage(fileInfo.path, fileInfo.name, otherProps?.backgroundImageWidth).then(res => {
let image = new Image(); //新建一个img标签(还没嵌入DOM节点) let image = new Image(); //新建一个img标签(还没嵌入DOM节点)
image.src = basicUrl + res; image.src = basicUrl + res;
image.onload = () => { image.onload = () => {
...@@ -83,7 +81,6 @@ export default function PictureSignature({ ...@@ -83,7 +81,6 @@ export default function PictureSignature({
imageRef.current = true; imageRef.current = true;
dragEventList(setOtherProps, otherProps); dragEventList(setOtherProps, otherProps);
} }
}, [otherProps]); }, [otherProps]);
useEffect(() => { useEffect(() => {
...@@ -100,21 +97,28 @@ export default function PictureSignature({ ...@@ -100,21 +97,28 @@ export default function PictureSignature({
} }
}, [json.otherProps]); }, [json.otherProps]);
const {ModalProps, signConfig, footerButtons, originButtons, backgroundImageWidth, saveSignConfigValue = ''} = otherProps; const {
ModalProps,
signConfig,
footerButtons,
originButtons,
backgroundImageWidth,
saveSignConfigValue = '',
showImageWidth = 1200,
} = otherProps;
const handleClickButton = (clickType) => { const handleClickButton = clickType => {
switch (clickType) { switch (clickType) {
case 'startEdit': // 开始签章 case 'startEdit': // 开始签章
// console.log(imageInfo); // console.log(imageInfo);
setOpenEdit(true); setOpenEdit(true);
break; break;
case 'confirm': // 确定 case 'confirm': // 确定
onChangeFile({ ...fileInfo }, imageIndex);
onChangeFile({...fileInfo}, imageIndex);
changeShowModal(); changeShowModal();
break; break;
case 'save': // 保存签章 case 'save': // 保存签章
let ratioX = backgroundImageWidth / 1200; // 本来是 1500 的 图片 宽度变成了 1200 高度变成了 1200/1500 * imageInfo.height; let ratioX = backgroundImageWidth / showImageWidth; // 本来是 1500 的 图片 宽度变成了 1200 高度变成了 1200/1500 * imageInfo.height;
// let ratioY = 1200 / backgroundImageWidth * imageInfo.height; // let ratioY = 1200 / backgroundImageWidth * imageInfo.height;
// console.log(ratioX); // console.log(ratioX);
// return ; // return ;
...@@ -122,33 +126,33 @@ export default function PictureSignature({ ...@@ -122,33 +126,33 @@ export default function PictureSignature({
apiRequest('/ImageLibApi/merge', { apiRequest('/ImageLibApi/merge', {
background: fileInfo?.path, background: fileInfo?.path,
content, content,
}).then((res) => { }).then(res => {
if(form && saveSignConfigValue){ if (form && saveSignConfigValue) {
form.setFieldsValue({ form.setFieldsValue({
[saveSignConfigValue]: content, [saveSignConfigValue]: content,
}) });
} }
if (res && res.path) { if (res && res.path) {
message.success('操作成功'); message.success('操作成功');
let newPath = res.path; let newPath = res.path;
fileInfo.originPath = fileInfo.path; fileInfo.originPath = fileInfo.path;
fileInfo.path = newPath; fileInfo.path = newPath;
setFileInfo({...fileInfo}); setFileInfo({ ...fileInfo });
setOpenEdit(false); setOpenEdit(false);
} }
}) });
break; break;
case 'restore': // 还原图片 case 'restore': // 还原图片
if (fileInfo.originPath) { if (fileInfo.originPath) {
fileInfo.path = fileInfo.originPath; fileInfo.path = fileInfo.originPath;
setFileInfo({...fileInfo}); setFileInfo({ ...fileInfo });
setOpenEdit(false); setOpenEdit(false);
} }
break; break;
default: default:
return true; return true;
} }
} };
const Footer = () => { const Footer = () => {
if (disabled) { if (disabled) {
...@@ -157,10 +161,11 @@ export default function PictureSignature({ ...@@ -157,10 +161,11 @@ export default function PictureSignature({
if (openEdit) { if (openEdit) {
return footerButtons.map(g => { return footerButtons.map(g => {
return ( return (
<Button type={g.type} <Button
type={g.type}
key={g.key} key={g.key}
onClick={() => { onClick={() => {
handleClickButton(g.clickType) handleClickButton(g.clickType);
}} }}
> >
{g.name} {g.name}
...@@ -170,10 +175,11 @@ export default function PictureSignature({ ...@@ -170,10 +175,11 @@ export default function PictureSignature({
} else { } else {
return originButtons.map(g => { return originButtons.map(g => {
return ( return (
<Button type={g.type} <Button
type={g.type}
key={g.key} key={g.key}
onClick={() => { onClick={() => {
handleClickButton(g.clickType) handleClickButton(g.clickType);
}} }}
> >
{g.name} {g.name}
...@@ -187,8 +193,7 @@ export default function PictureSignature({ ...@@ -187,8 +193,7 @@ export default function PictureSignature({
} }
// console.log(imageInfo, fileInfo); // console.log(imageInfo, fileInfo);
return ( return (
<div className={styles.outSideDiv} <div className={styles.outSideDiv}>
>
{fileInfo && fileInfo?.path && ( {fileInfo && fileInfo?.path && (
<img <img
className={styles.onePic} className={styles.onePic}
...@@ -205,9 +210,9 @@ export default function PictureSignature({ ...@@ -205,9 +210,9 @@ export default function PictureSignature({
onCancel={changeShowModal} onCancel={changeShowModal}
getContainer={false} getContainer={false}
className={styles.ModalClass} className={styles.ModalClass}
footer={<Footer/>} footer={<Footer />}
title={'图片签章'} title={'图片签章'}
width={'1250px'} width={showImageWidth + 50 + 'px'}
bodyStyle={{ bodyStyle={{
minHeight: '700px', minHeight: '700px',
overflow: 'auto', overflow: 'auto',
...@@ -223,8 +228,8 @@ export default function PictureSignature({ ...@@ -223,8 +228,8 @@ export default function PictureSignature({
className={styles.modalDiv} className={styles.modalDiv}
style={{ style={{
backgroundImage: `url(${basicUrl + fileInfo?.path})`, backgroundImage: `url(${basicUrl + fileInfo?.path})`,
width: 1200, width: showImageWidth,
height: (imageInfo.height / (imageInfo.width / 1200)), height: imageInfo.height / (imageInfo.width / showImageWidth),
}} }}
alt={'拖拽区域'} alt={'拖拽区域'}
draggable={false} draggable={false}
...@@ -243,14 +248,10 @@ export default function PictureSignature({ ...@@ -243,14 +248,10 @@ export default function PictureSignature({
left: g.x, left: g.x,
}} }}
> >
<div className={styles.draggableIcon} <div className={styles.draggableIcon} data-mes={g.key} draggable={true}>
data-mes={g.key}
draggable={true}>
<Icon type="scissor" /> <Icon type="scissor" />
</div> </div>
<ShowItem {...g} <ShowItem {...g} basicUrl={basicUrl} />
basicUrl={basicUrl}
/>
</div> </div>
); );
})} })}
...@@ -261,6 +262,9 @@ export default function PictureSignature({ ...@@ -261,6 +262,9 @@ export default function PictureSignature({
<img <img
src={basicUrl + fileInfo?.path} src={basicUrl + fileInfo?.path}
alt={fileInfo.name} alt={fileInfo.name}
style={{
width: `${showImageWidth}px`,
}}
/> />
</div> </div>
)} )}
...@@ -272,29 +276,31 @@ export default function PictureSignature({ ...@@ -272,29 +276,31 @@ export default function PictureSignature({
} }
export function SignArray(props) { export function SignArray(props) {
const {value, onChange, basicUrl, json, form} = props; const { value, onChange, basicUrl, json, form } = props;
// console.log(props); // console.log(props);
let files = value?.files || []; let files = value?.files || [];
const onChangeFile = (newFielInfo, imageIndex) => { const onChangeFile = (newFielInfo, imageIndex) => {
if(newFielInfo && newFielInfo.path){ if (newFielInfo && newFielInfo.path) {
files[imageIndex] = newFielInfo; files[imageIndex] = newFielInfo;
value.files = files; value.files = files;
onChange(value); onChange(value);
} }
} };
// console.log(value, '222222222222222') // console.log(value, '222222222222222')
return <div> return (
{ <div>
files.map((g, index) => { {files.map((g, index) => {
return <PictureSignature json={json} return (
<PictureSignature
json={json}
basicUrl={basicUrl} basicUrl={basicUrl}
fileInfo={g} fileInfo={g}
form={form} form={form}
imageIndex={index} imageIndex={index}
onChangeFile={onChangeFile} onChangeFile={onChangeFile}
/> />
}) );
} })}
</div> </div>
);
} }
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
place-items: center; place-items: center;
//min-height: 800px; //min-height: 800px;
img{ img{
width: 1200px; //width: 1200px;
height: auto; height: auto;
} }
} }
......
...@@ -6,6 +6,10 @@ import styles from './style.less'; ...@@ -6,6 +6,10 @@ import styles from './style.less';
import UploadComDiyForQnZy from '@/webPublic/one_stop_public/libs/UploadComDiyForQnZy'; import UploadComDiyForQnZy from '@/webPublic/one_stop_public/libs/UploadComDiyForQnZy';
import {getContainer} from "@/webPublic/one_stop_public/utils/utils"; import {getContainer} from "@/webPublic/one_stop_public/utils/utils";
message.config({
top: 300,
})
export function checkIsImage(path) { export function checkIsImage(path) {
if (!path) { if (!path) {
return false; return false;
...@@ -239,7 +243,16 @@ class UploadCom extends React.Component { ...@@ -239,7 +243,16 @@ class UploadCom extends React.Component {
onCancel={() => this.setState({previewVisible: false})} onCancel={() => this.setState({previewVisible: false})}
width={'90vw'} width={'90vw'}
> >
<img alt="example" style={{width: '100%', height: 'auto'}} src={previewImage}/> <div style={{
textAlign: 'center',
width: '100%',
}}>
<img alt="example" style={{
maxWidth: '1200px',
maxHeight: '700px',
height: 'auto',
}} src={previewImage}/>
</div>
</Modal> </Modal>
</div> </div>
); );
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论