fix error
This commit is contained in:
parent
e5bf72435c
commit
efdc7e01c2
@ -89,6 +89,7 @@ class LocStatus extends React.Component{
|
|||||||
|
|
||||||
render (){
|
render (){
|
||||||
let {i18n} = this.props;
|
let {i18n} = this.props;
|
||||||
|
console.log(this.state.list);
|
||||||
return (
|
return (
|
||||||
<Container fluid>
|
<Container fluid>
|
||||||
<Segment className="clearfix">
|
<Segment className="clearfix">
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
* @return {string}
|
* @return {string}
|
||||||
*/
|
*/
|
||||||
export const padding = (str, lng = 0, arrow = -1, txt = '0') => {
|
export const padding = (str, lng = 0, arrow = -1, txt = '0') => {
|
||||||
|
if (!str) str = '';
|
||||||
if (typeof str != 'string') str = str.toString();
|
if (typeof str != 'string') str = str.toString();
|
||||||
if (typeof txt != 'string') txt = txt.toString();
|
if (typeof txt != 'string') txt = txt.toString();
|
||||||
if (!isFinite(lng) || lng <= 0) return str;
|
if (!isFinite(lng) || lng <= 0) return str;
|
||||||
|
Loading…
Reference in New Issue
Block a user