Commit 43b20553 by zhuzhequan

fix:工厂端新增一些字段,以解决POD订单(CN)中某些国家的订单创建物流失败问题 #ID:1002428

parent c96041cb
...@@ -1458,6 +1458,43 @@ ...@@ -1458,6 +1458,43 @@
</el-button> </el-button>
</div> </div>
</div> </div>
<div class="goods-item-info">
<div class="goods-item-info-item">
<span class="goods-item-info-item-label"
>英文报关名称:</span
>
<span class="goods-item-info-item-value">
{{ item.customsNameEnglish }}
</span>
</div>
<div class="goods-item-info-item">
<span class="goods-item-info-item-label"
>中文报关名称:</span
>
<span class="goods-item-info-item-value">
{{ item.customsNameChinese }}
</span>
</div>
<div class="goods-item-info-item">
<span class="goods-item-info-item-label"
>申报重量(g):</span
>
<span class="goods-item-info-item-value">
{{ item.customsWeight }}
</span>
</div>
<div class="goods-item-info-item">
<span class="goods-item-info-item-label"
>申报价值($):</span
>
<span class="goods-item-info-item-value">
{{ item.customsValue }}
</span>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -3874,7 +3911,7 @@ const tableColumns = computed(() => { ...@@ -3874,7 +3911,7 @@ const tableColumns = computed(() => {
{ {
label: '操作', label: '操作',
slot: 'operate', slot: 'operate',
width: 260, width: 120,
align: 'center', align: 'center',
fixed: 'right', fixed: 'right',
prop: 'operate', prop: 'operate',
...@@ -3893,7 +3930,7 @@ const tableColumns = computed(() => { ...@@ -3893,7 +3930,7 @@ const tableColumns = computed(() => {
label: '商品', label: '商品',
prop: 'goods', prop: 'goods',
slot: 'goods', slot: 'goods',
minWidth: 920, minWidth: 1100,
}, },
{ {
label: '订单详情', label: '订单详情',
...@@ -3918,7 +3955,7 @@ const tableColumns = computed(() => { ...@@ -3918,7 +3955,7 @@ const tableColumns = computed(() => {
{ {
label: '操作', label: '操作',
slot: 'operate', slot: 'operate',
width: 180, width: 100,
align: 'center', align: 'center',
fixed: 'right', fixed: 'right',
prop: 'operate', prop: 'operate',
...@@ -6151,7 +6188,8 @@ const onUpdateCustomsDeclarationInfo = () => { ...@@ -6151,7 +6188,8 @@ const onUpdateCustomsDeclarationInfo = () => {
.goods-item { .goods-item {
display: grid; display: grid;
grid-template-columns: 100px 1fr minmax(150px, 1fr) 150px; // grid-template-columns: 100px 1fr minmax(150px, 1fr) 150px;
grid-template-columns: 100px 254px 1fr minmax(150px, 1fr) 150px 200px;
gap: 15px; gap: 15px;
.goods-item-img { .goods-item-img {
......
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