Commit 0c99be17 authored by 黄奎's avatar 黄奎

合团页面修改

parent 662ff487
...@@ -470,7 +470,7 @@ ...@@ -470,7 +470,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<table class="TravelControlListTable TravelQueryList"> <table class="TravelControlListTable TravelQueryList" v-loading="loading">
<tbody v-for="(outItem,i) in queryCommonData.dataList" :key="i"> <tbody v-for="(outItem,i) in queryCommonData.dataList" :key="i">
<template v-for="(item,index) in outItem.TravelPriceList"> <template v-for="(item,index) in outItem.TravelPriceList">
<tr height="40"> <tr height="40">
...@@ -624,6 +624,7 @@ ...@@ -624,6 +624,7 @@
//分公司列表 //分公司列表
BranchList: [], BranchList: [],
}, },
loading: false,
//查询参数 //查询参数
queryMsg: { queryMsg: {
pageIndex: 1, pageIndex: 1,
...@@ -752,10 +753,13 @@ ...@@ -752,10 +753,13 @@
}, },
//新获取列表数据 //新获取列表数据
getControlList() { getControlList() {
this.loading = true;
this.queryCommonData.dataList = [];
this.apipost( this.apipost(
"travel_get_GetUniteDmcPageList", "travel_get_GetUniteDmcPageList",
this.queryMsg, this.queryMsg,
res => { res => {
this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.queryMsg.total = res.data.data.count; this.queryMsg.total = res.data.data.count;
this.queryMsg.noData = !this.queryMsg.total > 0; this.queryMsg.noData = !this.queryMsg.total > 0;
......
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