Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
9ea0f046
Commit
9ea0f046
authored
Jun 12, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
编辑空运出货
parent
75f0bba4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
8 deletions
+18
-8
editAirForm.vue
src/views/ecw/box/editAirForm.vue
+18
-8
No files found.
src/views/ecw/box/editAirForm.vue
View file @
9ea0f046
...
...
@@ -25,22 +25,22 @@
<el-option
v-for=
"item in importWarehouseList"
:label=
"$l(item, 'title')"
:value=
"item.id"
:key=
"item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('目的港清关')"
prop=
"
transportTyp
e"
>
<el-radio-group
v-model=
"form.
qingguan
"
>
<el-form-item
:label=
"$t('目的港清关')"
prop=
"
destinationClearanc
e"
>
<el-radio-group
v-model=
"form.
destinationClearanceSelect"
@
input=
"destinationClearanceSelect
"
>
<el-radio
:label=
"1"
>
{{
$t
(
'
我司
'
)
}}
</el-radio>
<el-radio
:label=
"
2
"
>
{{
$t
(
'
客户
'
)
}}
</el-radio>
<el-radio
:label=
"
3
"
>
{{
$t
(
'
客户
'
)
}}
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
v-if=
"form.
qingguan==1"
prop=
"qingguan2
"
:rules=
"[
<el-form-item
v-if=
"form.
destinationClearanceSelect==1"
prop=
"destinationClearance
"
:rules=
"[
{ required: true, message: this.$t('清关方式不能为空'), trigger: 'blur' }
]">
<el-radio-group
v-model=
"form.
qingguan2
"
>
<el-radio-group
v-model=
"form.
destinationClearance
"
>
<el-radio
:label=
"1"
>
{{
$t
(
'
我司清关
'
)
}}
</el-radio>
<el-radio
:label=
"2"
>
{{
$t
(
'
合作方清关
'
)
}}
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
:label=
"$t('发货方式')"
prop=
"
transport
Type"
>
<el-radio-group
v-model=
"form.
fahuo
"
>
<el-form-item
:label=
"$t('发货方式')"
prop=
"
delivery
Type"
>
<el-radio-group
v-model=
"form.
deliveryType
"
>
<el-radio
:label=
"1"
>
{{
$t
(
'
多票
'
)
}}
</el-radio>
<el-radio
:label=
"2"
>
{{
$t
(
'
单票
'
)
}}
</el-radio>
</el-radio-group>
...
...
@@ -69,12 +69,17 @@ export default {
},
created
()
{
this
.
form
=
{
...
this
.
shipmentObj
};
if
(
this
.
form
.
destinationClearance
&&
this
.
form
.
destinationClearance
!=
3
){
this
.
form
.
destinationClearanceSelect
=
1
}
this
.
getChannelList
()
},
data
()
{
return
{
// 表单参数
form
:
{},
form
:
{
destinationClearance
:
null
},
channelList
:
[],
// 表单校验
rules
:
{
...
...
@@ -94,6 +99,11 @@ export default {
getChannelList
()
{
getChannelList
().
then
((
res
)
=>
(
this
.
channelList
=
res
.
data
))
},
destinationClearanceSelect
(
val
)
{
if
(
val
==
3
){
this
.
form
.
destinationClearance
=
val
}
},
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
'
form
'
].
validate
((
valid
)
=>
{
...
...
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