Commit 52273ee6 authored by zhengke's avatar zhengke

修改

parent 16bb58aa
...@@ -22,9 +22,7 @@ ...@@ -22,9 +22,7 @@
<tbody v-for="(item,index) in dataList" :key="index"> <tbody v-for="(item,index) in dataList" :key="index">
<tr> <tr>
<td :rowspan="3" style="text-align: left"> <td :rowspan="3" style="text-align: left">
<div <div class="order_OfferId" @click="goOrderdetails(item,1)">{{item.OrderId}}
style="font-size: 18px;color: #2961FE;margin-bottom: 20px;font-weight: bold;text-decoration: underline;cursor: pointer"
@click="goOrderdetails(item,1)">{{item.OrderId}}
</div> </div>
<div>{{item.EnterName}}</div> <div>{{item.EnterName}}</div>
<div style="margin-top: 10px">{{item.CreateTime}}</div> <div style="margin-top: 10px">{{item.CreateTime}}</div>
...@@ -33,6 +31,10 @@ ...@@ -33,6 +31,10 @@
<div style="font-weight: bold;color:#2961FE;cursor:pointer;" @click="getClassInfo(item)"> <div style="font-weight: bold;color:#2961FE;cursor:pointer;" @click="getClassInfo(item)">
{{item.ClassName}}</div> {{item.ClassName}}</div>
</template> </template>
<div style="margin-top:10px;" v-if="item.OfferId>0">
报价单:<span class="order_OfferId" @click="goQuotation(item.OfferId)"
style="font-size:14px;">{{item.OfferId}}</span>
</div>
<template v-if="item.IsCommissionGive==1"> <template v-if="item.IsCommissionGive==1">
<div style="margin-top:30px;">提成:{{item.CommissionMoney}}</div> <div style="margin-top:30px;">提成:{{item.CommissionMoney}}</div>
</template> </template>
...@@ -579,6 +581,15 @@ ...@@ -579,6 +581,15 @@
}, },
mounted() {}, mounted() {},
methods: { methods: {
//跳转
goQuotation(Id) {
this.$router.push({
path: "/sale/quotation",
query: {
Id: Id
}
});
},
getTkshow(data) { getTkshow(data) {
let Tkshow = false; let Tkshow = false;
if (data.length > 0) { if (data.length > 0) {
...@@ -1001,4 +1012,13 @@ ...@@ -1001,4 +1012,13 @@
margin: 5px 3px 3px 0; margin: 5px 3px 3px 0;
} }
.classorder .order_OfferId {
font-size: 18px;
color: #2961FE;
margin-bottom: 20px;
font-weight: bold;
text-decoration: underline;
cursor: pointer
}
</style> </style>
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