You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uni-Identify-quality/pages/order-goods/order-details.vue

161 lines
3.6 KiB
Vue

1 year ago
<template>
1 year ago
<div class="order-details" :style="{background:'url('+'../../static/bbj1@3x.png'+')'}">
<div class="content1">
<div class="wrap1">
<image src="../../static/zu506@3x.png"></image>
</div>
<div class="wrap2">
订单号的详情
</div>
<div class="wrap3">
<image src="../../static/zu594@3x.png"></image>
</div>
1 year ago
</div>
1 year ago
<div class="content2">
<image src="../../static/zu709@3x.png"></image>
1 year ago
</div>
1 year ago
<div class="content3">
1 year ago
<div class="wrap1">
<div class="wrap1_1">
<div class="wrap1_1_1">画作编号</div>
<div class="wrap1_1_2"></div>
<div class="wrap1_1_3">
1 year ago
<input placeholder-style="color: #939393;font-size: 24rpx;" placeholder="画作编号"/>
1 year ago
</div>
<div class="wrap1_1_4"></div>
</div>
<div class="wrap1_1">
<div class="wrap1_1_1">画作名称</div>
<div class="wrap1_1_2"></div>
<div class="wrap1_1_3">
1 year ago
<input placeholder-style="color: #939393;font-size: 24rpx;" placeholder="画作名称"/>
1 year ago
</div>
<div class="wrap1_1_4"></div>
</div>
<div class="wrap1_1">
<div class="wrap1_1_1">画家名称</div>
<div class="wrap1_1_2"></div>
<div class="wrap1_1_3">
1 year ago
<input placeholder-style="color: #939393;font-size: 24rpx;" placeholder="画家名称"/>
1 year ago
</div>
1 year ago
<div class="wrap1_1_4">
</div>
1 year ago
</div>
<div class="wrap1_1">
<div class="wrap1_1_1">画作平尺数</div>
<div class="wrap1_1_2"></div>
<div class="wrap1_1_3">
1 year ago
<input placeholder-style="color: #939393;font-size: 24rpx;" placeholder="画作平尺数"/>
1 year ago
</div>
</div>
</div>
<div class="wrap2"></div>
1 year ago
</div>
1 year ago
</div>
</template>
<script>
1 year ago
import {postDataByParams} from "../../http/service";
1 year ago
export default {
1 year ago
name: "order-details",
mounted() {
this.getData()
},
methods: {
async getData() {
const res = await postDataByParams('/api/warehouse/detail')
console.log(res, 'res')
}
}
1 year ago
}
</script>
<style scoped lang="scss">
1 year ago
.order-details {
1 year ago
box-sizing: border-box;
padding-top: 46rpx;
padding-left: 30rpx;
padding-right: 30rpx;
background-size: cover;
width: 100vw;
height: 100vh;
1 year ago
.content3 {
1 year ago
margin-top: 60rpx;
1 year ago
.wrap1 {
1 year ago
border: 1rpx dashed #DFE9F0;
background-color: #fff;
1 year ago
.wrap1_1 {
1 year ago
position: relative;
height: 114rpx;
display: flex;
align-items: center;
1 year ago
.wrap1_1_4 {
1 year ago
left: 50%;
transform: translateX(-50%);
bottom: 0;
position: absolute;
height: 0;
width: 636rpx;
1 year ago
border-bottom: 0.5px solid #626262;
1 year ago
}
1 year ago
.wrap1_1_2 {
1 year ago
margin-right: 36rpx;
width: 0;
height: 66rpx;
1 year ago
border-left: 0.5px solid #626262;
1 year ago
}
1 year ago
.wrap1_1_1 {
width: 210rpx;
1 year ago
padding-left: 32rpx;
color: #626262;
font-size: 24rpx;
}
}
}
}
1 year ago
.content2 {
1 year ago
margin-top: 42rpx;
display: flex;
justify-content: center;
1 year ago
image {
1 year ago
width: 404rpx;
height: 306rpx;
}
}
1 year ago
.content1 {
1 year ago
display: flex;
align-items: center;
justify-content: space-between;
1 year ago
.wrap1 {
image {
1 year ago
width: 112rpx;
height: 52rpx;
}
}
1 year ago
.wrap2 {
1 year ago
color: #4E964D;
font-size: 32rpx;
}
1 year ago
.wrap3 {
image {
1 year ago
width: 40rpx;
height: 40rpx;
}
}
}
}
</style>