某天的随机时间

This commit is contained in:
OBKoro1 2020-01-01 18:06:58 +08:00
parent 54b79a2ed3
commit b9c7cc14c2
3 changed files with 24 additions and 6 deletions

View File

@ -4,3 +4,5 @@
<!-- TODO: 前面先选中的日期会覆盖后面的日期 --> <!-- TODO: 前面先选中的日期会覆盖后面的日期 -->
<!-- TODO: html的链接 -->

View File

@ -2,7 +2,7 @@
* Author : OBKoro1 * Author : OBKoro1
* Date : 2019-12-30 16:59:30 * Date : 2019-12-30 16:59:30
* LastEditors : OBKoro1 * LastEditors : OBKoro1
* LastEditTime : 2020-01-01 17:32:41 * LastEditTime : 2020-01-01 18:06:25
* FilePath : /autoCommit/src/models/commitHandle.ts * FilePath : /autoCommit/src/models/commitHandle.ts
* Description : commit * Description : commit
* https://github.com/OBKoro1 * https://github.com/OBKoro1
@ -140,7 +140,7 @@ class CommitHandle {
} }
commitEnd(totalNum: number) { commitEnd(totalNum: number) {
this.userCancel = false; // 重新打开终止开关 this.userCancel = false; // 重新打开终止开关
this.autoCommitView.postMessage('commit 完成', 'commit 完成') this.autoCommitView.postMessage('commit 完成', 'commit 完成');
outputLog('自动commit完成', `总commit次数${totalNum}`); outputLog('自动commit完成', `总commit次数${totalNum}`);
} }
cancelCommit() { cancelCommit() {
@ -152,9 +152,24 @@ class CommitHandle {
public closeCommit() { public closeCommit() {
this.userCancel = true; this.userCancel = true;
} }
// 格式化日期 // 当天的随机时间
// formatTime(time: string) {
// const hour = `${RandomNumber(0, 1)}${RandomNumber(0, 9)}`;
// const minute = `${RandomNumber(0, 5)}${RandomNumber(0, 9)}`;
// return `${time} ${hour}:${minute}`;
// }
// TODO: 某天的随机时间 代码块
// 获取当天的随机时间
formatTime(time: string) { formatTime(time: string) {
return `${time} 08:00`; const hour1 = RandomNumber(0, 2);
let hour2 = RandomNumber(0, 9);
if (hour1 === 2) {
// 小时第一个数字为2 则小时第二个数字最多为4
hour2 = RandomNumber(0, 3);
}
const minute = `${RandomNumber(0, 5)}${RandomNumber(0, 9)}`;
const hour = `${hour1}${hour2}`;
return `${time} ${hour}:${minute}`;
} }
// 获取两个日期之间的间隔: [ '2019-02-02', '2019-02-03' ... ] // 获取两个日期之间的间隔: [ '2019-02-02', '2019-02-03' ... ]
getAllDay(begin: string, end: string) { getAllDay(begin: string, end: string) {

View File

@ -103,6 +103,7 @@
:autosize="{ minRows: 1, maxRows: 4}" :autosize="{ minRows: 1, maxRows: 4}"
placeholder="无法输入 仅用于展示" v-model="showText.paramsStr" :disabled="showText.paramsStr === ''"> placeholder="无法输入 仅用于展示" v-model="showText.paramsStr" :disabled="showText.paramsStr === ''">
</el-form-item> </el-form-item>
<!-- TODO: 链接 -->
<el-form-item label="请先阅读文档 :"> <el-form-item label="请先阅读文档 :">
<el-link href="https://element.eleme.io" type="primary" target="_blank">Readme</el-link> <el-link href="https://element.eleme.io" type="primary" target="_blank">Readme</el-link>
<el-link href="https://element.eleme.io" type="primary" target="_blank">更新日志</el-link> <el-link href="https://element.eleme.io" type="primary" target="_blank">更新日志</el-link>