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
c0db04e0
Commit
c0db04e0
authored
Aug 14, 2022
by
wanglianghe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
其他服务
parent
f547a4d0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
+16
-4
index.vue
src/views/ecw/node/index.vue
+16
-4
No files found.
src/views/ecw/node/index.vue
View file @
c0db04e0
...
...
@@ -176,8 +176,7 @@
<el-form-item
label=
"其他服务"
prop=
"otherServiceList"
>
<el-checkbox-group
v-model=
"form.otherServiceList"
>
<el-checkbox
label=
"1"
>
送货上门
</el-checkbox>
<el-checkbox
label=
"2"
>
非控货订单代收货款
</el-checkbox>
<el-checkbox
v-for=
"item in serviceGroup"
:label=
"item.id"
:key=
"item.id"
:value=
"item.id"
>
{{item.text}}
</el-checkbox>
</el-checkbox-group>
</el-form-item>
...
...
@@ -265,6 +264,11 @@ export default {
pageSize
:
10
},
serviceGroup
:
[
{
id
:
'
1
'
,
text
:
'
送货上门
'
},
{
id
:
'
2
'
,
text
:
'
非控货订单代收货款
'
}
],
dateRangeCreateTime
:
[],
// 查询参数
queryParams
:
{
...
...
@@ -500,6 +504,7 @@ export default {
const
id
=
row
.
id
;
getNode
(
id
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
form
.
otherServiceList
=
[];
this
.
changeContinents
(
response
.
data
.
zhou
);
this
.
changeCountry
(
response
.
data
.
guojia
);
...
...
@@ -508,8 +513,12 @@ export default {
let
ckList
=
response
.
data
.
freight
.
split
(
'
,
'
);
this
.
$set
(
this
.
form
,
'
checkList
'
,
ckList
);
// console.log('11111111');
if
(
response
.
data
.
otherService
)
{
let
otherService
=
response
.
data
.
otherService
.
split
(
"
,
"
);
this
.
$set
(
this
.
form
,
'
otherServiceList
'
,
otherService
);
}
this
.
open
=
true
;
this
.
title
=
"
修改服务网点
"
;
...
...
@@ -522,6 +531,9 @@ export default {
return
;
}
console
.
log
(
this
.
form
);
// return;
//逗号拼接运输方式
var
freight
=
''
for
(
let
i
=
0
;
i
<
this
.
form
.
checkList
.
length
;
i
++
)
{
...
...
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