|
@@ -75,7 +75,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { onActivated, onMounted, ref } from 'vue'
|
|
|
+import { nextTick, onActivated, onMounted, ref } from 'vue'
|
|
|
import HcDataModal from './components/order/dataModal.vue'
|
|
|
import { getArrValue, getObjValue } from 'js-fast-way'
|
|
|
import mainApi from '~api/debit-pay/start-work/order.js'
|
|
@@ -244,7 +244,9 @@ const reportClick = () => {
|
|
|
type: 3,
|
|
|
periodId: searchForm.value.meterPeriodId,
|
|
|
}
|
|
|
- isReport.value = true
|
|
|
+ nextTick(() => {
|
|
|
+ isReport.value = true
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
//上报完成
|