|
|
@@ -179,7 +179,7 @@ onMounted(() => {
|
|
|
})
|
|
|
|
|
|
const riseRate = computed(() => {
|
|
|
- let _info = useSystemStore().saleBatches.find(item => item.saleBatch.id == info.value.batchId)
|
|
|
+ let _info = useSystemStore().saleBatches.find(item => item.id == info.value.batchId)
|
|
|
let _back = null
|
|
|
if (_info) {
|
|
|
_back = _info.extensions.find(item => {
|
|
|
@@ -191,7 +191,7 @@ const riseRate = computed(() => {
|
|
|
})
|
|
|
|
|
|
const riseRatePercent = computed(() => {
|
|
|
- let _info = useSystemStore().saleBatches.find(item => item.saleBatch.id == info.value.batchId)
|
|
|
+ let _info = useSystemStore().saleBatches.find(item => item.id == info.value.batchId)
|
|
|
let _back = null
|
|
|
if (_info) {
|
|
|
_back = _info.extensions.find(item => {
|