uni-Identify-quality/pages/order-goods/order-details.vue

161 lines
3.6 KiB
Vue
Raw Normal View History

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