Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
L
learn-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
learn-online-pc
Commits
683b92b5
提交
683b92b5
authored
3月 18, 2021
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
办事大厅增加判断是否显示新增按钮
上级
bfa18925
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
14 行增加
和
11 行删除
+14
-11
list.js
src/modules/offices/mixins/list.js
+1
-1
list.vue
src/modules/offices/src/activity/list.vue
+1
-1
list.vue
src/modules/offices/src/certSchool/list.vue
+1
-1
list.vue
src/modules/offices/src/certStudy/list.vue
+1
-1
index.vue
src/modules/offices/src/index.vue
+4
-1
list.vue
src/modules/offices/src/reportE/list.vue
+1
-1
list.vue
src/modules/offices/src/reportPaper/list.vue
+1
-1
list.vue
src/modules/offices/src/retake/list.vue
+1
-1
list.vue
src/modules/offices/src/share/list.vue
+1
-1
list.vue
src/modules/offices/src/studyContinue/list.vue
+1
-1
list.vue
src/modules/offices/src/studyPause/list.vue
+1
-1
没有找到文件。
src/modules/offices/mixins/list.js
浏览文件 @
683b92b5
...
@@ -2,7 +2,7 @@ import TableList from '@/components/comTable/tableList'
...
@@ -2,7 +2,7 @@ import TableList from '@/components/comTable/tableList'
import
*
as
api
from
'../api'
import
*
as
api
from
'../api'
export
default
{
export
default
{
props
:
{
affairId
:
{
type
:
String
,
required
:
true
}
},
props
:
{
affairId
:
{
type
:
String
,
required
:
true
}
,
hasAdd
:
{
type
:
Boolean
,
default
:
true
}
},
components
:
{
TableList
},
components
:
{
TableList
},
data
()
{
data
()
{
return
{
return
{
...
...
src/modules/offices/src/activity/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请新的活动
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请新的活动
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/certSchool/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请索菲亚在读证明
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请索菲亚在读证明
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/certStudy/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请紫荆在读证明
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请紫荆在读证明
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/index.vue
浏览文件 @
683b92b5
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
</div>
</div>
<Tap
:tapParam=
"tapParam"
@
tapParam=
"tapIndexs"
></Tap>
<Tap
:tapParam=
"tapParam"
@
tapParam=
"tapIndexs"
></Tap>
<div
class=
"con-box"
v-if=
"affairId"
>
<div
class=
"con-box"
v-if=
"affairId"
>
<component
:is=
"currentComponent"
:affairId=
"affairId"
></component>
<component
:is=
"currentComponent"
:affairId=
"affairId"
:hasAdd=
"hasAdd"
></component>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -64,6 +64,9 @@ export default {
...
@@ -64,6 +64,9 @@ export default {
affairId
()
{
affairId
()
{
return
this
.
active
?
this
.
active
.
id
:
''
return
this
.
active
?
this
.
active
.
id
:
''
},
},
hasAdd
()
{
return
this
.
active
?
this
.
active
.
close
!==
'1'
:
false
},
currentComponent
()
{
currentComponent
()
{
const
components
=
{
const
components
=
{
symposium
:
'ActivityList'
,
symposium
:
'ActivityList'
,
...
...
src/modules/offices/src/reportE/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请电子成绩单
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请电子成绩单
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/reportPaper/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请纸质成绩单
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请纸质成绩单
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/retake/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请重修
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请重修
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/share/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请新乐分享
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请新乐分享
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/studyContinue/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请复学
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请复学
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
src/modules/offices/src/studyPause/list.vue
浏览文件 @
683b92b5
<
template
>
<
template
>
<div>
<div>
<el-button
type=
"primary"
@
click=
"handleAdd"
>
申请休学
</el-button>
<el-button
type=
"primary"
@
click=
"handleAdd"
v-if=
"hasAdd"
>
申请休学
</el-button>
<div
style=
"height: 20px"
></div>
<div
style=
"height: 20px"
></div>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
<table-list
:remote=
"remote"
:columns=
"columns"
ref=
"tableList"
></table-list>
</div>
</div>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论