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
e39dc95b
Commit
e39dc95b
authored
Nov 13, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报价单增值服务参数bug修复
parent
48dd125a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
6 deletions
+4
-6
detail.vue
src/views/ecw/offer/detail.vue
+2
-2
edit.vue
src/views/ecw/offer/edit.vue
+1
-1
feeApplication.vue
src/views/ecw/order/feeApplication.vue
+1
-3
No files found.
src/views/ecw/offer/detail.vue
View file @
e39dc95b
...
...
@@ -74,10 +74,10 @@
</el-descriptions-item>
<el-descriptions-item
v-if=
"getDictData(DICT_TYPE.ECW_TRANSPORT_TYPE, list.transportId).cssClass == 'channel'"
:label=
"$t('出货渠道')"
>
{{
list
.
channelName
}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('服务')"
>
<el-tag
v-if=
"list.
type && list.t
ype.indexOf('1') > -1"
>
<el-tag
v-if=
"list.
serviceType && list.serviceT
ype.indexOf('1') > -1"
>
{{
$t
(
"
集运
"
)
}}
</el-tag>
<el-tag
v-if=
"list.
type && list.t
ype.indexOf('2') > -1"
>
<el-tag
v-if=
"list.
serviceType && list.serviceT
ype.indexOf('2') > -1"
>
{{
$t
(
"
海外仓
"
)
}}
</el-tag>
</el-descriptions-item>
...
...
src/views/ecw/offer/edit.vue
View file @
e39dc95b
...
...
@@ -143,7 +143,7 @@
</div>
<div
class=
"form-section"
>
<el-form-item
:label=
"$t('增值服务')"
v-if=
"routeOtherServices.indexOf('1') > -1 || routeOtherServices.indexOf('4') > -1"
>
<el-checkbox-group
v-model=
"form.
t
ype"
>
<el-checkbox-group
v-model=
"form.
serviceT
ype"
>
<el-checkbox
label=
"1"
v-if=
"routeOtherServices.indexOf('1') > -1"
>
{{ $t("集运服务") }}
</el-checkbox>
<el-checkbox
label=
"2"
v-if=
"routeOtherServices.indexOf('4') > -1"
>
{{ $t("海外仓") }}
</el-checkbox>
</el-checkbox-group>
...
...
src/views/ecw/order/feeApplication.vue
View file @
e39dc95b
...
...
@@ -307,9 +307,8 @@ export default {
},
submit
()
{
// 判断费用申请是否有未填项
console
.
log
(
"
提交的费用信息列表
"
,
this
.
feeList
)
//
console.log("提交的费用信息列表", this.feeList)
const
errList
=
this
.
feeList
.
filter
((
item
)
=>
{
console
.
log
(
"
金额值
"
,
item
[
"
applicationFee
"
])
return
(
!
item
[
"
feeType
"
]
||
item
.
applicationFee
==
null
||
item
.
applicationFee
==
undefined
||
...
...
@@ -317,7 +316,6 @@ export default {
!
item
[
"
payType
"
]
);
});
console
.
log
(
"
错误值信息
"
,
errList
)
if
(
errList
.
length
)
{
return
this
.
$message
.
error
(
"
请填写完整费用申请信息
"
);
}
...
...
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