Commit 61aa5f88 authored by youjie's avatar youjie

no message

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