You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong_qianduan/pages/news3/setOutRecords.vue

242 lines
4.1 KiB

10 months ago
<template>
<view class="updatePrice">
<view class="head-info">
<!-- 搜索 -->
<view class="searchContent">
<u-input v-model="searchText" placeholder="商品名称/编码"/>
<u-icon name="search" class="search"></u-icon>
</view>
</view>
<view class="bg">
9 months ago
<image :src="$picUrl+'/static/news3/bg.png'" mode="widthFix"></image>
10 months ago
<view class="text">
只属于非商城订单
</view>
</view>
<view class="dispatchContent">
<view class="orderNum">
订单号7868867676878676876
</view>
<view class="dispatchItem">
9 months ago
<image :src="$picUrl+'/static/news3/filter.png'" mode="aspectFill"></image>
10 months ago
<view class="right">
<view class="title">
联想小新笔记本电脑2023年新款
</view>
<view class="subTitle">
16GB128GB
</view>
<view style="display: flex;align-items: center;justify-content: space-between;">
<view class="num">
x1
</view>
<view class="price">
<text style="font-size: 26upx;">¥</text>
<text>288</text>
</view>
</view>
</view>
</view>
<view class="totalNum">
<text>含运费¥5</text>
<text>共计</text>
<text>¥2500</text>
</view>
<view class="footerBtn">
<view class="wuliuBtn">
调货记录
</view>
</view>
</view>
</view>
</template>
<script>
export default{
data(){
return{
searchText:''
}
},
methods:{
}
}
</script>
<style lang="scss" scoped>
page{
min-height: 100%;
background-color: #F7F8FA;
padding:0 20upx;
}
.head-info{
margin:22upx 20upx;
.searchContent{
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
::v-deep .u-input{
background: #FFFFFF;
border-radius: 30px 30px 30px 30px;
opacity: 1;
width:100%;
padding-left:90upx !important;
}
.search{
position: absolute;
top:20upx;
left:26upx;
z-index:9;
}
}
}
.bg{
position: relative;
image{
width:100%;
height:auto;
}
.text{
height:100%;
width:100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 42upx;
font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
font-weight: 400;
color: #FFFFFF;
position: absolute;
left: 0;
top:0;
}
}
.orderNum{
font-size: 28upx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #707070;
margin:10upx 30upx;
}
.dispatchContent{
margin:20upx 0;
background: #FFFFFF;
// border-radius: 6px 6px 6px 6px;
opacity: 1;
padding:20upx 10upx;
}
.dispatchItem{
display: flex;
align-items: center;
image{
width: 194upx;
height:194upx;
}
.right{
flex:1;
margin-left:40upx;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-around;
.title{
font-size: 28upx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #3B3B3B;
}
.subTitle{
font-size: 28upx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #7C7C7C;
margin:14upx 0;
}
.num{
font-size: 28upx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #1E1E1E;
}
.price{
display: flex;
align-items: center;
justify-content: flex-end;
font-size: 32upx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #F21A1C;
}
}
}
.totalNum{
text-align: right;
margin-top:70upx;
text:first-child{
font-size: 24upx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #B7B7B7;
}
text:nth-child(2){
font-size: 32upx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #3B3B3B;
margin:0 10upx;
}
text:nth-child(3){
font-size: 32upx;
font-family: PingFang SC, PingFang SC;
font-weight: 600;
color: #F21A1C;
}
}
.footerBtn{
padding:30upx;
display: flex;
align-items: center;
border-top:1px solid #F0F0F0;
justify-content: flex-end;
margin-top:30upx;
}
.wuliuBtn{
// padding:8upx 46upx;
text-align: center;
height:70upx;
line-height: 66upx;
border:1px solid #F63116;
font-size: 28upx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #F83F11;
border-radius:20px;
width:200upx;
}
</style>