Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-3
Overview
Overview
Details
Activity
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
office
haoban-3
Commits
d5cd15d8
Commit
d5cd15d8
authored
Aug 08, 2022
by
crushh
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/act-code' into dev
parents
ee12510f
0299fc03
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
select-clerk.vue
...ds/actCodeManage/components/select-clerk/select-clerk.vue
+9
-6
No files found.
src/views/salesleads/actCodeManage/components/select-clerk/select-clerk.vue
View file @
d5cd15d8
<
template
>
<
template
>
<el-dialog
:visible
.
sync=
"show"
v-if=
"show"
title=
"选择成员"
width=
"1030px"
append-to-body
@
close=
"onCancel"
>
<div>
<el-dialog
:visible=
"visible"
v-if=
"visible"
title=
"选择成员"
width=
"1030px"
append-to-body
@
close=
"onCancel"
>
<div
class=
"select-clerk"
v-loading=
"loading"
>
<div
class=
"select-clerk"
v-loading=
"loading"
>
<!-- 选择导购 -->
<!-- 选择导购 -->
<div
class=
"clerk-list"
>
<div
class=
"clerk-list"
>
...
@@ -82,10 +83,11 @@
...
@@ -82,10 +83,11 @@
</div>
</div>
</div>
</div>
<
template
slot=
"footer"
>
<
template
slot=
"footer"
>
<el-button
@
click=
"show = false
"
>
取消
</el-button>
<el-button
@
click=
"onCancel
"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"onSave"
>
确定
</el-button>
<el-button
type=
"primary"
@
click=
"onSave"
>
确定
</el-button>
</
template
>
</
template
>
</el-dialog>
</el-dialog>
</div>
</template>
</template>
<
script
>
<
script
>
...
@@ -95,7 +97,10 @@ export default {
...
@@ -95,7 +97,10 @@ export default {
name
:
'SelectClerk'
,
name
:
'SelectClerk'
,
components
:
{
GicSelectGroup
},
components
:
{
GicSelectGroup
},
props
:
{
props
:
{
visible
:
Boolean
,
visible
:
{
type
:
Boolean
,
default
:
false
},
data
:
{
data
:
{
type
:
Array
,
type
:
Array
,
default
:
()
=>
[]
default
:
()
=>
[]
...
@@ -118,7 +123,6 @@ export default {
...
@@ -118,7 +123,6 @@ export default {
watch
:
{
watch
:
{
visible
(
flag
)
{
visible
(
flag
)
{
if
(
flag
)
{
if
(
flag
)
{
this
.
show
=
true
;
this
.
selected
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
data
));
this
.
selected
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
data
));
this
.
getStoreClerkList
();
this
.
getStoreClerkList
();
}
}
...
@@ -126,7 +130,6 @@ export default {
...
@@ -126,7 +130,6 @@ export default {
},
},
data
()
{
data
()
{
return
{
return
{
show
:
false
,
params
:
{
params
:
{
storeGroup
:
[],
storeGroup
:
[],
storeGroupId
:
''
,
// 分组ID
storeGroupId
:
''
,
// 分组ID
...
@@ -356,7 +359,7 @@ export default {
...
@@ -356,7 +359,7 @@ export default {
},
},
onSave
()
{
onSave
()
{
this
.
$emit
(
'save'
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
selected
)));
this
.
$emit
(
'save'
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
selected
)));
this
.
show
=
false
;
this
.
$emit
(
'update:visible'
,
false
)
;
}
}
}
}
};
};
...
...
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