|
@@ -58,7 +58,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { onActivated, ref, watch } from 'vue'
|
|
|
+import { onMounted, ref, watch } from 'vue'
|
|
|
import { useAppStore } from '~src/store'
|
|
|
import { getErtractInfo } from '~api/other'
|
|
|
import { getArrValue } from 'js-fast-way'
|
|
@@ -72,7 +72,7 @@ const projectId = ref(store.getProjectId)
|
|
|
const contractId = ref(store.getContractId)
|
|
|
|
|
|
//渲染完成
|
|
|
-onActivated(() => {
|
|
|
+onMounted(() => {
|
|
|
getTestDataType()
|
|
|
getContractData()
|
|
|
})
|