Commit 21f40a0d authored by youjie's avatar youjie

no message

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