Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
biz-trina5-app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
贺双
biz-trina5-app
Commits
26bba789
Commit
26bba789
authored
Jul 21, 2025
by
刘威龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
派车司机车牌手动输入识别问题处理、回单承运商改成订单类型
parent
8fd0565b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
orderPodItem.vue
components/orderPodItem/orderPodItem.vue
+1
-1
shipmentDispatch.vue
subpkg/shipmentDispatch/shipmentDispatch.vue
+17
-4
No files found.
components/orderPodItem/orderPodItem.vue
View file @
26bba789
...
...
@@ -17,7 +17,7 @@
<bs-customCell
label=
"回单类型 :"
:value=
"propData.pod_type_label"
labelCol=
"5"
wrapCol=
"6"
/>
</view>
<view
style=
"width: 50%;float: left;"
>
<bs-customCell
label=
"
承运商 :"
:value=
"propData.servprov_name"
labelCol=
"4"
wrapCol=
"8
"
/>
<bs-customCell
label=
"
订单类型 :"
:value=
"propData.order_type"
labelCol=
"5"
wrapCol=
"6
"
/>
</view>
</view>
<view
class=
" flex_sb"
>
...
...
subpkg/shipmentDispatch/shipmentDispatch.vue
View file @
26bba789
...
...
@@ -14,17 +14,17 @@
<u-form-item
prop=
"truck_id"
required
label=
"车牌号"
labelWidth=
"25%"
borderBottom
>
<view
@
click=
"showProcess"
>
<u-input
border=
"none"
placeholder=
"请选择车牌号"
:value=
"viewEnums[formData.truck_id]"
/>
<u-input
border=
"none"
placeholder=
"请选择车牌号"
:value=
"viewEnums[formData.truck_id]"
@
input=
"handleTruckInput"
/>
</view>
</u-form-item>
<u-form-item
prop=
"driver_id"
required
label=
"司机"
labelWidth=
"25%"
borderBottom
>
<view
@
click=
"showProcess1"
>
<u-input
border=
"none"
placeholder=
"请选择司机"
:value=
"driverViewEnums[formData.driver_id]"
/>
<u-input
border=
"none"
placeholder=
"请选择司机"
:value=
"driverViewEnums[formData.driver_id]"
@
input=
"handleDriverInput"
/>
</view>
</u-form-item>
<u-form-item
prop=
"driver_tel"
required
label=
"司机电话"
labelWidth=
"25%"
borderBottom
>
<u-input
:disabledColor=
"'#ffffff'"
placeholder=
"请输入手机号"
border=
"none"
v-model=
"formData.driver_tel"
/>
<u-input
:disabledColor=
"'#ffffff'"
placeholder=
"请输入手机号"
border=
"none"
v-model=
"formData.driver_tel"
@
input=
"handleDriverTelInput"
/>
</u-form-item>
<u-form-item
prop=
"early_pickup_date"
required
label=
"预计提货时间"
labelWidth=
"35%"
borderBottom
>
...
...
@@ -378,7 +378,20 @@
console
.
error
(
'返回失败:'
,
err
);
}
});
}
},
handleTruckInput
(
e
)
{
// 更新车牌号
this
.
formData
.
truck_no
=
e
;
// 清空关联的truck_id(如果有)
this
.
formData
.
truck_id
=
""
;
},
handleDriverInput
(
e
){
this
.
formData
.
driver_name
=
e
;
this
.
formData
.
driver_id
=
""
;
},
handleDriverTelInput
(
e
){
this
.
formData
.
driver_tel
=
e
;
}
}
}
</
script
>
...
...
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