Commit 52273ee6 authored by zhengke's avatar zhengke

修改

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