Commit 37367971 authored by 沈良进's avatar 沈良进

新增开团行程链接

parent 0f4c75ba
...@@ -77,6 +77,7 @@ ...@@ -77,6 +77,7 @@
</li> </li>
<li> <li>
<button class="hollowFixedBtn" @click="resetPageIndex(),getControlList()">{{$t('pub.searchBtn')}}</button> <button class="hollowFixedBtn" @click="resetPageIndex(),getControlList()">{{$t('pub.searchBtn')}}</button>
<button class="hollowFixedBtn" @click="goToOpenTravel('TravelManager',0)">创建行程</button>
</li> </li>
</ul> </ul>
</div> </div>
...@@ -125,7 +126,7 @@ ...@@ -125,7 +126,7 @@
</div> </div>
<div class="el-col"> <div class="el-col">
<div class="d7"> <div class="d7">
<el-button @click="goToOpenTravel('TravelManager2',item.ID)" type="primary"> <el-button @click="goToOpenTravel('TravelManager',item.ID)" type="primary">
{{$t('Operation.Op_tripUpdate')}}</el-button> {{$t('Operation.Op_tripUpdate')}}</el-button>
<el-button @click="copyTravelInfo(item.ID)" type="primary">{{$t('Operation.Op_tripCopy')}}</el-button> <el-button @click="copyTravelInfo(item.ID)" type="primary">{{$t('Operation.Op_tripCopy')}}</el-button>
<el-button @click="goUrlR(item)" type="primary"> <el-button @click="goUrlR(item)" type="primary">
...@@ -326,19 +327,14 @@ ...@@ -326,19 +327,14 @@
goToOpenTravel(path, configId) { goToOpenTravel(path, configId) {
if (configId > 0) { if (configId > 0) {
this.$store.commit("pageConditionUpdate", this.queryMsg); this.$store.commit("pageConditionUpdate", this.queryMsg);
this.$router.push({ this.OpenNewPage(path, {
name: path, configId: configId,
query: { openState: 1,
configId: configId, blank: 'y',
openState: 1, tab: '团期配置'
blank: 'y',
tab: '团期配置'
}
}); });
} else { } else {
this.$router.push({ this.OpenNewPage(path, {});
name: path
});
} }
}, },
//行程复制 //行程复制
......
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