Commit 32605ba4 authored by zhengke's avatar zhengke

修改

parent 89b17c8a
......@@ -95,6 +95,7 @@
<el-button v-if="item.CreateBy==CurrentUserId" @click="goToOpenTravel('TravelManager5',item.ID)" type="primary">{{$t('Operation.Op_tripUpdate')}}</el-button>
<el-button @click="copyTravelInfo(item.ID)" type="primary">{{$t('Operation.Op_tripCopy')}}</el-button>
<el-button v-if="item.TCNUMS==''&&item.CreateBy==CurrentUserId" @click="delConfig(item.ID)" type="primary">{{$t('system.table_delete')}}</el-button>
<el-button @click="goUrlR('SalesconfirmationOrder',item)" type="primary">行程下载</el-button>
</div>
</div>
</div>
......@@ -317,6 +318,19 @@
err => {}
);
},
//跳转至下载
goUrlR(path,item){
console.log(item,'itemm');
let routeData = this.$router.resolve({
name: path,
query: {
TCID: item.TCID,
ID: item.ID,
StartCityID: 0
}
})
window.open(routeData.href, '_blank')
}
},
mounted() {
let UserInfo = this.getLocalStorage();
......
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