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
5996fb85
Commit
5996fb85
authored
Jan 26, 2026
by
zhuzhequan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:工厂端新增一些字段,以解决POD订单(CN)中某些国家的订单创建物流失败问题 #ID:1002428
parent
35fa3b0a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
0 deletions
+47
-0
src/types/api/podCnOrder.ts
+1
-0
src/views/logistics/logisticsMethod.vue
+38
-0
src/views/order/podCN/components/updateAddress.vue
+8
-0
No files found.
src/types/api/podCnOrder.ts
View file @
5996fb85
...
...
@@ -215,6 +215,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 @
5996fb85
...
...
@@ -398,6 +398,34 @@ const formConfig = computed<IFormConfig[]>(() => [
message
:
'请输入物流编码'
,
},
],
},{
prop
:
'vat'
,
type
:
'input'
,
label
:
'vat编号'
,
fixed
:
'last'
,
attrs
:
{
placeholder
:
'请输入vat编号'
,
},
rules
:
[
{
required
:
true
,
message
:
'请输入vat编号'
,
},
],
},{
prop
:
'ioss'
,
type
:
'input'
,
label
:
'IOSS编号'
,
fixed
:
'last'
,
attrs
:
{
placeholder
:
'请输入IOSS编号'
,
},
rules
:
[
{
required
:
true
,
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 @
5996fb85
...
...
@@ -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
>
...
...
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