This commit is contained in:
wangweidong 2026-01-20 17:24:26 +08:00
parent 6b02d1cddb
commit 3911d8fae0
2 changed files with 38 additions and 19 deletions

View File

@ -24,7 +24,7 @@
</view>
<view class="bx" style="align-items: flex-end;">
<view>采购日期</view>
<text>{{list.qgDate}}</text>
<text>{{list.qgDate.substring(0,10)}}</text>
</view>
</view>
<view class="top">
@ -78,7 +78,7 @@
</view>
</view>
<view class="cents">
<view>规格型号 {{v.wlSpecificationModel}}</view>
<view>规格型号 <view>{{v.wlSpecificationModel}}</view></view>
<view>采购单位 {{v.wlUnits}}</view>
</view>
<view class="sfj">
@ -137,7 +137,7 @@
<style scoped lang="scss">
.xxxx{
width: 705rpx;
height: 359rpx;
min-height: 359rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 13rpx 0rpx rgba(105,129,178,0.05);
border-radius: 40rpx;
@ -145,7 +145,7 @@
padding:20rpx 46rpx;
.sfj{
width: 560rpx;
height: 88rpx;
min-height: 88rpx;
display: flex;
justify-content: space-between;
margin: 0 auto;
@ -160,7 +160,7 @@
}
text{
font-weight: 400;
font-size: 25rpx;
font-size: 28rpx;
color: #666666;
}
}
@ -172,10 +172,14 @@
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
view{
>view{
font-weight: 400;
font-size: 28rpx;
font-size: 30rpx;
color: #555555;
display: flex;
>view{
width: 220rpx;
}
}
}
.top{
@ -205,7 +209,7 @@
}
text{
font-weight: 400;
font-size: 20rpx;
font-size: 27rpx;
color: #555555;
margin-top: 5rpx;
}
@ -214,7 +218,7 @@
}
.cgdxx{
width: 700rpx;
height: 760rpx;
min-height: 60rpx;
background: #FFFFFF;
border-radius: 40rpx;
margin: 28rpx auto 0;
@ -226,7 +230,7 @@
display: flex;
min-height: 30rpx;
font-weight: 400;
font-size: 28rpx;
font-size: 30rpx;
color: #333333;
margin-top: 26rpx;
text{
@ -246,9 +250,9 @@
width: 100%;
min-height: 40rpx;
.tspo{
width: 548rpx;
width: 578rpx;
height: 62rpx;
margin-left: 87rpx;
margin-left: 57rpx;
margin-top: 28rpx;
display: flex;
justify-content: space-between;
@ -258,7 +262,7 @@
flex-direction: column;
width: 50%;
font-weight: 400;
font-size: 25rpx;
font-size: 28rpx;
view{
color: #888888;
}
@ -286,7 +290,7 @@
justify-content: center;
align-items: center;
font-weight: 400;
font-size: 25rpx;
font-size: 28rpx;
}
.l{
border: 1px solid #0074E1;

View File

@ -40,6 +40,11 @@
<view style="height:3vw;width: 100%;display: flex;align-items: center;justify-content: center;margin-top: 30rpx;">
<u-loadmore :status="status" :loadText="{nomore:'暂无更多数据'}" v-if="list.length>0" />
</view>
<view class="none" v-if="!list.length&&status=='nomore'">
<image style="width: 300rpx;height: 300rpx;"
src="https://www.focusnu.com/media/directive/index/none.png" mode="widthFix" lazy-load="false" />
<view class="">暂无采购信息</view>
</view>
</view>
</template>
@ -125,11 +130,12 @@
width: 617rpx;
height: 26rpx;
font-weight: 400;
font-size: 26rpx;
font-size: 30rpx;
color: #666666;
margin: 35rpx auto 0;
display: flex;
justify-content: space-between;
align-items: center;
text{
color: #666;
}
@ -153,7 +159,7 @@
justify-content: center;
align-items: center;
font-weight: 400;
font-size: 25rpx;
font-size: 30rpx;
}
.l{
border: 1px solid #0074E1;
@ -173,12 +179,12 @@
flex-direction: column;
text{
font-weight: 400;
font-size: 23rpx;
font-size: 27rpx;
color: #888888;
}
view{
font-weight: 400;
font-size: 28rpx;
font-size: 30rpx;
color: #222222;
}
}
@ -258,7 +264,16 @@
-webkit-transform-style: preserve-3d;
-webkit-overflow-scrolling: touch;
}
.none {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
flex-direction: column;
color: #999;
}
</style>
<style>
page{