Commit 9c04ae10 authored by zhengke's avatar zhengke

no message

parent 8635f726
...@@ -358,7 +358,10 @@ ...@@ -358,7 +358,10 @@
if (this.$route.query && this.$route.query.PeriodsId) { if (this.$route.query && this.$route.query.PeriodsId) {
this.msg.PeriodsId = Number(this.$route.query.PeriodsId) this.msg.PeriodsId = Number(this.$route.query.PeriodsId)
} }
this.getList(); if (this.$route.query && this.$route.query.EmpIds) {
this.msg.EmpIds = this.$route.query.EmpIds
}
this.getList()
this.getEmployee()//人员 this.getEmployee()//人员
this.GetCommissionPeroidsList()//期数 this.GetCommissionPeroidsList()//期数
}, },
......
...@@ -148,6 +148,20 @@ ...@@ -148,6 +148,20 @@
.page_addFD .rb_top_row input{ .page_addFD .rb_top_row input{
font-size: 12px; font-size: 12px;
} }
.fygsbumen-box{
display: flex;
justify-content: space-between;
}
.fygsbumen-box p {
flex-grow: 1;
color: #106BAF;
}
.fygsbumen-box-right{
flex-shrink: 0;
cursor: pointer;
text-decoration: underline;
margin-left: 10px;
}
</style> </style>
<template> <template>
<div class="page_addFD" v-loading='loading'> <div class="page_addFD" v-loading='loading'>
...@@ -458,15 +472,23 @@ ...@@ -458,15 +472,23 @@
</p> </p>
</div> </div>
<div class="_explain"> <div class="_explain">
<div class="fygsbumen-box">
<p>{{$t('fnc.fjshuoming')}}</p> <p>{{$t('fnc.fjshuoming')}}</p>
<template v-if="commissionObj">
<div v-if="commissionObj.Type==56||commissionObj.Type==57" class="fygsbumen-box-right" @click="ImpressionTicketDetails('/ImpressionTicketUserDetails')">查看详情</div>
</template>
</div>
<div> <div>
<p>{{$t('fnc.fygsbumen')}}:<span><el-select filterable v-model='msg.RB_Depart_Id' class="w135 _border_b_1"> <p>
{{$t('fnc.fygsbumen')}}:<span><el-select filterable v-model='msg.RB_Depart_Id' class="w135 _border_b_1">
<el-option v-for='item in departmentList' <el-option v-for='item in departmentList'
:label='item.DepartmentName' :label='item.DepartmentName'
:value='item.DepartmentID' :value='item.DepartmentID'
:key='item.DepartmentID'> :key='item.DepartmentID'>
</el-option> </el-option>
</el-select></span></p> </el-select></span>
</p>
<template v-if="GetDetail.FrID!=0"> <template v-if="GetDetail.FrID!=0">
<p v-if="GetDetail.OrderSource==9&&GetDetail.SourceID>0">{{$t("fnc.gnpiaowu")}}<span class="_jump_page _font_bold" @click="jumpPage('SettlementOrder',GetDetail,2)">{{GetDetail.SourceID}}</span></p> <p v-if="GetDetail.OrderSource==9&&GetDetail.SourceID>0">{{$t("fnc.gnpiaowu")}}<span class="_jump_page _font_bold" @click="jumpPage('SettlementOrder',GetDetail,2)">{{GetDetail.SourceID}}</span></p>
<p v-if="GetDetail.OrderSource==10&&GetDetail.SourceID>0">{{$t('active.cl_qianzheng')}}<span class="_jump_page _font_bold" @click="jumpPage('VisaProductCopy',GetDetail,3)">{{GetDetail.SourceID}}</span></p> <p v-if="GetDetail.OrderSource==10&&GetDetail.SourceID>0">{{$t('active.cl_qianzheng')}}<span class="_jump_page _font_bold" @click="jumpPage('VisaProductCopy',GetDetail,3)">{{GetDetail.SourceID}}</span></p>
...@@ -698,6 +720,18 @@ export default { ...@@ -698,6 +720,18 @@ export default {
} }
}, },
methods:{ methods:{
// 印象票务制单详情
ImpressionTicketDetails(path){
this.$router.push({
path: path,
query: {
PeriodsId: this.commissionObj.PeroidsId,
EmpIds:this.commissionObj.EmpIds,
blank: 'y',
tab: '期数详情'
}
});
},
deleteRow(i,obj){ deleteRow(i,obj){
obj.show = false; obj.show = false;
this.msg.Description=this.Description; this.msg.Description=this.Description;
...@@ -922,8 +956,8 @@ export default { ...@@ -922,8 +956,8 @@ export default {
} }
if(this.commissionObj){ if(this.commissionObj){
this.msg.OtherType = this.commissionObj.Type?this.commissionObj.Type:0; this.msg.OtherType = this.commissionObj.Type?this.commissionObj.Type:0;
this.msg.PeroidsId = this.commissionObj.PeroidsId?this.commissionObj.PeroidsId:0; this.msg.ReFinanceId = this.commissionObj.PeroidsId?this.commissionObj.PeroidsId:0;
this.msg.EmpIds = this.commissionObj.EmpIds?this.commissionObj.EmpIds:0; this.msg.RelevanceFrId = this.commissionObj.EmpIds?this.commissionObj.EmpIds:0;
let totalAmount = this.$commonUtils.addCommas(Math.round(this.commissionObj.totalAmount* 100) / 100) let totalAmount = this.$commonUtils.addCommas(Math.round(this.commissionObj.totalAmount* 100) / 100)
if(this.allPriceTo!=totalAmount){ if(this.allPriceTo!=totalAmount){
......
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