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
fa8c7cb3
Commit
fa8c7cb3
authored
Nov 09, 2023
by
zhaopanyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zpy 11.9 修改
parent
67725b50
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
48 additions
and
22 deletions
+48
-22
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/schoolAwards/awardEntry/index.vue
+7
-2
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/schoolAwards/awardManagement/index.vue
+7
-2
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/schoolAwards/awardReview/index.vue
+6
-1
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/studentViolation/ViolationDiscipline/index.vue
+10
-5
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/studentViolation/disciplinaryManagemen/index.vue
+8
-6
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/studentViolation/violationDisciplineentry/index.vue
+10
-6
No files found.
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/schoolAwards/awardEntry/index.vue
View file @
fa8c7cb3
...
...
@@ -60,11 +60,16 @@
</el-carousel>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"auditState"
label=
"审核状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
audit_state1
,
row
.
auditState
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"remark"
label=
"备注"
/>
<el-table-column
align=
"center"
fixed=
"right"
label=
"操作"
width=
"150"
>
<
template
slot-scope=
"scope"
>
<div>
<div
v-if=
"scope.row.auditState === '0'"
>
<div
v-if=
"scope.row.auditState === '0'
|| scope.row.auditState === '3'
"
>
<el-button
@
click=
"handleExamine(scope.row)"
type=
"text"
size=
"small"
>
提交
</el-button>
<el-button
@
click=
"handleEdit(scope.row)"
type=
"text"
size=
"small"
>
编辑
</el-button>
<el-button
@
click=
"handleDelete(scope.row)"
type=
"text"
size=
"small"
>
删除
</el-button>
...
...
@@ -210,7 +215,7 @@ import picAvatar from '@/views/smartSchool/schoolManage/introduce/schoolInfo/pro
export
default
{
name
:
'index'
,
components
:
{
Treeselect
,
picAvatar
},
dicts
:
[
'awards_type'
,
'awards_level'
],
dicts
:
[
'awards_type'
,
'awards_level'
,
'audit_state1'
],
data
()
{
return
{
uploadFileUrl
:
process
.
env
.
VUE_APP_BASE_API
+
"/common/upload"
,
// 上传的图片服务器地址
...
...
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/schoolAwards/awardManagement/index.vue
View file @
fa8c7cb3
...
...
@@ -60,6 +60,11 @@
</el-carousel>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"auditState"
label=
"审核状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
audit_state1
,
row
.
auditState
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"remark"
label=
"备注"
/>
<el-table-column
align=
"center"
fixed=
"right"
label=
"操作"
width=
"150"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -213,7 +218,7 @@ import picAvatar from '@/views/smartSchool/schoolManage/introduce/schoolInfo/pro
export
default
{
name
:
'index'
,
components
:
{
Treeselect
,
picAvatar
},
dicts
:
[
'awards_type'
,
'awards_level'
],
dicts
:
[
'awards_type'
,
'awards_level'
,
'audit_state1'
],
data
()
{
return
{
uploadFileUrl
:
process
.
env
.
VUE_APP_BASE_API
+
"/common/upload"
,
// 上传的图片服务器地址
...
...
@@ -376,7 +381,7 @@ export default {
if
(
res
.
code
==
200
)
{
this
.
$message
({
type
:
'info'
,
message
:
'已
取消
审核'
message
:
'已审核'
});
}
});
...
...
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/schoolAwards/awardReview/index.vue
View file @
fa8c7cb3
...
...
@@ -58,6 +58,11 @@
</el-carousel>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"auditState"
label=
"审核状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
audit_state1
,
row
.
auditState
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"remark"
label=
"备注"
/>
<el-table-column
align=
"center"
fixed=
"right"
label=
"操作"
width=
"150"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -195,7 +200,7 @@ import { InsertDropdownListsHeaders } from '@alicloud/dingtalk/dist/doc_1_0/clie
export
default
{
name
:
'index'
,
components
:
{
Treeselect
,
picAvatar
},
dicts
:
[
'awards_type'
,
'awards_level'
],
dicts
:
[
'awards_type'
,
'awards_level'
,
'audit_state1'
],
data
()
{
return
{
uploadFileUrl
:
process
.
env
.
VUE_APP_BASE_API
+
"/common/upload"
,
// 上传的图片服务器地址
...
...
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/studentViolation/ViolationDiscipline/index.vue
View file @
fa8c7cb3
...
...
@@ -14,8 +14,8 @@
<el-input
v-model=
"queryForm.gradeYear"
placeholder=
"请输入"
clearable
></el-input>
</el-form-item>
<el-form-item
label=
"年级"
prop=
"gradeId"
>
<el-select
v-model=
"
queryF
orm.gradeId"
placeholder=
"请选择"
clearable
:style=
"
{ width: '100%' }"
@change="
handleChange
">
<el-select
v-model=
"
f
orm.gradeId"
placeholder=
"请选择"
clearable
:style=
"
{ width: '100%' }"
@change="
getClasslist(form.gradeId)
">
<el-option
v-for=
"(item, index) in gradeList"
:key=
"index"
:label=
"item.gradeName"
:value=
"item.gradeId"
></el-option>
</el-select>
...
...
@@ -81,7 +81,7 @@
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
>
新增
</el-button>
</el-row>
</el-form>
<el-table
:data=
"tableData"
:default-sort=
"
{ prop: '
time', order: 'a
scending' }" border style="width: 100%">
<el-table
:data=
"tableData"
:default-sort=
"
{ prop: '
punishTime', order: 'de
scending' }" border style="width: 100%">
<el-table-column
align=
"center"
type=
"index"
label=
"序号"
width=
"55"
/>
<el-table-column
align=
"center"
prop=
"schoolYear"
sortable
label=
"学年"
/>
<el-table-column
align=
"center"
prop=
"semester"
sortable
label=
"学期"
>
...
...
@@ -122,8 +122,13 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"punishTime"
sortable
label=
"处分时间"
width=
"100"
/>
<el-table-column
align=
"center"
prop=
"auditState"
label=
"审核状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
audit_state1
,
row
.
auditState
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"remark"
sortable
label=
"备注"
/>
<el-table-column
align=
"center"
fixed=
"right"
label=
"操作"
width=
"
20
0"
>
<el-table-column
align=
"center"
fixed=
"right"
label=
"操作"
width=
"
18
0"
>
<
template
slot-scope=
"scope"
>
<el-button
@
click=
"handleLook(scope.row)"
type=
"text"
size=
"small"
>
查看
</el-button>
</
template
>
...
...
@@ -294,7 +299,7 @@ import {
import
{
checkIdcard
}
from
'@/utils/utilLibrary/validate'
export
default
{
name
:
'index'
,
dicts
:
[
'violate_type'
,
'violate_num'
,
'punish_result'
,
'sys_user_sex'
,
'grade_type'
,
'semester'
],
dicts
:
[
'violate_type'
,
'violate_num'
,
'punish_result'
,
'sys_user_sex'
,
'grade_type'
,
'semester'
,
'audit_state1'
],
data
()
{
return
{
queryForm
:
{
...
...
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/studentViolation/disciplinaryManagemen/index.vue
View file @
fa8c7cb3
...
...
@@ -81,7 +81,7 @@
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
>
新增
</el-button>
</el-row>
</el-form>
<el-table
:data=
"tableData"
:default-sort=
"
{ prop: '
time', order: 'a
scending' }" border style="width: 100%">
<el-table
:data=
"tableData"
:default-sort=
"
{ prop: '
punishTime', order: 'de
scending' }" border style="width: 100%">
<el-table-column
align=
"center"
type=
"index"
label=
"序号"
width=
"55"
/>
<el-table-column
align=
"center"
prop=
"schoolYear"
sortable
label=
"学年"
/>
<el-table-column
align=
"center"
prop=
"semester"
sortable
label=
"学期"
>
...
...
@@ -122,6 +122,11 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"punishTime"
sortable
label=
"处分时间"
width=
"100"
/>
<el-table-column
align=
"center"
prop=
"auditState"
label=
"审核状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
audit_state1
,
row
.
auditState
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"remark"
sortable
label=
"备注"
/>
<el-table-column
align=
"center"
fixed=
"right"
label=
"操作"
width=
"200"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -312,7 +317,7 @@ import {
import
{
checkIdcard
}
from
'@/utils/utilLibrary/validate'
export
default
{
name
:
'index'
,
dicts
:
[
'violate_type'
,
'violate_num'
,
'punish_result'
,
'sys_user_sex'
,
'grade_type'
,
'semester'
],
dicts
:
[
'violate_type'
,
'violate_num'
,
'punish_result'
,
'sys_user_sex'
,
'grade_type'
,
'semester'
,
'audit_state1'
],
data
()
{
return
{
queryForm
:
{
...
...
@@ -360,7 +365,6 @@ export default {
punishResult
:
""
,
punishTime
:
""
,
remark
:
""
,
},
//弹窗
dialogTableVisible
:
false
,
...
...
@@ -409,8 +413,6 @@ export default {
punishTime
:
[
{
required
:
true
,
message
:
"处分时间不能为空"
,
trigger
:
"change"
}
],
},
}
},
...
...
@@ -540,7 +542,7 @@ export default {
if
(
res
.
code
==
200
)
{
this
.
$message
({
type
:
'info'
,
message
:
'已
取消
审核'
message
:
'已审核'
});
}
});
...
...
ruoyi-ui/src/views/smartSchool/awardsDisciplinary/studentViolation/violationDisciplineentry/index.vue
View file @
fa8c7cb3
...
...
@@ -81,7 +81,7 @@
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
>
新增
</el-button>
</el-row>
</el-form>
<el-table
:data=
"tableData"
:default-sort=
"
{ prop: '
time', order: 'a
scending' }" border style="width: 100%">
<el-table
:data=
"tableData"
:default-sort=
"
{ prop: '
punishTime', order: 'de
scending' }" border style="width: 100%">
<el-table-column
align=
"center"
type=
"index"
label=
"序号"
width=
"55"
/>
<el-table-column
align=
"center"
prop=
"schoolYear"
sortable
label=
"学年"
/>
<el-table-column
align=
"center"
prop=
"semester"
sortable
label=
"学期"
>
...
...
@@ -122,10 +122,15 @@
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"punishTime"
sortable
label=
"处分时间"
width=
"100"
/>
<el-table-column
align=
"center"
prop=
"auditState"
label=
"审核状态"
>
<
template
slot-scope=
"{ row }"
>
<div>
{{
selectDictLabel
(
dict
.
type
.
audit_state1
,
row
.
auditState
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"remark"
sortable
label=
"备注"
/>
<el-table-column
align=
"center"
fixed=
"right"
label=
"操作"
width=
"200"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.auditState === '0'"
>
<div
v-if=
"scope.row.auditState === '0'
|| scope.row.auditState === '3'
"
>
<el-button
@
click=
"handleExamine(scope.row)"
type=
"text"
size=
"small"
>
提交
</el-button>
<el-button
@
click=
"handleEdit(scope.row)"
type=
"text"
size=
"small"
>
编辑
</el-button>
<el-button
@
click=
"handleLook(scope.row)"
type=
"text"
size=
"small"
>
查看
</el-button>
...
...
@@ -140,7 +145,7 @@
<pagination
v-show=
"total > 0"
:total=
"total"
:page
.
sync=
"queryForm.pageNum"
:limit
.
sync=
"queryForm.pageSize"
@
pagination=
"getList"
/>
<!-- 新增/编辑弹框 -->
<!-- 新增/编辑
/查看
弹框 -->
<el-dialog
title=
"详细信息"
:visible
.
sync=
"dialogTableVisible"
width=
"1100px"
>
<el-form
:model=
"form"
ref=
"form"
size=
"small"
label-width=
"120px"
:disabled=
"isEdit"
:rules=
"rules"
>
<el-row>
...
...
@@ -303,7 +308,7 @@ import {
import
{
checkIdcard
}
from
'@/utils/utilLibrary/validate'
export
default
{
name
:
'index'
,
dicts
:
[
'violate_type'
,
'violate_num'
,
'punish_result'
,
'sys_user_sex'
,
'grade_type'
,
'semester'
],
dicts
:
[
'violate_type'
,
'violate_num'
,
'punish_result'
,
'sys_user_sex'
,
'grade_type'
,
'semester'
,
'audit_state1'
],
data
()
{
return
{
queryForm
:
{
...
...
@@ -321,7 +326,6 @@ export default {
violateNum
:
""
,
punishResult
:
""
,
punishTime
:
""
,
},
isEdit
:
false
,
gradeLists
:
[],
...
...
@@ -441,7 +445,7 @@ export default {
console
.
log
(
"this.classList"
,
this
.
classList
);
});
}).
catch
(
error
=>
{
this
.
$modal
.
closeLoading
();
})
},
...
...
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