Merge branch 'master' of git.picaiba.com:g7hoo/chenzhou
This commit is contained in:
commit
b97532e4e1
@ -38,7 +38,10 @@ const rate = computed(() => {
|
|||||||
// .toFixed(2)
|
// .toFixed(2)
|
||||||
// .toString();
|
// .toString();
|
||||||
// return [parseInt(_rate), _rate.split(".")[1]];
|
// return [parseInt(_rate), _rate.split(".")[1]];
|
||||||
return [parseInt(props.rawData.nowYield), props.rawData.nowYield.split(".")[1]];
|
return [
|
||||||
|
parseInt(props.rawData.nowYield),
|
||||||
|
(props.rawData.nowYield + "").split(".")[1],
|
||||||
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
const chart = ref(null);
|
const chart = ref(null);
|
||||||
|
Loading…
Reference in New Issue
Block a user