Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
43d76e59
Commit
43d76e59
authored
Dec 16, 2021
by
fuzui
Browse files
fix: cron组件中周回显bug
parent
d365a52c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ruoyi-ui/src/components/Crontab/index.vue
View file @
43d76e59
...
...
@@ -273,7 +273,7 @@ export default {
insValue
=
5
;
}
else
{
this
.
$refs
[
refName
].
checkboxList
=
value
.
split
(
"
,
"
);
insValue
=
7
;
insValue
=
6
;
}
}
else
if
(
name
==
"
year
"
)
{
if
(
value
==
""
)
{
...
...
ruoyi-ui/src/components/Crontab/week.vue
View file @
43d76e59
...
...
@@ -60,7 +60,7 @@
<el-radio
v-model=
'radioValue'
:label=
"6"
>
指定
<el-select
clearable
v-model=
"checkboxList"
placeholder=
"可多选"
multiple
style=
"width:100%"
>
<el-option
v-for=
"(item,index) of weekList"
:key=
"index"
:label=
"item.value"
:value=
"item.key"
>
{{
item
.
value
}}
</el-option>
<el-option
v-for=
"(item,index) of weekList"
:key=
"index"
:label=
"item.value"
:value=
"
String(
item.key
)
"
>
{{
item
.
value
}}
</el-option>
</el-select>
</el-radio>
</el-form-item>
...
...
Write
Preview
Supports
Markdown
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