Commit 61aa5f88 authored by youjie's avatar youjie

no message

parent 3b093efc
......@@ -462,6 +462,9 @@
<span v-if="GetDetail.OtherType==71" style="cursor: pointer;float: right;color: #000;font-size: 12px;">
<span style="text-decoration: underline;" @click="goHand(3,GetDetail)">查看手配详情</span>
</span>
<span v-if="GetDetail.OtherType==75" style="cursor: pointer;float: right;color: #000;font-size: 12px;">
<span style="text-decoration: underline;" @click="goHand(4,GetDetail)">查看月结详情</span>
</span>
<span v-if="GetDetail.OtherType==18&&GetDetail.ReFinanceId>0" style="cursor: pointer;float: right;color: #000;font-size: 12px;">
<span @click="goOrderDetails(GetDetail.ReFinanceId)">账单:{{GetDetail.ReFinanceId}}</span>
</span>
......@@ -1953,40 +1956,50 @@ export default {
window.open(routeData.href, "_blank");
}
},
goHand(type,GetDetail){
if(type==1){
this.$router.push({
name: 'TeamBalancePayment',
query: {
id:GetDetail.TCID,
IsHaveAuth:true,
blank: "y",
tab: "团队收支明细"
}
});
goHand(type, GetDetail) {
if (type == 1) {
this.$router.push({
name: 'TeamBalancePayment',
query: {
id: GetDetail.TCID,
IsHaveAuth: true,
blank: "y",
tab: "团队收支明细"
}
if (type == 2) {
this.$router.push({
name: 'FinancialDocumentsDetail',
query: {
id: GetDetail.ReFinanceId,
blank: "y",
tab: "单据详情"
}
});
}
if (type == 3) {
this.$router.push({
name: 'HandFeeStatistics',
query: {
HandFeeFrId: GetDetail.FrID,
blank: "y",
tab: "手配费详情"
}
});
}
},
//跳转至电商订单详情
});
}
if (type == 2) {
this.$router.push({
name: 'FinancialDocumentsDetail',
query: {
id: GetDetail.ReFinanceId,
blank: "y",
tab: "单据详情"
}
});
}
if (type == 3) {
this.$router.push({
name: 'HandFeeStatistics',
query: {
HandFeeFrId: GetDetail.FrID,
blank: "y",
tab: "手配费详情"
}
});
}
if (type == 4) {
this.$router.push({
name: 'MonthlyCostStatementInquire',
query: {
FrID: GetDetail.FrID,
blank: "y",
tab: "成本月结详情"
}
});
}
},
//跳转至电商订单详情
goOrderDetails(id){
this.$router.push({
name: 'EleBillDetail',
......
......@@ -885,6 +885,9 @@
<span v-if="GetDetail.OtherType==71" style="cursor: pointer;float: right;color: #000;font-size: 12px;">
<span style="text-decoration: underline;" @click="goHand(3,GetDetail)">查看手配详情</span>
</span>
<span v-if="GetDetail.OtherType==75" style="cursor: pointer;float: right;color: #000;font-size: 12px;">
<span style="text-decoration: underline;" @click="goHand(4,GetDetail)">查看月结详情</span>
</span>
<span v-if="GetDetail.OtherType==18&&GetDetail.ReFinanceId>0"
style="cursor: pointer;float: right;color: #000;font-size: 12px;">
<span @click="goOrderDetails(GetDetail.ReFinanceId)">账单:{{GetDetail.ReFinanceId}}</span>
......@@ -1707,6 +1710,7 @@
});
},
goHand(type, GetDetail) {
let path = ''
if (type == 1) {
this.$router.push({
name: 'TeamBalancePayment',
......@@ -1738,6 +1742,16 @@
}
});
}
if (type == 4) {
this.$router.push({
name: 'MonthlyCostStatementInquire',
query: {
FrID: GetDetail.FrID,
blank: "y",
tab: "成本月结详情"
}
});
}
},
//跳转至电商订单详情
goOrderDetails(id) {
......@@ -1803,6 +1817,7 @@
},
// 提成明细详情
GoRoyaltyUrl(GetDetail) {
console.log(GetDetail.OtherType,'-----')
let obj = {
PeriodId: GetDetail.ReFinanceId,
RB_Branch_Id: null,
......
......@@ -720,6 +720,9 @@ export default {
this.DepartIDs = userInfo.RB_Department_Id;
this.userId = userInfo.EmployeeId;
this.msg.EmployeeId= userInfo.EmployeeId;
if(this.$route.query.FrID){
this.msg.FrID = this.$route.query.FrID
}
this.financeinfo_post_GetList();
this.financeinfo_post_GetCostTypeList();
this.FinancialFlowTemplate_post_GetList();
......
......@@ -636,7 +636,8 @@
<!-- v-if="(pagesTitle=='OP'&&!item.remark)||item.remark" -->
<div>
{{$t('pub.pubRemark')}}{{ item.remark?item.remark:'-' }}
<el-tooltip v-if="pagesTitle=='OP'||pagesTitle=='销售'" class="item" effect="dark" :content="$t('salesModule.UpRemarks')"
<!-- v-if="pagesTitle=='OP'" -->
<el-tooltip class="item" effect="dark" :content="$t('salesModule.UpRemarks')"
placement="top-start">
<i class="el-icon-edit cursor-pointer c059FF6 mx" @click='getDetail(item,true)'></i>
</el-tooltip>
......
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