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
76ef692f
Commit
76ef692f
authored
May 11, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 去掉activeGroupId
parent
6d16ae0a
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
0 additions
and
91 deletions
+0
-91
chat-log-list.vue
src/components/app/chat-log-list.vue
+0
-12
store-tree-select.vue
src/components/app/store-tree-select.vue
+0
-8
addGroupTemplate.vue
src/views/apps/customerApp/addGroupTemplate.vue
+0
-6
memberGroupSet.vue
src/views/apps/customerApp/memberGroupSet.vue
+0
-7
memberShowSet.vue
src/views/apps/customerApp/memberShowSet.vue
+0
-7
storeRangeSet.vue
src/views/apps/customerApp/storeRangeSet.vue
+0
-6
evaluate-set.vue
src/views/apps/order-evaluate/evaluate-set.vue
+0
-6
newCardPut.vue
src/views/apps/protectCard/newCardPut.vue
+0
-13
newCardStrategy.vue
src/views/apps/protectCard/newCardStrategy.vue
+0
-13
newCardTemp.vue
src/views/apps/protectCard/newCardTemp.vue
+0
-13
No files found.
src/components/app/chat-log-list.vue
View file @
76ef692f
...
...
@@ -67,12 +67,6 @@ export default {
return
''
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
},
showFlag
:
{
type
:
Boolean
,
default
()
{
...
...
@@ -178,12 +172,6 @@ export default {
that
.
activeBrand
=
newData
;
}
},
activeGroupId
:
function
(
newData
,
oldData
)
{
const
that
=
this
;
if
(
!!
newData
)
{
that
.
activeGroup
=
newData
;
}
},
// showFlag: function(newData, oldData) {
// const that = this;
// if (!!newData) {
...
...
src/components/app/store-tree-select.vue
View file @
76ef692f
...
...
@@ -68,7 +68,6 @@ export default {
appScene
:
2
,
// 1:带权限,2:不带权限
projectName
:
''
,
// 当前项目名
activeBrand
:
this
.
brandId
,
activeGroup
:
this
.
activeGroupId
,
// 传递的品牌分组 id
storeVisible
:
false
,
storeGroupIds
:
[],
storeData
:
[],
...
...
@@ -146,19 +145,12 @@ export default {
that
.
checkStore
();
that
.
getStoreGroup
();
}
},
activeGroupId
:
function
(
newData
,
oldData
)
{
let
that
=
this
;
if
(
!!
newData
)
{
that
.
activeGroup
=
newData
;
}
}
},
mounted
()
{
const
that
=
this
;
if
(
!!
that
.
brandId
)
{
that
.
activeBrand
=
that
.
brandId
;
that
.
activeGroup
=
that
.
activeGroupId
;
that
.
checkStore
();
that
.
getStoreGroup
();
}
...
...
src/views/apps/customerApp/addGroupTemplate.vue
View file @
76ef692f
...
...
@@ -86,12 +86,6 @@ export default {
default
()
{
return
'1'
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
data
()
{
...
...
src/views/apps/customerApp/memberGroupSet.vue
View file @
76ef692f
...
...
@@ -131,19 +131,12 @@ export default {
default
()
{
return
'1'
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
data
()
{
return
{
projectName
:
''
,
// 当前项目名
activeName
:
'first'
,
activeGroup
:
this
.
activeGroupId
,
// 商户(品牌) groupId
wxEnterpriseRelatedId
:
sessionStorage
.
getItem
(
'userInfos'
)
?
JSON
.
parse
(
sessionStorage
.
getItem
(
'userInfos'
)).
wxEnterpriseId
:
''
,
myCustomData
:
{
searchFlag
:
false
,
...
...
src/views/apps/customerApp/memberShowSet.vue
View file @
76ef692f
...
...
@@ -77,19 +77,12 @@ export default {
default
()
{
return
'1'
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
data
()
{
return
{
projectName
:
''
,
// 当前项目名
activeName
:
'first'
,
activeGroup
:
this
.
activeGroupId
,
// 商户(品牌) groupId
wxEnterpriseRelatedId
:
JSON
.
parse
(
sessionStorage
.
getItem
(
'userInfos'
)).
wxEnterpriseId
,
myCustomData
:
{
searchFlag
:
false
,
...
...
src/views/apps/customerApp/storeRangeSet.vue
View file @
76ef692f
...
...
@@ -70,12 +70,6 @@ export default {
default
()
{
return
'1'
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
data
()
{
...
...
src/views/apps/order-evaluate/evaluate-set.vue
View file @
76ef692f
...
...
@@ -45,12 +45,6 @@ export default {
default
()
{
return
'1'
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
data
()
{
...
...
src/views/apps/protectCard/newCardPut.vue
View file @
76ef692f
...
...
@@ -136,12 +136,6 @@ export default {
default
()
{
return
''
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
components
:
{
...
...
@@ -152,7 +146,6 @@ export default {
data
()
{
return
{
activeBrand
:
this
.
brandId
,
// 商户(品牌) id
activeGroup
:
this
.
activeGroupId
,
// 商户(品牌) groupId
activeId
:
'3'
,
wxEnterpriseId
:
sessionStorage
.
getItem
(
'userInfos'
)
?
JSON
.
parse
(
sessionStorage
.
getItem
(
'userInfos'
)).
wxEnterpriseId
:
''
,
timeOptions
:
[
...
...
@@ -570,12 +563,6 @@ export default {
that
.
activeBrand
=
newData
;
that
.
getCardData
();
}
},
activeGroupId
:
function
(
newData
,
oldData
)
{
const
that
=
this
;
if
(
!!
newData
)
{
that
.
activeGroup
=
newData
;
}
}
},
mounted
()
{
...
...
src/views/apps/protectCard/newCardStrategy.vue
View file @
76ef692f
...
...
@@ -149,12 +149,6 @@ export default {
default
()
{
return
''
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
components
:
{
...
...
@@ -165,7 +159,6 @@ export default {
data
()
{
return
{
activeBrand
:
this
.
brandId
,
// 商户(品牌) id
activeGroup
:
this
.
activeGroupId
,
// 商户(品牌) groupId
activeId
:
'3'
,
wxEnterpriseId
:
sessionStorage
.
getItem
(
'userInfos'
)
?
JSON
.
parse
(
sessionStorage
.
getItem
(
'userInfos'
)).
wxEnterpriseId
:
''
,
...
...
@@ -618,12 +611,6 @@ export default {
that
.
activeBrand
=
newData
;
that
.
getCardData
();
}
},
activeGroupId
:
function
(
newData
,
oldData
)
{
const
that
=
this
;
if
(
!!
newData
)
{
that
.
activeGroup
=
newData
;
}
}
},
mounted
()
{
...
...
src/views/apps/protectCard/newCardTemp.vue
View file @
76ef692f
...
...
@@ -108,12 +108,6 @@ export default {
default
()
{
return
''
;
}
},
activeGroupId
:
{
type
:
String
,
default
()
{
return
''
;
}
}
},
components
:
{
...
...
@@ -123,7 +117,6 @@ export default {
data
()
{
return
{
activeBrand
:
this
.
brandId
,
// 商户(品牌) id
activeGroup
:
this
.
activeGroupId
,
// 商户(品牌) groupId
activeId
:
'3'
,
commitName
:
!!
sessionStorage
.
getItem
(
'userInfos'
)
?
JSON
.
parse
(
sessionStorage
.
getItem
(
'userInfos'
)).
staffName
:
''
,
wxEnterpriseId
:
sessionStorage
.
getItem
(
'userInfos'
)
?
JSON
.
parse
(
sessionStorage
.
getItem
(
'userInfos'
)).
wxEnterpriseId
:
''
,
...
...
@@ -506,12 +499,6 @@ export default {
that
.
activeBrand
=
newData
;
// that.getCardData();
}
},
activeGroupId
:
function
(
newData
,
oldData
)
{
const
that
=
this
;
if
(
!!
newData
)
{
that
.
activeGroup
=
newData
;
}
}
},
mounted
()
{
...
...
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