Commit 2d929a5a authored by 邓春圆's avatar 邓春圆

全部列表

parent 390a19f6
......@@ -36,12 +36,12 @@
<el-table-column :label="$t('序号')" align="center" type="index"/>
<el-table-column :label="$t('始发仓')" align="center">
<template slot-scope="{row}">
{{ $l(exportWarehouseList.find(i => i.id === row.startWarehouseId), 'title') }}
{{ $l(row, 'startWarehouseTitle') }}
</template>
</el-table-column>
<el-table-column :label="$t('目的仓')" align="center">
<template slot-scope="{row}">
{{ $l(importWarehouseList.find(i => i.id === row.destWarehouseId), 'title') }}
{{ $l(row, 'destWarehouseTitle') }}
</template>
</el-table-column>
<el-table-column :label="$t('运输方式')" align="center">
......@@ -51,13 +51,17 @@
</el-table-column>
<el-table-column :label="$t('出货渠道')" align="center">
<template slot-scope="{row}">
{{ row.channelIds ? $l(row, 'channelNames') : '/'}}
{{ row.channelIds ? $l(row, 'channelNames') : '/' }}
</template>
</el-table-column>
<el-table-column :label="$t('操作')" align="center">
<template slot-scope="{row}">
<el-button v-if="row.transportType === 3" type="text" @click="$router.push({
path:'/offer/channel-route?id='+ row.id,
query:{
startWarehouseTitle:$l(row,'startWarehouseTitle'),
destWarehouseTitle: $l(row, 'destWarehouseTitle'),
}
})">空运渠道包装清关费
</el-button>
</template>
......
......@@ -236,6 +236,10 @@ export default {
<template>
<div style="padding: 20px">
<div style="margin-bottom: 15px">
<span>路线:{{$route.query.startWarehouseTitle}}{{$route.query.destWarehouseTitle}}</span>
<span style="margin-left: 30px;">运输方式:空运专线</span>
</div>
<el-card style="margin-bottom: 10px" v-for="(itemOuter,index) in form.channelList" :key="index">
<template #header>
<el-row :gutter="20" type="flex" align="middle">
......
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