<template>
<view bubble="true" :eventPenetrationEnabled="true">
<view class="bbb" @touchmove.stop="" @touchstart.stop="" @touchend.stop="" @longpress.stop="longpress">
</view>
<input :confirm-hold="true" style="width:750rpx;height:100rpx;border:1px solid red;" type="text" v-model="inputText">
</view>
<!-- <cacheimg class="aaa" style="width:750rpx;height:300rpx;" src="https://slim.obs.cn-south-1.myhuaweicloud.com:443/file%2Fb37a8c8034fd4da09c5ebcf1758b426a.JPG"></cacheimg> -->
</template>
<script setup lang="ts">
import { ref, reactive } from "vue";
import { onReady, onShow, onLoad,onUnload } from "@dcloudio/uni-app";
// import { userData as userDataStore } from "@/store/userData";
// import { systemInfo as systemInfoStore } from "@/store/systemInfo";
// import { getGroupMember } from "@/api/api";
// import { updateGroupProfile } from "@/hooks/imHooks";
// import { config as configStore } from "@/store/config";
//import cacheimg from '@/components/cacheimg.vue'
const goBack = () => {
uni.navigateBack();
};
const longpress = (e:any)=>{
e.stopPropagation();
e.preventDefault();
}
const inputText = ref('')
onReady(() => {});
onLoad((option: any) => {
if (option.groupID) {
}
});
onUnload(() => {});
onShow(() => {});
</script>
<style lang="scss" scoped>
.bbb{
width:750rpx;
height:500rpx;
background:blue;
}
</style>
0 个回复