|
@@ -23,10 +23,18 @@
|
|
|
<icon class="list-icon yysz-icon"></icon>
|
|
<icon class="list-icon yysz-icon"></icon>
|
|
|
<text>应用设置</text>
|
|
<text>应用设置</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
|
|
+ <view class="list-item" @click="handleTest">
|
|
|
|
|
+ <icon class="list-icon yysz-icon"></icon>
|
|
|
|
|
+ <text>测试</text>
|
|
|
|
|
+ </view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<!-- 底部 -->
|
|
<!-- 底部 -->
|
|
|
<CustomTabBar :currentTabNumber="3"></CustomTabBar>
|
|
<CustomTabBar :currentTabNumber="3"></CustomTabBar>
|
|
|
|
|
+
|
|
|
|
|
+ <danyuanMuluVue ref="testRef"></danyuanMuluVue>
|
|
|
|
|
+
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -46,6 +54,8 @@
|
|
|
reactive,
|
|
reactive,
|
|
|
ref
|
|
ref
|
|
|
} from "vue";
|
|
} from "vue";
|
|
|
|
|
+ import danyuanMuluVue from '@/pages/xinshuxue/components/danyuanMulu.vue';
|
|
|
|
|
+
|
|
|
|
|
|
|
|
let myInfoData = reactive({
|
|
let myInfoData = reactive({
|
|
|
userImg: '',
|
|
userImg: '',
|
|
@@ -55,7 +65,13 @@
|
|
|
nickName: '',
|
|
nickName: '',
|
|
|
icon: '',
|
|
icon: '',
|
|
|
});
|
|
});
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
|
|
+ /***************** 测试 ******************/
|
|
|
|
|
+ const testRef = ref(null)
|
|
|
|
|
+ function handleTest() {
|
|
|
|
|
+ testRef.value.showPopup(1)
|
|
|
|
|
+ }
|
|
|
|
|
+ /***************** 测试 ******************/
|
|
|
|
|
|
|
|
// 获取用户数据
|
|
// 获取用户数据
|
|
|
function getMyInfo() {
|
|
function getMyInfo() {
|