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

合团页面修改

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