|
@@ -74,7 +74,7 @@
|
|
|
|
|
|
<script setup>
|
|
|
/*----------------------------------依赖引入-----------------------------------*/
|
|
|
-import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
+import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
import { projectApi } from "@/api/business/project.js";
|
|
@@ -163,13 +163,19 @@ function tabsClick(e) {
|
|
|
onReady(() => {});
|
|
|
|
|
|
onShow(() => {
|
|
|
- init();
|
|
|
//调用系统主题颜色
|
|
|
proxy.$settingStore.systemThemeColor([1]);
|
|
|
});
|
|
|
|
|
|
onLoad((options) => {
|
|
|
init();
|
|
|
+ uni.$on("projectMange_record", function (value) {
|
|
|
+ init();
|
|
|
+ });
|
|
|
+});
|
|
|
+
|
|
|
+onUnload(() => {
|
|
|
+ uni.$off("projectMange_record"); //将值删除监听器
|
|
|
});
|
|
|
</script>
|
|
|
|