Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
memberTag-web
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
memberTag
memberTag-web
Commits
3bfcc3f5
Commit
3bfcc3f5
authored
Oct 15, 2021
by
chenyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 关联导购、所属开卡导购添加无归属
parent
2e81cfca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
tag-config-options.vue
src/components/tag/tag-config-options.vue
+2
-2
index.js
src/components/tagDetail/mixin/index.js
+2
-2
No files found.
src/components/tag/tag-config-options.vue
View file @
3bfcc3f5
...
...
@@ -143,7 +143,7 @@
<div
class=
"m-b-20"
:key=
"'tag6' + pindex"
>
<el-radio
v-model=
"parent.computeRadio"
label=
"in"
>
属于
</el-radio>
<el-radio
v-model=
"parent.computeRadio"
label=
"notIn"
>
不属于
</el-radio>
<el-radio
v-model=
"parent.computeRadio"
label=
"-1"
v-if=
"['mainClerkId'].includes(currentKey)"
>
无归属
</el-radio>
<el-radio
v-model=
"parent.computeRadio"
label=
"-1"
v-if=
"['mainClerkId'
,'clerkId','openClerkId'
].includes(currentKey)"
>
无归属
</el-radio>
</div>
</
template
>
<!-- 7.固定时段/最近 -->
...
...
@@ -188,7 +188,7 @@
</div>
</template>
<!-- 9.输入搜索下拉多选 添加值 -->
<
template
v-if=
"parent.templateCode == 'tag008'?(
currentKey==='mainClerkId'
?(templateData[0].computeRadio!='-1'?true:false):true):false"
>
<
template
v-if=
"parent.templateCode == 'tag008'?(
['mainClerkId','clerkId','openClerkId'].includes(currentKey)
?(templateData[0].computeRadio!='-1'?true:false):true):false"
>
<div
class=
"m-b-20"
:key=
"'tag9' + pindex"
>
<div
class=
"add-search-select"
>
<el-select
...
...
src/components/tagDetail/mixin/index.js
View file @
3bfcc3f5
...
...
@@ -925,9 +925,9 @@ export default {
// 下拉搜索添加值
if
(
ele
.
templateCode
===
'tag008'
)
{
if
(
!
ele
.
addSelectTags
.
length
)
{
returnFlag
=
this
.
currentKey
===
'mainClerkId'
&&
tagValue
.
val
[
0
].
data
.
compute
===
'='
?
true
:
false
;
returnFlag
=
[
'mainClerkId'
,
'clerkId'
,
'openClerkId'
].
includes
(
this
.
currentKey
)
&&
tagValue
.
val
[
0
].
data
.
compute
===
'='
?
true
:
false
;
}
if
(
this
.
currentKey
===
'mainClerkId'
&&
tagValue
.
val
[
0
].
data
.
compute
===
'='
)
{
if
(
[
'mainClerkId'
,
'clerkId'
,
'openClerkId'
].
includes
(
this
.
currentKey
)
&&
tagValue
.
val
[
0
].
data
.
compute
===
'='
)
{
tagValue
.
val
[
0
].
data
.
value
=
'-1'
;
}
else
{
tagValue
.
val
[
0
].
data
.
value
=
ele
.
addSelectTags
.
map
(
item
=>
item
.
key
).
join
(
' '
);
...
...
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