初始化 antd-pro
This commit is contained in:
31
admin-web/src/utils/Yuan.js
Normal file
31
admin-web/src/utils/Yuan.js
Normal file
@@ -0,0 +1,31 @@
|
||||
import React from 'react';
|
||||
import { yuan } from '@/components/Charts';
|
||||
/**
|
||||
* 减少使用 dangerouslySetInnerHTML
|
||||
*/
|
||||
export default class Yuan extends React.PureComponent {
|
||||
componentDidMount() {
|
||||
this.rendertoHtml();
|
||||
}
|
||||
|
||||
componentDidUpdate() {
|
||||
this.rendertoHtml();
|
||||
}
|
||||
|
||||
rendertoHtml = () => {
|
||||
const { children } = this.props;
|
||||
if (this.main) {
|
||||
this.main.innerHTML = yuan(children);
|
||||
}
|
||||
};
|
||||
|
||||
render() {
|
||||
return (
|
||||
<span
|
||||
ref={ref => {
|
||||
this.main = ref;
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user