Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
FLIPPED-AURORA
gin-vue-admin
提交
486265bf
G
gin-vue-admin
项目概览
FLIPPED-AURORA
/
gin-vue-admin
大约 1 年 前同步成功
通知
342
Star
18155
Fork
5506
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
G
gin-vue-admin
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
486265bf
编写于
11月 15, 2019
作者:
Mr.奇淼(
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复了子菜单列表不隐藏的bug 工作流开坑 已经部署演示环境服务 正在写定时恢复sql脚本
上级
a9d47143
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
81 addition
and
16 deletion
+81
-16
QMPlusServer/model/dbModel/worfFlow.go
QMPlusServer/model/dbModel/worfFlow.go
+44
-0
QMPlusVuePage/package-lock.json
QMPlusVuePage/package-lock.json
+34
-13
QMPlusVuePage/package.json
QMPlusVuePage/package.json
+1
-1
QMPlusVuePage/src/view/layout/aside/asideComponent/index.vue
QMPlusVuePage/src/view/layout/aside/asideComponent/index.vue
+1
-1
QMPlusVuePage/vue.config.js
QMPlusVuePage/vue.config.js
+1
-1
未找到文件。
QMPlusServer/model/dbModel/worfFlow.go
0 → 100644
浏览文件 @
486265bf
package
dbModel
import
(
"github.com/jinzhu/gorm"
"time"
)
type
Application
struct
{
gorm
.
Model
WorkFlowID
string
// 所属工作流
WorkFlowStepInfoID
string
// 当前节点ID
ApplicationName
string
// 申请人姓名
ApplicationCause
string
// 请假原因
ApplicationStartData
time
.
Time
// 请假开始日期
ApplicationEndData
time
.
Time
// 请假开始日期
}
type
ApplicationWorkFlowProcess
struct
{
gorm
.
Model
ApplicationId
uint
// 当前工作流所属申请的ID
CurrentNode
string
// 当前进度节点
HistoricalNode
string
//上一个进度节点
CurrentUser
string
// 当前进度操作人
HistoricalUser
string
// 上一个进度的操作人
State
bool
// 状态 是否是正在进行的状态
}
type
Workflow
struct
{
gorm
.
Model
WorkflowName
string
// 工作流名称
WorkflowDescription
string
//工作流描述
WorkflowStep
[]
WorkflowStepInfo
//工作流步骤
}
type
WorkflowStepInfo
struct
{
gorm
.
Model
WorkflowID
uint
IsStrat
bool
StepName
string
StepNo
float64
StepAuthorityId
string
IsEnd
bool
}
\ No newline at end of file
QMPlusVuePage/package-lock.json
浏览文件 @
486265bf
...
...
@@ -2858,7 +2858,8 @@
"version"
:
"4.6.0"
,
"resolved"
:
"https://registry.npm.taobao.org/co/download/co-4.6.0.tgz"
,
"integrity"
:
"sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"coa"
:
{
"version"
:
"2.0.2"
,
...
...
@@ -5217,7 +5218,8 @@
"ansi-regex"
:
{
"version"
:
"2.1.1"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"aproba"
:
{
"version"
:
"1.2.0"
,
...
...
@@ -5238,12 +5240,14 @@
"balanced-match"
:
{
"version"
:
"1.0.0"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"brace-expansion"
:
{
"version"
:
"1.1.11"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"balanced-match"
:
"^1.0.0"
,
"concat-map"
:
"0.0.1"
...
...
@@ -5258,17 +5262,20 @@
"code-point-at"
:
{
"version"
:
"1.1.0"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"concat-map"
:
{
"version"
:
"0.0.1"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"console-control-strings"
:
{
"version"
:
"1.1.0"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"core-util-is"
:
{
"version"
:
"1.0.2"
,
...
...
@@ -5385,7 +5392,8 @@
"inherits"
:
{
"version"
:
"2.0.3"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"ini"
:
{
"version"
:
"1.3.5"
,
...
...
@@ -5397,6 +5405,7 @@
"version"
:
"1.0.0"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"number-is-nan"
:
"^1.0.0"
}
...
...
@@ -5411,6 +5420,7 @@
"version"
:
"3.0.4"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"brace-expansion"
:
"^1.1.7"
}
...
...
@@ -5418,12 +5428,14 @@
"minimist"
:
{
"version"
:
"0.0.8"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"minipass"
:
{
"version"
:
"2.3.5"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"safe-buffer"
:
"^5.1.2"
,
"yallist"
:
"^3.0.0"
...
...
@@ -5442,6 +5454,7 @@
"version"
:
"0.5.1"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"minimist"
:
"0.0.8"
}
...
...
@@ -5522,7 +5535,8 @@
"number-is-nan"
:
{
"version"
:
"1.0.1"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"object-assign"
:
{
"version"
:
"4.1.1"
,
...
...
@@ -5534,6 +5548,7 @@
"version"
:
"1.4.0"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"wrappy"
:
"1"
}
...
...
@@ -5619,7 +5634,8 @@
"safe-buffer"
:
{
"version"
:
"5.1.2"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"safer-buffer"
:
{
"version"
:
"2.1.2"
,
...
...
@@ -5655,6 +5671,7 @@
"version"
:
"1.0.2"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"code-point-at"
:
"^1.0.0"
,
"is-fullwidth-code-point"
:
"^1.0.0"
,
...
...
@@ -5674,6 +5691,7 @@
"version"
:
"3.0.1"
,
"bundled"
:
true
,
"dev"
:
true
,
"optional"
:
true
,
"requires"
:
{
"ansi-regex"
:
"^2.0.0"
}
...
...
@@ -5717,12 +5735,14 @@
"wrappy"
:
{
"version"
:
"1.0.2"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"yallist"
:
{
"version"
:
"3.0.3"
,
"bundled"
:
true
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
}
}
},
...
...
@@ -9844,7 +9864,8 @@
"version"
:
"4.0.8"
,
"resolved"
:
"https://registry.npm.taobao.org/rx-lite/download/rx-lite-4.0.8.tgz"
,
"integrity"
:
"sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ="
,
"dev"
:
true
"dev"
:
true
,
"optional"
:
true
},
"rx-lite-aggregates"
:
{
"version"
:
"4.0.8"
,
...
...
QMPlusVuePage/package.json
浏览文件 @
486265bf
...
...
@@ -58,4 +58,4 @@
"> 1%"
,
"last 2 versions"
]
}
}
\ No newline at end of file
QMPlusVuePage/src/view/layout/aside/asideComponent/index.vue
浏览文件 @
486265bf
<
template
>
<component
:is=
"menuComponent"
:routerInfo=
"routerInfo"
>
<component
:is=
"menuComponent"
:routerInfo=
"routerInfo"
v-if=
"!routerInfo.hidden"
>
<template
v-if=
"routerInfo.children.length"
>
<AsideComponent
:key=
"item.name"
:routerInfo=
"item"
v-for=
"item in routerInfo.children"
/>
</
template
>
...
...
QMPlusVuePage/vue.config.js
浏览文件 @
486265bf
...
...
@@ -7,7 +7,7 @@ function resolve(dir) {
}
module
.
exports
=
{
// 基础配置 详情看文档
publicPath
:
'
/
'
,
publicPath
:
'
.
/
'
,
outputDir
:
'
dist
'
,
assetsDir
:
'
static
'
,
lintOnSave
:
process
.
env
.
NODE_ENV
===
'
development
'
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录