This commit is contained in:
18631081161 2025-06-22 13:56:34 +08:00
parent 9cbf0c071f
commit 0289fa9712
4 changed files with 11 additions and 9 deletions

4
components.d.ts vendored
View File

@ -20,6 +20,10 @@ declare module 'vue' {
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
UniNavBar: typeof import('./components/uni-nav-bar/uni-nav-bar.vue')['default']
UniPopup: typeof import('./components/uni-popup/components/uni-popup/uni-popup.vue')['default']
UniPopupDialog: typeof import('./components/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue')['default']
UniPopupMessage: typeof import('./components/uni-popup/components/uni-popup-message/uni-popup-message.vue')['default']
UniPopupShare: typeof import('./components/uni-popup/components/uni-popup-share/uni-popup-share.vue')['default']
UniStatusBar: typeof import('./components/uni-nav-bar/uni-status-bar.vue')['default']
}
}

View File

@ -1,11 +1,10 @@
<template>
<view>
<view class="" style="width: 100%; height: 715.65rpx; background-color: #D8D8D8;">
</view>
<!-- 返回 -->
<image src="/static/ic_back.png"
<image src="/static/ic_back.png" @click="toBack()"
style="width: 41.98rpx; height: 41.98rpx; position: fixed; left: 30rpx; top: 137rpx;" mode=""></image>
@ -49,20 +48,15 @@
<uni-popup ref="bayPop" type="bottom" style="width: 100%; height: 965.65rpx; background-color: #F7F7F7;">
</uni-popup>
</view>
</template>
<script>
import uniPopup from '@dcloudio/uni-ui/lib/uni-popup/uni-popup.vue'
export default {
components: { uniPopup },
data() {
return {
detailList: [1, 2, 3, 4, 5],
@ -70,6 +64,10 @@
},
methods: {
toBack() {
console.log("777777");
uni.navigateBack();
},
bayOpen() {
this.$refs.bayPop.open();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long