|
|
@@ -2,7 +2,7 @@
|
|
2
|
2
|
* @Author: dayan_hjm 库存金额
|
|
3
|
3
|
* @Date: 2023-10-23 09:32:12
|
|
4
|
4
|
* @Last Modified by: dayan_hjm
|
|
5
|
|
- * @Last Modified time: 2024-10-23 16:39:46
|
|
|
5
|
+ * @Last Modified time: 2024-10-23 17:25:46
|
|
6
|
6
|
*/
|
|
7
|
7
|
|
|
8
|
8
|
|
|
|
@@ -278,6 +278,7 @@ class LeftMenoyView extends Component {
|
|
278
|
278
|
|
|
279
|
279
|
render() {
|
|
280
|
280
|
const { total } = this.state;
|
|
|
281
|
+ const { changNun } = this.props;
|
|
281
|
282
|
return (
|
|
282
|
283
|
<div className={["eacharView cbLeftMenoyView"]}>
|
|
283
|
284
|
<div id="echarts6_box">
|
|
|
@@ -290,7 +291,8 @@ class LeftMenoyView extends Component {
|
|
290
|
291
|
<div id="echarts61"></div>
|
|
291
|
292
|
<div className="text_total">
|
|
292
|
293
|
<p>
|
|
293
|
|
- <span className="topMsg_number" class="shu1">{total}</span>
|
|
|
294
|
+ {changNun && <span className="topMsg_number">{getThousandNum(Number(total))}</span>}
|
|
|
295
|
+ {!changNun && <span className="topMsg_number" class="shu1">{Number(total)}</span>}
|
|
294
|
296
|
<span className="topMsg_number_2">t</span>
|
|
295
|
297
|
</p>
|
|
296
|
298
|
<span className="topMsg_number_3">总库存</span>
|