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
ec2b1abc
Commit
ec2b1abc
authored
Oct 30, 2023
by
Cat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zd 社团活动记录时间限制
parent
27988b0f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
ruoyi-ui/src/views/smartSchool/massOrganization/clubActivityRecord/index.vue
+20
-0
No files found.
ruoyi-ui/src/views/smartSchool/massOrganization/clubActivityRecord/index.vue
View file @
ec2b1abc
...
...
@@ -156,6 +156,7 @@
type=
"date"
placeholder=
"选择活动开始时间"
style=
"width: 100%"
:picker-options=
"pickerOptionsStart"
>
</el-date-picker>
</el-form-item>
...
...
@@ -169,11 +170,13 @@
type=
"date"
placeholder=
"选择活动结束时间"
style=
"width: 100%"
:picker-options=
"pickerOptionsEnd"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"活动负责人:"
prop=
"fzr"
>
...
...
@@ -362,6 +365,22 @@ export default {
//查看状态
check
:
false
,
file
:
""
,
// 开始结束日期限制
pickerOptionsStart
:
{
disabledDate
:
(
time
)
=>
{
if
(
this
.
form
.
endTime
)
{
return
time
.
getTime
()
>=
new
Date
(
this
.
form
.
endTime
).
getTime
();
}
},
},
// 结束日期限制
pickerOptionsEnd
:
{
disabledDate
:
(
time
)
=>
{
if
(
this
.
form
.
beginTime
)
{
return
time
.
getTime
()
<=
new
Date
(
this
.
form
.
beginTime
).
getTime
();
}
},
},
};
},
created
()
{
...
...
@@ -376,6 +395,7 @@ export default {
},
},
},
methods
:
{
//是否删除 选中值发生变化时id处理函数
selectChangeHandler
(
value
)
{
...
...
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