Commit 78cbc7a8 authored by 吴春's avatar 吴春
parents ad46409e 6cb4bc9a
......@@ -113,7 +113,7 @@
<el-input type="Number" v-model="msg.orderId" :placeholder="$t('OrderList.search.orderId')" class="w200"/>
</span>
</li> -->
<!-- <li>
<span>
<em>{{$t('OrderList.search.orderType')}}</em>
......@@ -205,7 +205,7 @@
},
watch: {
pagesTitle(val,oldval){
}
},
methods: {
......@@ -337,7 +337,8 @@
PlatformMoney:item.PlatformMoney,
HandFittingIncome: item.HandFittingIncome,
HandFittingTax: item.HandFittingTax,
DueInMoney:item.DueInMoney
DueInMoney:item.DueInMoney,
...item
}
item.list.push(datas)
})
......
......@@ -562,7 +562,8 @@
<span class="fz15 fbold">{{ scope.row.Income-scope.row.CostMoney-scope.row.Refund>0?(scope.row.Income-scope.row.CostMoney-scope.row.Refund).toFixed(2):'-' }}</span>
</template>
</el-table-column>
<el-table-column v-if="(scope.row.SellCommission&&scope.row.SellCommission>0)||(scope.row.OPCommission&&scope.row.OPCommission>0)" label="提成" style="background:#EAEAEA">
<el-table-column v-if="(scope.row.SellCommission&&scope.row.SellCommission>0)||(scope.row.OPCommission&&scope.row.OPCommission>0)"
label="提成" style="background:#EAEAEA">
<template slot-scope="scope">
<div class="width100-float-l" v-if="scope.row.SellCommission&&scope.row.SellCommission>0"><span class="float-l">销售:</span>
<commissionDialog :objNew="scope.row" :OP="0"></commissionDialog>
......
......@@ -650,7 +650,8 @@
</template>
</el-table-column>
<el-table-column label="提成" style="background:#EAEAEA"
v-if="(scope.row.commissionMoney&&scope.row.commissionMoney>0)||(scope.row.opCommission&&scope.row.opCommission>0)">
v-if="(scope.row.commissionMoney&&scope.row.commissionMoney>0)||(scope.row.opCommission&&scope.row.opCommission>0)"
min-width="100">
<template slot-scope="scope">
<div class="width100-float-l" v-if="scope.row.commissionMoney&&scope.row.commissionMoney>0">
<span class="float-l">销售:<span class="cF1416C"></span></span>
......
......@@ -117,8 +117,8 @@
</el-date-picker>
</span>
</li>
<li>
<input type="button" class="normalBtn" :value="$t('pub.searchBtn')" @click="msg.pageIndex=1,currentPage=1,GetList()" />
</li>
......
......@@ -533,16 +533,15 @@
// 生成pdf
toPDF_2023: function () {
this.pdfLoading = true;
var that = this;
let urlObj = this.domainManager();
let msg = this.getPostMsg();
var title = this.orderMsg.startDate + this.orderMsg.lineteamName+this.orderMsg.dayNum+'日游';
var title = this.orderMsg.startDate + this.orderMsg.lineteamName + this.orderMsg.dayNum + '日游';
//欧洲
if(this.dataAll.lineId==168||this.dataAll.lineId==119)
{
title =this.orderMsg.startDate+ this.dataAll.title;
if (this.dataAll.lineId == 168 || this.dataAll.lineId == 119) {
title = this.orderMsg.startDate + this.dataAll.title;
}
var fileName = title + ".pdf";
console.log("fileNmae",fileName);
if (this.orderId && this.orderId > 0) {
//出团通知书下载
this.pdfDownLoad(fileName, msg);
......@@ -554,12 +553,12 @@
var objFileKey = "TripDownLoad"
objFileKey += "/" + msg.configId + "_" + msg.tcid;
objFileKey += "/" + msg.configId + "_" + msg.tcid + ".pdf";
this.downloadChengDuFileRename(objFileKey, fileName, res => {
that.downloadChengDuFileRename(objFileKey, fileName, res => {
console.log("ali_doanload", res)
if (res.resultCode == 0) {
this.pdfDownLoad(fileName, msg);
that.pdfDownLoad(fileName, msg);
} else {
this.pdfLoading = false;
that.pdfLoading = false;
}
})
}
......
......@@ -19,7 +19,7 @@
]"
>
<el-table-column
width="140"
width="130"
prop="CreateTimeStr"
label="订单Id"
fixed="left"
......@@ -41,7 +41,7 @@
</template>
</el-table-column>
<el-table-column
width="170"
width="180"
prop="CreateTimeStr"
label="团号"
show-overflow-tooltip
......@@ -223,7 +223,7 @@
prop="StateName"
label="状态"
show-overflow-tooltip
min-width="80"
min-width="70"
>
<template slot-scope="scope">
<span>{{ scope.row.StateName }}</span>
......@@ -356,7 +356,7 @@
]"
>
<el-table-column
width="140"
width="130"
prop="CreateTimeStr"
label="订单Id"
fixed="left"
......@@ -378,7 +378,7 @@
</template>
</el-table-column>
<el-table-column
width="170"
width="180"
prop="CreateTimeStr"
label="团号"
show-overflow-tooltip
......@@ -560,7 +560,7 @@
prop="StateName"
label="状态"
show-overflow-tooltip
min-width="80"
min-width="70"
>
<template slot-scope="scope">
<span>{{ scope.row.StateName }}</span>
......@@ -633,23 +633,25 @@
</button>
</div>
<el-form label-width="100px">
<el-col :span="4">
<el-form-item label="应收总金额" prop="">
<el-input
type="number"
v-model="changePriceMsg.Money"
></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="改价原因" prop="">
<el-input
type="textarea"
v-model="changePriceMsg.ApplyForReason"
autosize
></el-input>
</el-form-item>
</el-col>
<el-row>
<el-col :span="4">
<el-form-item label="应收总金额" prop="">
<el-input
type="number"
v-model="changePriceMsg.Money"
></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="改价原因" prop="">
<el-input
type="textarea"
v-model="changePriceMsg.ApplyForReason"
autosize
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
......@@ -1554,4 +1556,7 @@ export default {
/deep/.myAllTypeOrder .el-table th.el-table__cell{
background-color: #f5f7fa !important;
}
/deep/.myAllTypeOrder .el-table__fixed-right::before, /deep/.myAllTypeOrder .el-table__fixed::before{
background-color: rgba(23,23,23,0) !important;
}
</style>
......@@ -553,7 +553,7 @@
</el-select>
</el-form-item>
</el-col>
<el-col :span="4" style="display: none;">
<el-col :span="4">
<!--交易方式-->
<el-form-item :label="$t('tips.jiaoyifangshi')" prop="TradeWay"
v-show="addMsg.ClientSource == 1 || addMsg.ClientSource == 4">
......
......@@ -3,12 +3,12 @@
display: flex;
flex-direction: column;
}
.listone-box,
.listtwo-card {
margin-top: 15px;
}
.listone-form {
padding: 10px;
border-radius: 5px;
......@@ -19,7 +19,7 @@
margin-bottom: 10px;
overflow: hidden;
}
.listone-img {
width: 130px;
flex-shrink: 0;
......@@ -27,7 +27,7 @@
border-radius: 5px;
display: block;
}
.listone-list {
flex-grow: 1;
display: flex;
......@@ -44,40 +44,40 @@
margin-bottom: 5px;
cursor: pointer;
}
.list-left div {
color: #7E8299;
font-size: 13px;
margin-top: 7px;
}
.list-left div a {
color: #009EF7;
font-size: 12px;
margin-left: 15px;
cursor: pointer;
}
.list-right {
flex-shrink: 1;
margin-left: 15px;
}
.list-right p {
margin-bottom: 10px;
}
.list-right p b {
font-size: 18px;
color: #F1416C;
}
.list-right p span {
color: #8A8C9F;
font-size: 12px;
margin-left: 10px;
}
.listtwo-form {
height: 100%;
display: flex;
......@@ -86,11 +86,11 @@
background: #ffffff;
border-radius: 5px;
}
.card-centent {
padding: 10px;
}
.card-centent p {
color: #7E8299;
white-space: nowrap;
......@@ -98,34 +98,34 @@
text-overflow: ellipsis;
font-size: 13px;
}
.card-text {
margin-top: 20px;
display: flex;
justify-content: space-between;
align-items: inherit;
}
.card-text b {
font-size: 14px;
}
.card-form {
display: flex;
align-items: inherit;
flex-wrap: wrap;
}
.listtwo-col {
margin-bottom: 15px;
}
.listtwo-img {
height: 200px;
border-radius: 5px;
display: block;
}
.iconfont {
cursor: pointer;
background-color: #E95252;
......@@ -138,7 +138,7 @@
border-radius: 50%;
margin-left: 10px;
}
.image-slot {
height: 100%;
display: flex;
......@@ -336,7 +336,7 @@ export default {
}, err => {})
},
getDatesUse() {
if(this.DatelistUse){
if(this.DatelistUse){
if (this.DatelistUse[0]) {
this.msg.UseSTime = this.DatelistUse[0]
} if (this.DatelistUse[1]) {
......@@ -426,7 +426,7 @@ export default {
addList(data)
data.forEach((x) => {
// x.Money = 0
let Money = 0
x.DetailList.forEach((y) => {
Money+=y.Money
......@@ -442,7 +442,8 @@ export default {
PlatformTax: item.PlatformTax,
Refund: item.Refund,
PlatformMoney: item.PlatformMoney,
DueInMoney: item.DueInMoney
DueInMoney: item.DueInMoney,
...item
}
let DaiShou
DaiShou = Number(item.Money-item.Income-item.PlatformTax-item.PlatformMoney+item.Refund)
......
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