Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
taobao-mini-template
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinhaitao
taobao-mini-template
Commits
dd9ec4a9
Commit
dd9ec4a9
authored
Jun 02, 2021
by
王波
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'b-template-component-taskConfig' into 'b-template-component'
模板任务标题 See merge request
!27
parents
3c729c45
bba4334f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
add.js
client/pages/activity/add/add.js
+1
-1
validate.js
client/utils/validate.js
+1
-1
No files found.
client/pages/activity/add/add.js
View file @
dd9ec4a9
...
...
@@ -24,7 +24,7 @@ const tasks = {
value:
${
configList
[
i
].
value
||
'""'
}
,
taskRateType:
${
configList
[
i
].
taskRateType
?
`TASK_RATE_TYPE["
${
configList
[
i
].
taskRateType
}
"]`
:
'""'
}
,
times:
${
configList
[
i
].
times
||
'""'
}
,
title:"
${
configList
[
i
].
name
||
''
}
",
title:"
${
configList
[
i
].
taskConfigMode
===
'fixed'
?
configList
[
i
].
name
:
''
}
",
link:"",
itemIds:""
},`
:
''
%><%
}
%>
...
...
client/utils/validate.js
View file @
dd9ec4a9
...
...
@@ -28,7 +28,7 @@ export const isNumber = val => {
* @returns { boolean }
*/
export
const
validateRangeNumber
=
(
number
,
[
min
,
max
]
=
[],
fixed
=
0
)
=>
{
let
pattern
=
new
RegExp
(
`^[0-9]+(\\.[0-9]{1,
${
fixed
}
})?$`
)
;
let
pattern
=
/`^
[
0-9
]
+
(\\
.
[
0-9
]
{1,${fixed}}
)?
$`/
;
// 判断空字符
if
(
typeof
number
===
'string'
&&
!
number
.
trim
())
return
false
...
...
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