Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a3cec912
authored
Mar 16, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
新增发货单必填
parent
01b28486
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
src/views/OrderTrack/purAdd.vue
src/views/OrderTrack/purAdd.vue
View file @
a3cec912
<
template
>
<section
class=
"goods pagex"
>
<div
class=
"goods-con"
>
<el-form
:inline=
"true"
:model=
"formParam"
label-width=
"95px"
ref=
"ruleForm"
>
<el-form
:inline=
"true"
:model=
"formParam"
label-width=
"95px"
ref=
"ruleForm"
:rules=
"rules"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"submit('ruleForm')"
>
提交
</el-button>
<el-button
@
click=
"canel"
>
取消
</el-button>
...
...
@@ -9,8 +9,8 @@
<div
class=
"tip-title"
style=
"margin-top: 0"
>
<p>
基本信息
</p>
</div>
<el-form-item
label=
"物流公司:"
>
<el-select
v-model=
"formParam.shipping_id"
placeholder=
"请选择"
prop=
"shipping_id"
>
<el-form-item
label=
"物流公司:"
prop=
"shipping_id"
>
<el-select
v-model=
"formParam.shipping_id"
placeholder=
"请选择"
>
<el-option
value=
"13"
label=
"联邦快递"
></el-option>
<el-option
value=
"12"
label=
"DHL国际快递"
></el-option>
<el-option
value=
"1"
label=
"顺丰速运"
></el-option>
...
...
@@ -26,7 +26,7 @@
<el-option
value=
"17"
label=
"UPS"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"物流单号:"
>
<el-form-item
label=
"物流单号:"
prop=
"shipment_number"
>
<el-input
v-model=
"formParam.shipment_number"
placeholder=
"请输入物流单号"
></el-input>
</el-form-item>
<el-form-item
label=
"发货时间:"
>
...
...
@@ -83,6 +83,14 @@ export default {
return
time
.
getTime
()
<
Date
.
now
()
-
8.64e7
;
}
},
rules
:
{
shipping_id
:
[
{
required
:
true
,
message
:
'请选择物流公司'
,
trigger
:
'change'
}
],
shipment_number
:
[
{
required
:
true
,
message
:
'请输入物流单号'
,
trigger
:
'change'
}
]
},
itemlist
:
[],
formParam
:
{
company_id
:
''
,
...
...
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