Commit 775853e4 authored by youjie's avatar youjie

op跟团游订单

parent 004fe2c5
...@@ -306,7 +306,7 @@ ...@@ -306,7 +306,7 @@
"> ">
{{ $t("Operation.Op_shouzhiDetail") }} {{ $t("Operation.Op_shouzhiDetail") }}
</div> </div>
<div @click="getRemarks(item,1)"> <div v-if="isOP" @click="getRemarks(item,1)">
修改op备注 修改op备注
</div> </div>
<div @click="goUrlT('confirmationOrder', item.orderId)"> <div @click="goUrlT('confirmationOrder', item.orderId)">
...@@ -729,7 +729,8 @@ import PriceDetail from '../../orderCommon/PriceDetail.vue'; ...@@ -729,7 +729,8 @@ import PriceDetail from '../../orderCommon/PriceDetail.vue';
export default { export default {
name: 'groupOrder', name: 'groupOrder',
mixins: [userMixin], mixins: [userMixin],
props: ['list','orderList','logList','redBagList','qjGroupId','isShow','showID','TransferMission','isEditOrderCreate'], props: ['list','orderList','logList','redBagList','qjGroupId','isShow',
'showID','TransferMission','isEditOrderCreate','isOP'],
components: { components: {
payurlItem: payURL, payurlItem: payURL,
payurlItem1: payURL1, payurlItem1: payURL1,
......
...@@ -1777,6 +1777,7 @@ ...@@ -1777,6 +1777,7 @@
<groupOrder v-if="userInfo.SimpleEasy&&userInfo.SimpleEasy==1" :list="list" :orderList="orderList" <groupOrder v-if="userInfo.SimpleEasy&&userInfo.SimpleEasy==1" :list="list" :orderList="orderList"
:logList="logList" :redBagList="redBagList" :qjGroupId="qjGroupId" :isShow="isShow" :logList="logList" :redBagList="redBagList" :qjGroupId="qjGroupId" :isShow="isShow"
:showID="showID" :TransferMission="TransferMission" :isEditOrderCreate="isEditOrderCreate" :showID="showID" :TransferMission="TransferMission" :isEditOrderCreate="isEditOrderCreate"
:isOP="isOP"
@goIisDetail="goIisDetail" @goUrlTS="goUrlTS" @goContract="goContract" @goIisDetail="goIisDetail" @goUrlTS="goUrlTS" @goContract="goContract"
@goSingleContract="goSingleContract" @goProtocol="goProtocol" @goDisclaimer="goDisclaimer" @goSingleContract="goSingleContract" @goProtocol="goProtocol" @goDisclaimer="goDisclaimer"
@goInvetig="goInvetig" @SpecialAPP="SpecialAPP" @deleteItem="deleteItem" @goInvetig="goInvetig" @SpecialAPP="SpecialAPP" @deleteItem="deleteItem"
...@@ -3069,7 +3070,8 @@ ...@@ -3069,7 +3070,8 @@
LessRule: [], LessRule: [],
LessNPrice: 0, LessNPrice: 0,
LessNAvgPrice: 0, LessNAvgPrice: 0,
DealDiscountMoney: 0 DealDiscountMoney: 0,
isOP: 0,
}; };
}, },
components: { components: {
...@@ -3104,6 +3106,15 @@ ...@@ -3104,6 +3106,15 @@
SQcheckdAll(val) { SQcheckdAll(val) {
this.checkdAll(val); this.checkdAll(val);
}, },
'$router': {
handler(val) {
if(this.$route.query.isOP) this.isOP = this.$route.query.isOP
else this.isOP = 0
this.getList();
this.getCount()
}
}
}, },
computed: { computed: {
// 抽屉配置 // 抽屉配置
...@@ -5499,6 +5510,8 @@ ...@@ -5499,6 +5510,8 @@
} }
}, },
mounted() { mounted() {
if(this.$route.query.isOP) this.isOP = this.$route.query.isOP
else this.isOP = 0
this.qjGroupId = this.QjGroupId(); this.qjGroupId = this.QjGroupId();
this.GetEditOrderCreateByAuth(); this.GetEditOrderCreateByAuth();
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
......
...@@ -3646,6 +3646,14 @@ export default { ...@@ -3646,6 +3646,14 @@ export default {
title: '跟团游订单' title: '跟团游订单'
}, },
}, },
{ // 销售 跟团游订单
path: '/groupTourOrderOP',
name: 'groupTourOrderOP',
component: resolve => require(['@/components/SalesModule/groupTourOrder'], resolve),
meta: {
title: '跟团游订单OP'
},
},
{ // 销售 特价申请函 { // 销售 特价申请函
path: '/SpecialList', path: '/SpecialList',
name: 'SpecialList', name: 'SpecialList',
......
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