Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
6764f869
authored
Mar 30, 2024
by
芋道源码
Committed by
Gitee
Mar 30, 2024
Browse files
Options
Browse Files
Download
Plain Diff
!409 fix(crontab): add inputChange for crontab
Merge pull request !409 from AhJindeg/hotfix-crontab
parents
427c2d5d
c2f98043
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
src/components/Crontab/src/Crontab.vue
+5
-1
No files found.
src/components/Crontab/src/Crontab.vue
View file @
6764f869
...
...
@@ -503,9 +503,13 @@ const submit = () => {
emit
(
'update:modelValue'
,
defaultValue
.
value
)
dialogVisible
.
value
=
false
}
const
inputChange
=
()
=>
{
emit
(
'update:modelValue'
,
defaultValue
.
value
)
}
</
script
>
<
template
>
<el-input
v-model=
"defaultValue"
class=
"input-with-select"
v-bind=
"$attrs"
>
<el-input
v-model=
"defaultValue"
class=
"input-with-select"
v-bind=
"$attrs"
@
input=
"inputChange"
>
<template
#
append
>
<el-select
v-model=
"select"
placeholder=
"生成器"
style=
"width: 115px"
>
<el-option
label=
"每分钟"
value=
"0 * * * * ?"
/>
...
...
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