Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
97d95c22
Commit
97d95c22
authored
Jan 29, 2026
by
zhuzhequan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_logistics_cn' into 'release'
Dev logistics cn See merge request
!147
parents
b62d6eb9
430cbb36
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
91 additions
and
4 deletions
+91
-4
src/types/api/podCnOrder.ts
+1
-0
src/views/logistics/logisticsMethod.vue
+38
-0
src/views/order/podCN/components/updateAddress.vue
+8
-0
src/views/order/podCN/index.vue
+43
-4
src/views/order/podUs/PodMakeOrder.vue
+1
-0
No files found.
src/types/api/podCnOrder.ts
View file @
97d95c22
...
...
@@ -216,6 +216,7 @@ export interface LogisticsData {
export
interface
AddressInfo
{
id
?:
string
receiverName
:
string
rfcNumber
:
string
receiverPhone
:
string
receiverCountry
:
string
receiverProvince
:
string
...
...
src/views/logistics/logisticsMethod.vue
View file @
97d95c22
...
...
@@ -398,6 +398,34 @@ const formConfig = computed<IFormConfig[]>(() => [
message
:
'请输入物流编码'
,
},
],
},{
prop
:
'vat'
,
type
:
'input'
,
label
:
'vat编号'
,
fixed
:
'last'
,
attrs
:
{
placeholder
:
'请输入vat编号'
,
},
rules
:
[
{
required
:
false
,
message
:
'请输入vat编号'
,
},
],
},{
prop
:
'ioss'
,
type
:
'input'
,
label
:
'IOSS编号'
,
fixed
:
'last'
,
attrs
:
{
placeholder
:
'请输入IOSS编号'
,
},
rules
:
[
{
required
:
false
,
message
:
'请输入IOSS编号'
,
},
],
},
{
prop
:
'status'
,
...
...
@@ -605,6 +633,16 @@ const tableConfig = ref<TableColumn[]>([
},
},
{
prop
:
'vat'
,
label
:
'vat编号'
,
},
{
prop
:
'ioss'
,
label
:
'IOSS编号'
,
},
{
prop
:
'opeare'
,
label
:
'操作'
,
attrs
:
{
...
...
src/views/order/podCN/components/updateAddress.vue
View file @
97d95c22
...
...
@@ -11,6 +11,7 @@ const visible = defineModel<boolean>('visible')
const
form
=
defineModel
<
AddressInfo
>
(
'form'
,
{
default
:
{
receiverName
:
''
,
rfcNumber
:
''
,
receiverPhone
:
''
,
receiverCountry
:
''
,
receiverProvince
:
''
,
...
...
@@ -133,6 +134,13 @@ const submitForm = async () => {
placeholder=
"请输入邮政编码"
/>
</el-form-item>
<el-form-item
label=
"RFC税号"
prop=
"rfcNumber"
>
<el-input
v-model=
"form.rfcNumber"
clearable
placeholder=
"请输入RFC税号"
/>
</el-form-item>
</el-form>
<template
#
footer
>
...
...
src/views/order/podCN/index.vue
View file @
97d95c22
...
...
@@ -1486,6 +1486,43 @@
</el-button>
</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>
...
...
@@ -3013,6 +3050,7 @@ const totalAmountPrice = (item: PodCnOrderListData): string => {
const
countryList
=
ref
([])
const
currentRow
=
ref
<
AddressInfo
>
({
receiverName
:
''
,
rfcNumber
:
''
,
receiverPhone
:
''
,
receiverCountry
:
''
,
receiverProvince
:
''
,
...
...
@@ -3902,7 +3940,7 @@ const tableColumns = computed(() => {
{
label
:
'操作'
,
slot
:
'operate'
,
width
:
26
0
,
width
:
12
0
,
align
:
'center'
,
fixed
:
'right'
,
prop
:
'operate'
,
...
...
@@ -3921,7 +3959,7 @@ const tableColumns = computed(() => {
label
:
'商品'
,
prop
:
'goods'
,
slot
:
'goods'
,
minWidth
:
92
0
,
minWidth
:
110
0
,
}
,
{
label
:
'订单详情'
,
...
...
@@ -3946,7 +3984,7 @@ const tableColumns = computed(() => {
{
label
:
'操作'
,
slot
:
'operate'
,
width
:
1
8
0
,
width
:
1
0
0
,
align
:
'center'
,
fixed
:
'right'
,
prop
:
'operate'
,
...
...
@@ -6184,7 +6222,8 @@ const onUpdateCustomsDeclarationInfo = () => {
.
goods
-
item
{
display
:
grid
;
grid
-
template
-
columns
:
100
px
1
fr
minmax
(
150
px
,
1
fr
)
150
px
;
// grid-template-columns: 100px 1fr minmax(150px, 1fr) 150px;
grid
-
template
-
columns
:
100
px
254
px
1
fr
minmax
(
150
px
,
1
fr
)
150
px
200
px
;
gap
:
15
px
;
.
goods
-
item
-
img
{
...
...
src/views/order/podUs/PodMakeOrder.vue
View file @
97d95c22
...
...
@@ -650,6 +650,7 @@ const getPackingData = async (code: string) => {
background
:
'rgba(0, 0, 0, 0.3)'
,
})
currentCode
=
code
try
{
const
factoryNo
=
userStore
.
user
?.
factory
.
id
if
(
!
factoryNo
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment