Commit a90d656d authored by zhengke's avatar zhengke

no message

parent b422a2ad
...@@ -44,12 +44,16 @@ ...@@ -44,12 +44,16 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.order-lable span:first-child{
font-size: 14px;
}
.order-lable span { .order-lable span {
font-size: 18px; font-size: 16px;
font-weight: bold;
margin-top: 10px; margin-top: 10px;
} }
.order-lable span:last-child{
font-weight: bold;
}
.order-lable span.text{ .order-lable span.text{
color: #333; color: #333;
} }
......
<style> <style>
.orderProductDetails-box{ .orderProductDetails-box{
height: 660px;
padding: 20px; padding: 20px;
background-color: #fff; background-color: #fff;
overflow: hidden;
} }
.form-box-log { .form-box-log {
border-left: 1px solid #E9E9E9; border-left: 1px solid #E9E9E9;
padding: 0 5px;
} }
.form-log-title { .form-log-title {
...@@ -36,7 +39,7 @@ ...@@ -36,7 +39,7 @@
position: absolute; position: absolute;
width: 5px; width: 5px;
height: 5px; height: 5px;
left: -3px; left: -8px;
border-radius: 100%; border-radius: 100%;
top: 15px; top: 15px;
background: rgba(255, 164, 117, 1); background: rgba(255, 164, 117, 1);
...@@ -49,15 +52,19 @@ ...@@ -49,15 +52,19 @@
letter-spacing: 2px; letter-spacing: 2px;
} }
.orderlog-box{ .orderlog-box{
height: 100%; height: 520px;
overflow-y: scroll; overflow-y: scroll;
} }
.orderlog-box-center{
margin: 0 10px;
}
</style> </style>
<template> <template>
<div class="orderProductDetails-box" :style="{height:logData.length>0?'460px':'400px'}"> <!-- :style="{height:logData.length>0?'460px':'400px'}" -->
<div class="orderProductDetails-box">
<div class="orderlog-box"> <div class="orderlog-box">
<div v-for="(item,index) in logData" :key="index"> <div class="orderlog-box-center" v-for="(item,index) in logData" :key="index">
<div class="form-box-log"> <div class="form-box-log">
<div class="form-log-title"> <div class="form-log-title">
<span class="log-radius"></span> <span class="log-radius"></span>
...@@ -108,15 +115,10 @@ ...@@ -108,15 +115,10 @@
}; };
}, },
watch: { watch: {
orderId: {
handler(val, oldVal) {
this.msg.orderId = val
this.getList()
},
deep: true,
},
}, },
mounted() { mounted() {
this.msg.OrderId = this.orderId
this.getList() this.getList()
}, },
methods: { methods: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment