This commit is contained in:
wangweidong 2025-12-26 17:14:23 +08:00
parent 51bbc2ac2b
commit b1f5b3ce49
6 changed files with 32 additions and 10 deletions

View File

@ -1,6 +1,6 @@
<template>
<view>
<view class="letbox">
<view class="letbox" :style="style">
<view class="logo tp">
<image src="/static/shouye/logo2.png" mode="aspectFill"></image>
</view>
@ -25,6 +25,9 @@
const props = defineProps({
list: {
type: Array
},
style:{
type:String
}
});
const emit = defineEmits(['navurl'])

View File

@ -402,7 +402,6 @@
transition: opacity 1s ease;
.right-top {
margin-top: 80rpx;
width: 100%;
height: 50vh;
background-color: #fff;
@ -525,7 +524,6 @@
}
.right-container-title-nav {
margin-top: 80rpx;
display: flex;
height: 20vh;
position: relative;

View File

@ -82,11 +82,14 @@
.left {
width: 8.2vw;
height: 100vh;
}
.boxrt {
width: calc(100vw - 8.2vw);
background: RGBA(239, 240, 244, 1);
display: flex;
padding-left: 1vw;
padding-top: 2.5vw;
}
</style>

View File

@ -184,7 +184,7 @@
.carditem {
width: 43vw;
height: 14.5vw;
background: rgba(255, 255, 255, 0.9);
background: rgba(255, 255, 255, 0.4);
border-radius: 1.6vw;
position: relative;
margin-bottom: 1.1vw;

View File

@ -203,9 +203,16 @@
setTimeout(()=>{
timeout.value = true
},500)
transition.value = false;
setTimeout(() => {
transition.value = true;
}, 50)
} else {
transition.value = false;
}
}
)
const transition = ref(false)
const Material = ref([])
const getWaringMaterial = () => {
@ -789,7 +796,7 @@
display: inline-block;
width: 14vw;
height: 10vw;
background: rgba(255, 255, 255, 0.9);
background: rgba(255, 255, 255, 0.4);
border-radius: 1.1vw;
margin-right: 0.6vw;
position: relative;

View File

@ -42,9 +42,11 @@
</view>
</view> -->
</view>
<nomessage cont="暂无数据" :show="nomessageshow" />
<view class="zhedang" v-if="nomessageshow"></view>
<view class="mengban" style="background: #fff;width: 91.8vw;right:0;left: 8.2vw;" v-if="nomessageshow" >
<defaultr cont="暂无数据" style="z-index: 999;"></defaultr>
</view>
<!-- <nomessage cont="暂无数据" :show="nomessageshow" />
<view class="zhedang" v-if="nomessageshow"></view> -->
</view>
<tanchuang :show="badshow" font="确定要回退这个请领单吗" @back="badshow=false;" @right="huitui"> </tanchuang>
<tanchuang :show="chukushow" font="确定要出库吗" @back="chukushow=false;" @right="chukuclick"> </tanchuang>
@ -1281,4 +1283,13 @@
height: 500rpx;
background-color: #fff;
}
.mengban {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background: RGBA(239, 240, 244, 0.55);
}
</style>