Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dd_school
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqi
dd_school
Commits
6297f277
Commit
6297f277
authored
Aug 01, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zpy 8.1
parent
b6519e1c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
775 additions
and
11 deletions
+775
-11
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/secondaryDivision/index.vue
+285
-3
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/springView/index.vue
+204
-4
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/summerViewing/index.vue
+286
-3
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/taskPublishing/index.vue
+0
-0
ruoyi-ui/src/views/smartSchool/logisticsManage/repairReport/index copy.vue
+0
-1
No files found.
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/secondaryDivision/index.vue
View file @
6297f277
This diff is collapsed.
Click to expand it.
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/springView/index.vue
View file @
6297f277
<
template
>
<div>
<h2>
春季查看
</h2>
<div
class=
"app-container"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
size=
"small"
:inline=
"true"
label-width=
"70px"
>
<el-form-item
prop=
"studentsName"
>
<el-input
clearable
v-model=
"queryForm.studentsName"
placeholder=
"学生姓名"
@
keyup
.
enter
.
native=
"handleQuery"
></el-input>
</el-form-item>
<el-form-item
prop=
"classId"
>
<el-select
v-model=
"queryForm.classId"
placeholder=
"班级"
clearable
>
<el-option
v-for=
"item in classList"
:key=
"item.id"
:label=
"item.className"
:value=
"item.id"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
prop=
"majorId"
>
<el-select
v-model=
"queryForm.majorId"
placeholder=
"已选专业"
clearable
>
<el-option
v-for=
"item in majorList"
:key=
"item.id"
:label=
"item.majorName"
:value=
"item.id"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
>
导出
</el-button>
</el-form-item>
</el-form>
<!-- 表单信息 -->
<el-table
border
v-loading=
"loading"
:row-style=
"
{ height: '35px' }" :cell-style="{ padding: '0' }"
:data="studentsList" style="font-size: 14px" stripe>
<el-table-column
label=
"班级"
prop=
"bj"
align=
"center"
width=
"150px"
/>
<el-table-column
label=
"学生姓名"
prop=
"xsxm"
align=
"center"
width=
"150px"
/>
<el-table-column
label=
"学号"
prop=
"xh"
align=
"center"
/>
<el-table-column
label=
"身份证号"
prop=
"sfzh"
width=
"300px"
align=
"center"
/>
<el-table-column
label=
"课程类型"
prop=
"kclx"
align=
"center"
/>
<el-table-column
label=
"选课时间"
prop=
"xksj"
align=
"center"
/>
<el-table-column
label=
"已选专业"
prop=
"yxzy"
align=
"center"
/>
</el-table>
<pagination
v-show=
"total > 0"
:total=
"total"
:page
.
sync=
"queryForm.pageNum"
:limit
.
sync=
"queryForm.pageSize"
@
pagination=
"getList"
/>
</div>
</
template
>
<
script
>
import
{
getksBudgetList
,
//查询科室预算填报项目明细列表
depBudget
//查看详情
}
from
'@/api/smartSchool/logisticsManage/departmentBudgetview'
export
default
{
name
:
"springView"
,
data
()
{
return
{
majorList
:
[],
classList
:
[],
// 查询表单
queryForm
:
{
studentsName
:
''
,
classId
:
''
,
majorId
:
''
,
pageNum
:
1
,
pageSize
:
10
},
// 遮罩层
loading
:
false
,
total
:
0
,
// 信息列表
studentsList
:
[
{
id
:
1
,
bj
:
'一班'
,
xsxm
:
'张三'
,
xh
:
'2018001'
,
sfzh
:
'123456789012345678'
,
kclx
:
'春季选课'
,
xksj
:
'2020-09-01'
,
yxzy
:
'会计 护理 幼师 机电 电子商务 导游'
},
{
id
:
2
,
bj
:
'一班'
,
xsxm
:
'张三'
,
xh
:
'2018001'
,
sfzh
:
'123456789012345678'
,
kclx
:
'春季选课'
,
xksj
:
'2020-09-01'
,
yxzy
:
'会计 护理 幼师 机电 电子商务 导游'
},
{
id
:
3
,
bj
:
'一班'
,
xsxm
:
'张三'
,
xh
:
'2018001'
,
sfzh
:
'123456789012345678'
,
kclx
:
'春季选课'
,
xksj
:
'2020-09-01'
,
yxzy
:
'会计 护理 幼师 机电 电子商务 导游'
}
],
// 新增/编辑表单
postForm
:
{
},
// 查看表格
lookTable
:
[],
options
:
[],
// 是否显示弹出层
open
:
false
,
// 查看弹窗
openLook
:
false
,
// 校验规则
rules
:
{
},
// 弹出层标题
title
:
''
,
// 是否禁用删除按钮--项目明细
multiple
:
false
,
// 选中数据的值数组
selectItems
:
[],
// 科室列表
deptOptions
:
[],
}
},
created
()
{
this
.
getList
();
// 获取科室信息
},
methods
:
{
// 获取列表
// getList() {
// getksBudgetList(this.queryForm).then(response => {
// this.loading = false;
// this.studentsList = response.rows;
// console.log(111, response.rows);
// this.total = response.total;
// }).catch(err => {
// this.loading = false;
// })
// },
// 搜索按钮
handleQuery
()
{
this
.
getList
();
},
// 重置按钮
resetQuery
()
{
this
.
queryForm
=
{
pageNum
:
1
,
pageSize
:
10
};
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
},
// 重置
reset
()
{
this
.
postForm
=
{
}
this
.
resetForm
(
'postForm'
);
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
openLook
=
false
;
this
.
reset
();
this
.
resetForm
(
'postForm'
);
},
// 导出
handleExport
()
{
this
.
download
(
'/departmentBudgetProjectmx/export'
,
{
...
this
.
queryParams
},
`科室预算查看_
${
Date
.
now
()}
.xlsx`
)
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
></
style
>
\ No newline at end of file
<
style
lang=
"scss"
scoped
>
::v-deep
.inline-table
.cell
{
padding
:
0
;
}
.title
{
font-size
:
20px
;
text-align
:
center
;
}
</
style
>
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/summerViewing/index.vue
View file @
6297f277
This diff is collapsed.
Click to expand it.
ruoyi-ui/src/views/smartSchool/gradeWork/courseSelection/taskPublishing/index.vue
View file @
6297f277
This diff is collapsed.
Click to expand it.
ruoyi-ui/src/views/smartSchool/logisticsManage/repairReport/index copy.vue
View file @
6297f277
...
...
@@ -320,7 +320,6 @@
<!--反馈结果对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"openfk"
width=
"1100px"
append-to-body
@
close=
"cancel"
>
<el-form
ref=
"formfk"
:model=
"formfk"
:rules=
"rules"
label-width=
"100px"
>
<el-form-item
label=
"报修单号"
prop=
"id"
>
...
...
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