Commit e80ca6e3 authored by zhengyi's avatar zhengyi

删除部分打印

parent 46ace1a1
...@@ -175,12 +175,10 @@ export default { ...@@ -175,12 +175,10 @@ export default {
}, },
exportCityList() { exportCityList() {
//字典:贸易类型字典region_trade_type,0非进出口,1进口,2出口,3进出口 //字典:贸易类型字典region_trade_type,0非进出口,1进口,2出口,3进出口
console.log("进出口城市列表", this.tradeCityList)
return this.tradeCityList.filter(item => item.type == 2 || item.type == 3) return this.tradeCityList.filter(item => item.type == 2 || item.type == 3)
}, },
exportCityIds() { exportCityIds() {
let ids = [] let ids = []
console.log("出口城市列表", this.exportCityList)
this.exportCityList.forEach(item => { this.exportCityList.forEach(item => {
ids.push(item.id) ids.push(item.id)
}) })
...@@ -207,11 +205,8 @@ export default { ...@@ -207,11 +205,8 @@ export default {
.filter(this.transportFilter) .filter(this.transportFilter)
.filter(transport => !this.channelId || transport.cssClass == 'channel') .filter(transport => !this.channelId || transport.cssClass == 'channel')
.forEach(item => { .forEach(item => {
console.log("运输方式", this.transportType)
if (this.transportType === null || this.transportType == '' || this.transportType == item.value) { if (this.transportType === null || this.transportType == '' || this.transportType == item.value) {
let routerList = [] let routerList = []
console.log("开通的线路", this.openedRouterList)
this.openedRouterList.forEach(router => { this.openedRouterList.forEach(router => {
if (router.transportType == item.value) { if (router.transportType == item.value) {
let availChannels = [] let availChannels = []
......
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