Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-admin-consultation
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.education.frontend
pica-admin-consultation
提交
a2cbf988
提交
a2cbf988
编写于
3月 21, 2019
作者:
zhentian.jia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加消息和响应式布局
上级
7d235dd2
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
53 行增加
和
6 行删除
+53
-6
add-manager.vue
src/views/education/add-manager.vue
+6
-1
item-manager.vue
src/views/education/item-manager.vue
+35
-3
item-role.vue
src/views/system/item-role.vue
+6
-1
role.vue
src/views/system/role.vue
+6
-1
未找到文件。
src/views/education/add-manager.vue
浏览文件 @
a2cbf988
<
template
>
<div
class=
"add-manager-wrap"
>
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
></bread-crumb>
<div
class=
"add-content screenSet"
>
<div
class=
"add-content screenSet"
id=
"screenSet"
>
<el-row
class=
"step-content"
>
<el-col
:span=
"14"
>
<el-steps
:active=
"active"
simple
class
>
...
...
@@ -445,6 +445,7 @@ import { doUpload, getFilePath } from "../../utils/qiniu-util";
import
{
returnData
}
from
"../mock"
;
import
{
mapGetters
}
from
"vuex"
;
import
{
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
import
*
as
commonUtil
from
"../../utils/utils"
;
let
vm
=
null
;
export
default
{
components
:
{
...
...
@@ -675,6 +676,10 @@ export default {
//this.idTypeValue = 2;
});
},
// 挂载到Dom完成时
mounted
:
function
()
{
commonUtil
.
resizeHeight
();
},
methods
:
{
//表单校验
submitForm
(
formName
)
{
...
...
src/views/education/item-manager.vue
浏览文件 @
a2cbf988
<
template
>
<div
class=
"item-manager-wrap"
>
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
></bread-crumb>
<div
class=
"component-content screenSet"
>
<div
class=
"component-content screenSet"
id=
"screenSet"
>
<div
class=
"header-title"
>
项目管理
</div>
<el-row
:gutter=
"30"
class=
"row"
type=
"flex"
style=
"margin-top: 10px;"
>
<el-form
ref=
"formInline"
:model=
"formInline"
label-width=
"75px"
style=
"width:100%;"
>
...
...
@@ -177,6 +177,7 @@ import BreadCrumb from "../../components/breadcrumb.vue";
import
{
create
}
from
"domain"
;
import
{
returnData
}
from
"../mock"
;
import
{
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
import
*
as
commonUtil
from
"../../utils/utils"
;
let
vm
=
null
;
export
default
{
components
:
{
...
...
@@ -255,6 +256,10 @@ export default {
vm
=
this
;
this
.
getProjectList
();
},
// 挂载到Dom完成时
mounted
:
function
()
{
commonUtil
.
resizeHeight
();
},
methods
:
{
toPage
()
{
this
.
$router
.
push
(
"add-manager"
);
...
...
@@ -312,16 +317,44 @@ export default {
this
.
$router
.
push
(
"add-manager?projectId="
+
projectId
);
}
else
if
(
type
===
7
)
{
//提醒审核
let
req
=
{
portalProjectId
:
projectId
,
warnType
:
1
};
vm
.
GET
(
"portalCheck/remindPortalCheck"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
console
.
log
(
res
);
vm
.
$message
.
info
(
res
.
message
);
}
});
}
else
{
if
(
type
===
8
)
{
//取消审批值对应5
type
=
5
;
}
if
(
type
==
4
||
type
==
6
)
{
//发送消息
let
warnType
=
""
;
if
(
type
==
4
)
{
warnType
=
3
;
}
else
if
(
type
==
6
)
{
warnType
=
4
;
}
let
req
=
{
portalProjectId
:
projectId
,
warnType
:
warnType
};
vm
.
GET
(
"portalCheck/remindPortalCheck"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
console
.
log
(
res
);
vm
.
$message
.
info
(
res
.
message
);
}
});
}
let
req
=
{
projectId
:
projectId
,
changeStatus
:
type
};
let
that
=
this
;
vm
.
POST
(
"portalInfo/changeStatus"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
console
.
log
(
res
);
...
...
@@ -334,7 +367,6 @@ export default {
//删除项目
delItem
(
row
)
{
let
req
=
{};
let
that
=
this
;
console
.
log
(
row
);
vm
.
DELETE
(
"portalInfo/delete/"
+
row
.
id
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
...
...
src/views/system/item-role.vue
浏览文件 @
a2cbf988
<
template
>
<div
class=
"item-role-wrap"
>
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
:curmbThird=
"curmbThird"
></bread-crumb>
<div
class=
"component-content screenSet"
>
<div
class=
"component-content screenSet"
id=
"screenSet"
>
<div
class=
"header-title"
>
查询条件
</div>
<el-row
:gutter=
"30"
class=
"row"
type=
"flex"
style=
"margin-top: 10px;"
>
<el-form
:model=
"formInline"
ref=
"formInline"
label-width=
"75px"
class=
"form-inline"
>
...
...
@@ -136,6 +136,7 @@
import
BreadCrumb
from
"../../components/breadcrumb.vue"
;
import
{
create
}
from
"domain"
;
import
{
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
import
*
as
commonUtil
from
'../../utils/utils'
let
vm
=
null
;
export
default
{
components
:
{
...
...
@@ -203,6 +204,10 @@ export default {
vm
=
this
;
this
.
queryRoleList
();
},
// 挂载到Dom完成时
mounted
:
function
()
{
commonUtil
.
resizeHeight
();
},
methods
:
{
//查询用户列表
queryRoleList
()
{
...
...
src/views/system/role.vue
浏览文件 @
a2cbf988
<
template
>
<div
class=
"role-wrap"
>
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
></bread-crumb>
<div
class=
"component-content screenSet"
>
<div
class=
"component-content screenSet"
id=
"screenSet"
>
<div
class=
"header-title"
>
查询条件
</div>
<el-row
:gutter=
"30"
class=
"row"
type=
"flex"
style=
"margin-top: 10px;"
>
<el-form
ref=
"formInline"
:model=
"formInline"
label-width=
"75px"
style=
"width:100%;"
>
...
...
@@ -84,6 +84,7 @@
import
BreadCrumb
from
"../../components/breadcrumb.vue"
;
import
{
create
}
from
"domain"
;
import
{
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
import
*
as
commonUtil
from
"../../utils/utils"
;
let
vm
=
null
;
export
default
{
components
:
{
...
...
@@ -131,6 +132,10 @@ export default {
vm
=
this
;
this
.
search
();
},
// 挂载到Dom完成时
mounted
:
function
()
{
commonUtil
.
resizeHeight
();
},
methods
:
{
search
()
{
let
req
=
{};
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录