Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-4
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-4
Commits
a6f4b20f
Commit
a6f4b20f
authored
Sep 08, 2020
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 调整菜单显示
parent
21434ffe
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
0 deletions
+7
-0
app-detail.vue
src/views/app-controls/app-detail.vue
+1
-0
app-list.vue
src/views/app-controls/app-list.vue
+1
-0
audit-config.vue
src/views/review-center/audit-config.vue
+1
-0
audit-group-list.vue
src/views/review-center/audit-group-list.vue
+1
-0
audit-item-list.vue
src/views/review-center/audit-item-list.vue
+1
-0
create-audit-group.vue
src/views/review-center/create-audit-group.vue
+1
-0
create-audit-item.vue
src/views/review-center/create-audit-item.vue
+1
-0
No files found.
src/views/app-controls/app-detail.vue
View file @
a6f4b20f
...
@@ -55,6 +55,7 @@ export default {
...
@@ -55,6 +55,7 @@ export default {
if
(
!
appId
)
{
if
(
!
appId
)
{
this
.
$router
.
go
(
-
1
);
this
.
$router
.
go
(
-
1
);
}
}
this
.
$emit
(
'showTab'
,
'/app-list'
);
// this.getAppDetail(appId);
// this.getAppDetail(appId);
},
},
methods
:
{
methods
:
{
...
...
src/views/app-controls/app-list.vue
View file @
a6f4b20f
...
@@ -37,6 +37,7 @@ export default {
...
@@ -37,6 +37,7 @@ export default {
},
},
created
()
{
created
()
{
this
.
getAppList
();
this
.
getAppList
();
this
.
$emit
(
'showTab'
,
'/app-list'
);
},
},
methods
:
{
methods
:
{
getAppList
()
{
getAppList
()
{
...
...
src/views/review-center/audit-config.vue
View file @
a6f4b20f
...
@@ -27,6 +27,7 @@ export default {
...
@@ -27,6 +27,7 @@ export default {
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
this
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
getAuditConfig
();
this
.
getAuditConfig
();
this
.
$emit
(
'showTab'
,
'/audit-config'
);
},
},
methods
:
{
methods
:
{
getAuditConfig
()
{
getAuditConfig
()
{
...
...
src/views/review-center/audit-group-list.vue
View file @
a6f4b20f
...
@@ -33,6 +33,7 @@ export default {
...
@@ -33,6 +33,7 @@ export default {
created
()
{
created
()
{
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
this
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
$emit
(
'showTab'
,
'/audit-group-list'
);
this
.
getGroupList
();
this
.
getGroupList
();
},
},
methods
:
{
methods
:
{
...
...
src/views/review-center/audit-item-list.vue
View file @
a6f4b20f
...
@@ -34,6 +34,7 @@ export default {
...
@@ -34,6 +34,7 @@ export default {
created
()
{
created
()
{
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
this
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
$emit
(
'showTab'
,
'/audit-item-list'
);
this
.
getAuditItemList
();
this
.
getAuditItemList
();
},
},
methods
:
{
methods
:
{
...
...
src/views/review-center/create-audit-group.vue
View file @
a6f4b20f
...
@@ -49,6 +49,7 @@ export default {
...
@@ -49,6 +49,7 @@ export default {
const
{
auditGroupId
}
=
this
.
$route
.
query
;
const
{
auditGroupId
}
=
this
.
$route
.
query
;
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
this
.
groupData
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
groupData
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
$emit
(
'showTab'
,
'/audit-group-list'
);
if
(
auditGroupId
)
{
if
(
auditGroupId
)
{
this
.
getGroupDetail
(
auditGroupId
);
this
.
getGroupDetail
(
auditGroupId
);
}
}
...
...
src/views/review-center/create-audit-item.vue
View file @
a6f4b20f
...
@@ -49,6 +49,7 @@ export default {
...
@@ -49,6 +49,7 @@ export default {
const
{
auditItemId
}
=
this
.
$route
.
query
;
const
{
auditItemId
}
=
this
.
$route
.
query
;
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
const
haobanUser
=
JSON
.
parse
(
localStorage
.
getItem
(
'haoBanUser'
)
||
'{}'
);
this
.
auditData
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
auditData
.
wxEnterpriseId
=
haobanUser
.
wxEnterpriseId
;
this
.
$emit
(
'showTab'
,
'/audit-item-list'
);
if
(
auditItemId
)
{
if
(
auditItemId
)
{
this
.
getAuditItemDetail
(
auditItemId
);
this
.
getAuditItemDetail
(
auditItemId
);
}
}
...
...
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