Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
42cea84a
Commit
42cea84a
authored
Apr 16, 2021
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
菜单调整 + 资产流程迁移
parent
ae099598
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2601 additions
and
0 deletions
+2601
-0
menu-form.vue
src/components/system/menu-form.vue
+14
-0
XProcessManagement.vue
src/pages/financial/XProcessManagement.vue
+823
-0
XaddFinancialProcess.vue
src/pages/financial/XaddFinancialProcess.vue
+1754
-0
routes.js
src/router/routes.js
+10
-0
No files found.
src/components/system/menu-form.vue
View file @
42cea84a
...
@@ -31,6 +31,8 @@
...
@@ -31,6 +31,8 @@
v-model=
"objOption.Status"
/>
v-model=
"objOption.Status"
/>
<div
class=
"text-grey-6 text-caption"
>
注意:关闭后,菜单将无法正常使用.
</div>
<div
class=
"text-grey-6 text-caption"
>
注意:关闭后,菜单将无法正常使用.
</div>
</div>
</div>
<q-select
class=
"col-6 q-pr-lg"
v-model=
"objOption.TeamType"
:options=
"TeamTypeOpts"
emit-value
map-options
label=
"项目类型"
/>
</div>
</div>
</q-card-section>
</q-card-section>
<q-separator
/>
<q-separator
/>
...
@@ -64,6 +66,15 @@
...
@@ -64,6 +66,15 @@
MenuLevelOpts
:
[],
MenuLevelOpts
:
[],
//菜单类型
//菜单类型
MenuTypeOpts
:
[],
MenuTypeOpts
:
[],
TeamTypeOpts
:
[
{
label
:
'教育菜单'
,
value
:
1
},
{
label
:
'资产菜单'
,
value
:
2
}],
persistent
:
true
,
persistent
:
true
,
objOption
:
{
objOption
:
{
MenuId
:
0
,
//菜单编号
MenuId
:
0
,
//菜单编号
...
@@ -73,6 +84,7 @@
...
@@ -73,6 +84,7 @@
MenuIcon
:
""
,
//菜单图标
MenuIcon
:
""
,
//菜单图标
MenuLevel
:
-
1
,
//菜单等级
MenuLevel
:
-
1
,
//菜单等级
MenuType
:
-
1
,
//菜单类型
MenuType
:
-
1
,
//菜单类型
TeamType
:
1
,
//项目类型
SortNum
:
0
,
//排序
SortNum
:
0
,
//排序
Status
:
0
,
//状态(0-正常,1-禁用)
Status
:
0
,
//状态(0-正常,1-禁用)
IsUserCenter
:
0
,
//是否个人中心页面
IsUserCenter
:
0
,
//是否个人中心页面
...
@@ -133,6 +145,7 @@
...
@@ -133,6 +145,7 @@
this
.
objOption
.
MenuIcon
=
res
.
Data
.
MenuIcon
;
this
.
objOption
.
MenuIcon
=
res
.
Data
.
MenuIcon
;
this
.
objOption
.
MenuLevel
=
res
.
Data
.
MenuLevel
;
this
.
objOption
.
MenuLevel
=
res
.
Data
.
MenuLevel
;
this
.
objOption
.
MenuType
=
res
.
Data
.
MenuType
;
this
.
objOption
.
MenuType
=
res
.
Data
.
MenuType
;
this
.
objOption
.
TeamType
=
res
.
Data
.
TeamType
;
this
.
objOption
.
SortNum
=
res
.
Data
.
SortNum
;
this
.
objOption
.
SortNum
=
res
.
Data
.
SortNum
;
this
.
objOption
.
Status
=
res
.
Data
.
Status
;
this
.
objOption
.
Status
=
res
.
Data
.
Status
;
this
.
objOption
.
IsUserCenter
=
res
.
Data
.
IsUserCenter
;
this
.
objOption
.
IsUserCenter
=
res
.
Data
.
IsUserCenter
;
...
@@ -147,6 +160,7 @@
...
@@ -147,6 +160,7 @@
this
.
objOption
.
MenuIcon
=
""
;
this
.
objOption
.
MenuIcon
=
""
;
this
.
objOption
.
MenuLevel
=
-
1
;
this
.
objOption
.
MenuLevel
=
-
1
;
this
.
objOption
.
MenuType
=
-
1
;
this
.
objOption
.
MenuType
=
-
1
;
this
.
objOption
.
TeamType
=
1
;
this
.
objOption
.
SortNum
=
0
;
this
.
objOption
.
SortNum
=
0
;
this
.
objOption
.
Status
=
0
;
this
.
objOption
.
Status
=
0
;
this
.
objOption
.
IsUserCenter
=
0
;
this
.
objOption
.
IsUserCenter
=
0
;
...
...
src/pages/financial/XProcessManagement.vue
0 → 100644
View file @
42cea84a
This diff is collapsed.
Click to expand it.
src/pages/financial/XaddFinancialProcess.vue
0 → 100644
View file @
42cea84a
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
42cea84a
...
@@ -242,11 +242,21 @@ const routes = [{
...
@@ -242,11 +242,21 @@ const routes = [{
component
:
()
=>
component
:
()
=>
import
(
"pages/financial/FProcessManagement.vue"
)
import
(
"pages/financial/FProcessManagement.vue"
)
},
},
{
path
:
"/financial/XProcessManagement"
,
//资产流程管理、
component
:
()
=>
import
(
"pages/financial/XProcessManagement.vue"
)
},
{
{
path
:
"/financial/addFinancialProcess"
,
//新增修改等级
path
:
"/financial/addFinancialProcess"
,
//新增修改等级
component
:
()
=>
component
:
()
=>
import
(
"pages/financial/addFinancialProcess.vue"
)
import
(
"pages/financial/addFinancialProcess.vue"
)
},
},
{
path
:
"/financial/XaddFinancialProcess"
,
//新增修改资产流程
component
:
()
=>
import
(
"pages/financial/XaddFinancialProcess.vue"
)
},
{
{
path
:
"/financial/accountingWork"
,
//会计窗口
path
:
"/financial/accountingWork"
,
//会计窗口
component
:
()
=>
component
:
()
=>
...
...
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