Commit a90d656d authored by zhengke's avatar zhengke

no message

parent b422a2ad
......@@ -44,12 +44,16 @@
display: flex;
flex-direction: column;
}
.order-lable span:first-child{
font-size: 14px;
}
.order-lable span {
font-size: 18px;
font-weight: bold;
font-size: 16px;
margin-top: 10px;
}
.order-lable span:last-child{
font-weight: bold;
}
.order-lable span.text{
color: #333;
}
......
<style>
.orderProductDetails-box{
height: 660px;
padding: 20px;
background-color: #fff;
overflow: hidden;
}
.form-box-log {
border-left: 1px solid #E9E9E9;
padding: 0 5px;
}
.form-log-title {
......@@ -36,7 +39,7 @@
position: absolute;
width: 5px;
height: 5px;
left: -3px;
left: -8px;
border-radius: 100%;
top: 15px;
background: rgba(255, 164, 117, 1);
......@@ -49,15 +52,19 @@
letter-spacing: 2px;
}
.orderlog-box{
height: 100%;
height: 520px;
overflow-y: scroll;
}
.orderlog-box-center{
margin: 0 10px;
}
</style>
<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 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-log-title">
<span class="log-radius"></span>
......@@ -108,15 +115,10 @@
};
},
watch: {
orderId: {
handler(val, oldVal) {
this.msg.orderId = val
this.getList()
},
deep: true,
},
},
mounted() {
this.msg.OrderId = this.orderId
this.getList()
},
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