Commit 21f40a0d authored by youjie's avatar youjie

no message

parent c5e0b132
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
</style> </style>
<template> <template>
<div class="Business"> <div class="Business">
<div class="add-Enclosure"> <!--<div class="add-Enclosure">
<el-row :gutter="16"> <el-row :gutter="16">
<el-col :span="8"> <el-col :span="8">
<el-input size="mini" placeholder="输入单号" v-model="msg.FrID" label="单号" <el-input size="mini" placeholder="输入单号" v-model="msg.FrID" label="单号"
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</div> </div>!-->
<div class="page-content"> <div class="page-content">
<el-table <el-table
v-loading="loading" v-loading="loading"
...@@ -202,13 +202,13 @@ export default { ...@@ -202,13 +202,13 @@ export default {
msg: { msg: {
pageIndex: 1, pageIndex: 1,
pageSize: 10, pageSize: 10,
FrID:"0", // FrID:"0",
Type:"-1", // Type:"-1",
Status: "-1", // Status: "-1",
GuestId:"", GuestId:"",
ReFinanceId:"",// 订单ID // ReFinanceId:"",// 订单ID
ReFinanceId2:"",//1收入 2退款 3成本 // ReFinanceId2:"",//1收入 2退款 3成本
RelevanceFrId:"",//收据类型 // RelevanceFrId:"",//收据类型
}, },
total:0 total:0
}; };
...@@ -246,7 +246,7 @@ export default { ...@@ -246,7 +246,7 @@ export default {
if(this.isOnline()){ if(this.isOnline()){
url = 'http://yx.oytour.com/#/' url = 'http://yx.oytour.com/#/'
}else{ }else{
url = 'http://www.test.com:8080/#/' url = 'http://localhost:8081/#/'
} }
let data = [ let data = [
{ {
...@@ -259,18 +259,15 @@ export default { ...@@ -259,18 +259,15 @@ export default {
}, },
// 获取订单列表 // 获取订单列表
getList() { getList() {
if(this.msg.FrID==''){
this.msg.FrID = 0
}
this.loading = true; this.loading = true;
this.apipost2( this.apipost2(
"Financial_post_GetCRMGuestFinancePageList", "CarSingle_post_GetGuestOrderFinanceList",
this.msg, this.msg,
(res) => { (res) => {
this.msg.FrID="" this.msg.FrID=""
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.dataList = res.data.data.pageData; this.dataList = res.data.data;
this.total = res.data.data.count; // this.total = res.data.data.count;
this.loading = false this.loading = false
} else { } else {
this.$message.error(res.data.message); this.$message.error(res.data.message);
......
...@@ -133,13 +133,22 @@ ...@@ -133,13 +133,22 @@
<el-drawer :with-header="false" size='70%' :visible.sync="drawer" direction="rtl" :before-close="handleClose"> <el-drawer :with-header="false" size='70%' :visible.sync="drawer" direction="rtl" :before-close="handleClose">
<customerInfoBox :CustomerId="CustomerId" :activeNameNum="activeNameNum" :receiptType="receiptType"/> <customerInfoBox :CustomerId="CustomerId" :activeNameNum="activeNameNum" :receiptType="receiptType"/>
</el-drawer> </el-drawer>
<!-- 单号抽屉 -->
<el-drawer @closed="closeOrderDrawerHandler" :with-header="false" size='70%' :visible.sync="orderDrawer" direction="rtl" :before-close="handleClose">
<orderDetailsDrawer v-if="currentOrder" :orderId="currentOrder.OrderId" :activeNameNum="activeNameNum" />
</el-drawer>
<!-- 提成详情 -->
<commissionPopUp v-if="commissionPopUpVisible" :parameters="parameters"></commissionPopUp>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
components: { components: {
customerInfoBox:() => import('../../guestManagement/customerInfoBox') customerInfoBox:() => import('../../guestManagement/customerInfoBox'),
orderDetailsDrawer:() => import('../../customerManage/orderDetailsDrawer'),
commissionPopUp:() => import('../../dialogModel/commissionPopUp')
}, },
props: { props: {
pagesTitle: { pagesTitle: {
...@@ -229,7 +238,7 @@ export default { ...@@ -229,7 +238,7 @@ export default {
data[0].path = 'VisaProductEditOrderOP' data[0].path = 'VisaProductEditOrderOP'
} }
href =url +"automaticLogin?token=" +this.getLocalStorage().token +"&data=" + JSON.stringify(data); href =url +"automaticLogin?token=" +this.getLocalStorage().token +"&data=" + JSON.stringify(data);
}else if (row.OrderType == 2) {//3跟团 4一日游 }else if (row.OrderType == 2) {//跟团 一日游
if(this.pagesTitle=='销售'||this.pagesTitle=='详情'){ if(this.pagesTitle=='销售'||this.pagesTitle=='详情'){
if(row.TravelType==1){ if(row.TravelType==1){
data[0].path = 'groupTourOrder' data[0].path = 'groupTourOrder'
......
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