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
4753e6e7
Commit
4753e6e7
authored
Aug 05, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: dist
parent
eb725d93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
selectShop.vue
src/components/common/selectShop.vue
+4
-1
act-code-set.vue
src/views/salesleads/components/act-code-set.vue
+2
-2
No files found.
src/components/common/selectShop.vue
View file @
4753e6e7
<
template
>
<el-popover
placement=
"bottom"
v-model=
"departmentVisible"
>
<dm-simple-transfer
:value=
"selected"
:canSelectAll=
"canSelectAll"
:props=
"props"
:max=
"max"
:data=
"data"
:bodyH=
"62"
:item-size=
"66"
:titles=
"['选择门店', '已选门店']"
filterable
filter-placeholder=
"请输入门店名称/code"
@
change=
"change"
>
<dm-simple-transfer
:value=
"selected"
:canSelectAll=
"canSelectAll"
:
filterMethod=
"filterMethod"
:
props=
"props"
:max=
"max"
:data=
"data"
:bodyH=
"62"
:item-size=
"66"
:titles=
"['选择门店', '已选门店']"
filterable
filter-placeholder=
"请输入门店名称/code"
@
change=
"change"
>
<div
slot-scope=
"
{ option }">
<el-tooltip
:content=
"option.storeName"
:disabled=
"option.storeName.length
<
10
"
>
<p
class=
"storeName"
>
{{
option
.
storeName
}}
</p>
...
...
@@ -53,6 +53,9 @@ export default {
change
(
val
)
{
console
.
log
(
val
);
this
.
$emit
(
'change'
,
val
);
},
filterMethod
(
val
,
item
)
{
return
item
.
storeName
.
toLowerCase
().
indexOf
(
val
.
toLowerCase
())
>
-
1
||
item
.
storeCode
.
toLowerCase
().
indexOf
(
val
.
toLowerCase
())
>
-
1
;
}
}
};
...
...
src/views/salesleads/components/act-code-set.vue
View file @
4753e6e7
...
...
@@ -102,12 +102,12 @@ export default {
handleTagCloseTag
()
{
this
.
form
.
memberLabelName
=
''
;
this
.
form
.
memberLabelId
=
''
;
this
.
form
.
memberLabelStatus
=
0
;
},
saveTagPop
(
data
)
{
const
{
tagItemId
,
tagItemName
}
=
data
;
this
.
form
.
memberLabelId
=
tagItemId
;
this
.
form
.
memberLabelName
=
tagItemName
;
this
.
form
.
memberLabelStatus
=
1
;
},
onLoadmore
()
{
if
(
this
.
pageParam
.
pageNum
>=
this
.
total
)
return
;
...
...
@@ -145,7 +145,7 @@ export default {
},
// 保存按钮
save
()
{
if
(
this
.
form
.
memberLabelStatus
==
0
)
{
if
(
this
.
form
.
memberLabel
Id
&&
this
.
form
.
memberLabel
Status
==
0
)
{
this
.
$confirm
(
'关联的标签在GIC中已被删除,无法统计和查看添加好友客户数据,为确保后续客户数据统计,请重新关联标签'
,
'关联的标签已被删除,请重新关联标签'
,
{
confirmButtonText
:
'选择标签'
,
cancelButtonText
:
'取消'
,
...
...
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