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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
<template> <template>
<view v-if="isShow"> <view v-if="isShow" >
<view class="serchs guodu" :style="tx?'':'width:90vw'"> <view class="serchs guodu" :style="tx?'':'width:90vw'">
<view class="ipt"> <view class="ipt">
<input type="text" placeholder="物料名称/物料编码/物料简拼" v-model="form.wlParamInfo" @confirm="search" /> <input type="text" placeholder="物料名称/物料编码/物料简拼" v-model="form.wlParamInfo" @confirm="search" />
@ -203,9 +203,16 @@
setTimeout(()=>{ setTimeout(()=>{
timeout.value = true timeout.value = true
},500) },500)
} transition.value = false;
setTimeout(() => {
transition.value = true;
}, 50)
} else {
transition.value = false;
}
} }
) )
const transition = ref(false)
const Material = ref([]) const Material = ref([])
const getWaringMaterial = () => { const getWaringMaterial = () => {
@ -789,7 +796,7 @@
display: inline-block; display: inline-block;
width: 14vw; width: 14vw;
height: 10vw; height: 10vw;
background: rgba(255, 255, 255, 0.9); background: rgba(255, 255, 255, 0.4);
border-radius: 1.1vw; border-radius: 1.1vw;
margin-right: 0.6vw; margin-right: 0.6vw;
position: relative; position: relative;

View File

@ -42,9 +42,11 @@
</view> </view>
</view> --> </view> -->
</view> </view>
<view class="mengban" style="background: #fff;width: 91.8vw;right:0;left: 8.2vw;" v-if="nomessageshow" >
<nomessage cont="暂无数据" :show="nomessageshow" /> <defaultr cont="暂无数据" style="z-index: 999;"></defaultr>
<view class="zhedang" v-if="nomessageshow"></view> </view>
<!-- <nomessage cont="暂无数据" :show="nomessageshow" />
<view class="zhedang" v-if="nomessageshow"></view> -->
</view> </view>
<tanchuang :show="badshow" font="确定要回退这个请领单吗" @back="badshow=false;" @right="huitui"> </tanchuang> <tanchuang :show="badshow" font="确定要回退这个请领单吗" @back="badshow=false;" @right="huitui"> </tanchuang>
<tanchuang :show="chukushow" font="确定要出库吗" @back="chukushow=false;" @right="chukuclick"> </tanchuang> <tanchuang :show="chukushow" font="确定要出库吗" @back="chukushow=false;" @right="chukuclick"> </tanchuang>
@ -1281,4 +1283,13 @@
height: 500rpx; height: 500rpx;
background-color: #fff; 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> </style>