Commit 42cea84a authored by liudong1993's avatar liudong1993

菜单调整 + 资产流程迁移

parent ae099598
......@@ -31,6 +31,8 @@
v-model="objOption.Status" />
<div class="text-grey-6 text-caption">注意:关闭后,菜单将无法正常使用.</div>
</div>
<q-select class="col-6 q-pr-lg" v-model="objOption.TeamType" :options="TeamTypeOpts" emit-value map-options
label="项目类型" />
</div>
</q-card-section>
<q-separator />
......@@ -64,6 +66,15 @@
MenuLevelOpts: [],
//菜单类型
MenuTypeOpts: [],
TeamTypeOpts: [
{
label: '教育菜单',
value: 1
},
{
label: '资产菜单',
value: 2
}],
persistent: true,
objOption: {
MenuId: 0, //菜单编号
......@@ -73,6 +84,7 @@
MenuIcon: "", //菜单图标
MenuLevel: -1, //菜单等级
MenuType: -1, //菜单类型
TeamType: 1, //项目类型
SortNum: 0, //排序
Status: 0, //状态(0-正常,1-禁用)
IsUserCenter: 0, //是否个人中心页面
......@@ -133,6 +145,7 @@
this.objOption.MenuIcon = res.Data.MenuIcon;
this.objOption.MenuLevel = res.Data.MenuLevel;
this.objOption.MenuType = res.Data.MenuType;
this.objOption.TeamType = res.Data.TeamType;
this.objOption.SortNum = res.Data.SortNum;
this.objOption.Status = res.Data.Status;
this.objOption.IsUserCenter=res.Data.IsUserCenter;
......@@ -147,6 +160,7 @@
this.objOption.MenuIcon = "";
this.objOption.MenuLevel = -1;
this.objOption.MenuType = -1;
this.objOption.TeamType = 1;
this.objOption.SortNum = 0;
this.objOption.Status = 0;
this.objOption.IsUserCenter=0;
......
This diff is collapsed.
This diff is collapsed.
......@@ -242,11 +242,21 @@ const routes = [{
component: () =>
import("pages/financial/FProcessManagement.vue")
},
{
path: "/financial/XProcessManagement", //资产流程管理、
component: () =>
import("pages/financial/XProcessManagement.vue")
},
{
path: "/financial/addFinancialProcess", //新增修改等级
component: () =>
import("pages/financial/addFinancialProcess.vue")
},
{
path: "/financial/XaddFinancialProcess", //新增修改资产流程
component: () =>
import("pages/financial/XaddFinancialProcess.vue")
},
{
path: "/financial/accountingWork", //会计窗口
component: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment