Merge branch 'master' of https://github.com/metersphere/metersphere
This commit is contained in:
commit
e85aa875d1
|
@ -1 +1 @@
|
||||||
Subproject commit e51e5704f9d7fbfb030a8a7d67d0094a9f36c23d
|
Subproject commit 141ee64787b4a28ef108c5fa4dde90446de01887
|
|
@ -12,11 +12,11 @@
|
||||||
<el-input :disabled="isReadOnly" v-model="form.cronValue" class="inp"
|
<el-input :disabled="isReadOnly" v-model="form.cronValue" class="inp"
|
||||||
:placeholder="$t('schedule.please_input_cron_expression')"/>
|
:placeholder="$t('schedule.please_input_cron_expression')"/>
|
||||||
<!-- <el-button type="primary" @click="showCronDialog">{{$t('schedule.generate_expression')}}</el-button>-->
|
<!-- <el-button type="primary" @click="showCronDialog">{{$t('schedule.generate_expression')}}</el-button>-->
|
||||||
<el-button :disabled="isReadOnly" type="primary" @click="saveCron">{{$t('commons.save')}}</el-button>
|
<el-button :disabled="isReadOnly" type="primary" @click="saveCron">{{ $t('commons.save') }}</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-link :disabled="isReadOnly" type="primary" @click="showCronDialog">
|
<el-link :disabled="isReadOnly" type="primary" @click="showCronDialog">
|
||||||
{{$t('schedule.generate_expression')}}
|
{{ $t('schedule.generate_expression') }}
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<crontab-result :ex="form.cronValue" ref="crontabResult"/>
|
<crontab-result :ex="form.cronValue" ref="crontabResult"/>
|
||||||
|
@ -71,7 +71,9 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
<el-button type="primary" @click="saveNotice">{{$t('commons.save')}}</el-button>
|
<div style="padding-top: 20px;">
|
||||||
|
<el-button type="primary" @click="saveNotice">{{ $t('commons.save') }}</el-button>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
|
@ -82,177 +84,177 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
import Crontab from "../cron/Crontab";
|
import Crontab from "../cron/Crontab";
|
||||||
import CrontabResult from "../cron/CrontabResult";
|
import CrontabResult from "../cron/CrontabResult";
|
||||||
import {cronValidate} from "@/common/js/cron";
|
import {cronValidate} from "@/common/js/cron";
|
||||||
import {listenGoBack, removeGoBackListener} from "@/common/js/utils";
|
import {listenGoBack, removeGoBackListener} from "@/common/js/utils";
|
||||||
|
|
||||||
function defaultCustomValidate() {
|
function defaultCustomValidate() {
|
||||||
return {pass: true};
|
return {pass: true};
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "MsScheduleEdit",
|
name: "MsScheduleEdit",
|
||||||
components: {CrontabResult, Crontab},
|
components: {CrontabResult, Crontab},
|
||||||
props: {
|
props: {
|
||||||
testId: String,
|
testId: String,
|
||||||
save: Function,
|
save: Function,
|
||||||
schedule: {},
|
schedule: {},
|
||||||
customValidate: {
|
customValidate: {
|
||||||
type: Function,
|
type: Function,
|
||||||
default: defaultCustomValidate
|
default: defaultCustomValidate
|
||||||
},
|
|
||||||
isReadOnly: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
isReadOnly: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
'schedule.value'() {
|
'schedule.value'() {
|
||||||
this.form.cronValue = this.schedule.value;
|
this.form.cronValue = this.schedule.value;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
const validateCron = (rule, cronValue, callback) => {
|
||||||
|
let customValidate = this.customValidate(this.getIntervalTime());
|
||||||
|
if (!cronValue) {
|
||||||
|
callback(new Error(this.$t('commons.input_content')));
|
||||||
|
} else if (!cronValidate(cronValue)) {
|
||||||
|
callback(new Error(this.$t('schedule.cron_expression_format_error')));
|
||||||
}
|
}
|
||||||
},
|
// else if(!this.intervalShortValidate()) {
|
||||||
data() {
|
// callback(new Error(this.$t('schedule.cron_expression_interval_short_error')));
|
||||||
const validateCron = (rule, cronValue, callback) => {
|
// }
|
||||||
let customValidate = this.customValidate(this.getIntervalTime());
|
else if (!customValidate.pass) {
|
||||||
if (!cronValue) {
|
callback(new Error(customValidate.info));
|
||||||
callback(new Error(this.$t('commons.input_content')));
|
} else {
|
||||||
} else if (!cronValidate(cronValue)) {
|
callback();
|
||||||
callback(new Error(this.$t('schedule.cron_expression_format_error')));
|
}
|
||||||
}
|
};
|
||||||
// else if(!this.intervalShortValidate()) {
|
return {
|
||||||
// callback(new Error(this.$t('schedule.cron_expression_interval_short_error')));
|
operation: true,
|
||||||
// }
|
dialogVisible: false,
|
||||||
else if (!customValidate.pass) {
|
showCron: false,
|
||||||
callback(new Error(customValidate.info));
|
form: {
|
||||||
} else {
|
cronValue: ""
|
||||||
callback();
|
},
|
||||||
}
|
tableData: [
|
||||||
};
|
{
|
||||||
return {
|
event: "执行成功",
|
||||||
operation: true,
|
names: [],
|
||||||
dialogVisible: false,
|
email: "邮箱",
|
||||||
showCron: false,
|
enable: false
|
||||||
form: {
|
|
||||||
cronValue: ""
|
|
||||||
},
|
},
|
||||||
tableData: [
|
{
|
||||||
{
|
event: "执行失败",
|
||||||
event: "执行成功",
|
names: [],
|
||||||
names: [],
|
email: "邮箱",
|
||||||
email: "邮箱",
|
enable: false
|
||||||
enable: false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
event: "执行失败",
|
|
||||||
names: [],
|
|
||||||
email: "邮箱",
|
|
||||||
enable: false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
options: [{}],
|
|
||||||
enable: true,
|
|
||||||
email: "",
|
|
||||||
activeName: 'first',
|
|
||||||
rules: {
|
|
||||||
cronValue: [{required: true, validator: validateCron, trigger: 'blur'}],
|
|
||||||
}
|
}
|
||||||
}
|
],
|
||||||
},
|
options: [{}],
|
||||||
methods: {
|
enable: true,
|
||||||
userList() {
|
email: "",
|
||||||
this.result = this.$get('user/list', response => {
|
activeName: 'first',
|
||||||
this.options = response.data
|
rules: {
|
||||||
})
|
cronValue: [{required: true, validator: validateCron, trigger: 'blur'}],
|
||||||
},
|
|
||||||
handleClick() {
|
|
||||||
if (this.activeName == "second") {
|
|
||||||
this.result = this.$get('notice/query/' + this.testId, response => {
|
|
||||||
if (response.data.length > 0) {
|
|
||||||
this.tableData = response.data
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
buildParam() {
|
|
||||||
let param = {};
|
|
||||||
param.notices = this.tableData
|
|
||||||
param.testId = this.testId
|
|
||||||
return param;
|
|
||||||
},
|
|
||||||
open() {
|
|
||||||
this.dialogVisible = true;
|
|
||||||
this.form.cronValue = this.schedule.value;
|
|
||||||
listenGoBack(this.close);
|
|
||||||
this.handleClick()
|
|
||||||
this.activeName = 'first'
|
|
||||||
},
|
|
||||||
crontabFill(value, resultList) {
|
|
||||||
//确定后回传的值
|
|
||||||
this.form.cronValue = value;
|
|
||||||
this.$refs.crontabResult.resultList = resultList;
|
|
||||||
this.$refs['from'].validate();
|
|
||||||
},
|
|
||||||
showCronDialog() {
|
|
||||||
this.showCron = true;
|
|
||||||
},
|
|
||||||
saveCron() {
|
|
||||||
this.$refs['from'].validate((valid) => {
|
|
||||||
if (valid) {
|
|
||||||
this.intervalShortValidate();
|
|
||||||
this.save(this.form.cronValue);
|
|
||||||
this.dialogVisible = false;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
saveNotice(){
|
|
||||||
let param = this.buildParam();
|
|
||||||
this.result = this.$post("notice/save", param, () => {
|
|
||||||
this.$success(this.$t('commons.save_success'));
|
|
||||||
})
|
|
||||||
},
|
|
||||||
close() {
|
|
||||||
this.dialogVisible = false;
|
|
||||||
this.form.cronValue = '';
|
|
||||||
this.$refs['from'].resetFields();
|
|
||||||
if (!this.schedule.value) {
|
|
||||||
this.$refs.crontabResult.resultList = [];
|
|
||||||
}
|
|
||||||
removeGoBackListener(this.close);
|
|
||||||
},
|
|
||||||
intervalShortValidate() {
|
|
||||||
if (this.getIntervalTime() < 3 * 60 * 1000) {
|
|
||||||
// return false;
|
|
||||||
this.$info(this.$t('schedule.cron_expression_interval_short_error'));
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
resultListChange() {
|
|
||||||
this.$refs['from'].validate();
|
|
||||||
},
|
|
||||||
getIntervalTime() {
|
|
||||||
let resultList = this.$refs.crontabResult.resultList;
|
|
||||||
let time1 = new Date(resultList[0]);
|
|
||||||
let time2 = new Date(resultList[1]);
|
|
||||||
return time2 - time1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
userList() {
|
||||||
|
this.result = this.$get('user/list', response => {
|
||||||
|
this.options = response.data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleClick() {
|
||||||
|
if (this.activeName == "second") {
|
||||||
|
this.result = this.$get('notice/query/' + this.testId, response => {
|
||||||
|
if (response.data.length > 0) {
|
||||||
|
this.tableData = response.data
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
buildParam() {
|
||||||
|
let param = {};
|
||||||
|
param.notices = this.tableData
|
||||||
|
param.testId = this.testId
|
||||||
|
return param;
|
||||||
|
},
|
||||||
|
open() {
|
||||||
|
this.dialogVisible = true;
|
||||||
|
this.form.cronValue = this.schedule.value;
|
||||||
|
listenGoBack(this.close);
|
||||||
|
this.handleClick()
|
||||||
|
this.activeName = 'first'
|
||||||
|
},
|
||||||
|
crontabFill(value, resultList) {
|
||||||
|
//确定后回传的值
|
||||||
|
this.form.cronValue = value;
|
||||||
|
this.$refs.crontabResult.resultList = resultList;
|
||||||
|
this.$refs['from'].validate();
|
||||||
|
},
|
||||||
|
showCronDialog() {
|
||||||
|
this.showCron = true;
|
||||||
|
},
|
||||||
|
saveCron() {
|
||||||
|
this.$refs['from'].validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
this.intervalShortValidate();
|
||||||
|
this.save(this.form.cronValue);
|
||||||
|
this.dialogVisible = false;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
saveNotice() {
|
||||||
|
let param = this.buildParam();
|
||||||
|
this.result = this.$post("notice/save", param, () => {
|
||||||
|
this.$success(this.$t('commons.save_success'));
|
||||||
|
})
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.dialogVisible = false;
|
||||||
|
this.form.cronValue = '';
|
||||||
|
this.$refs['from'].resetFields();
|
||||||
|
if (!this.schedule.value) {
|
||||||
|
this.$refs.crontabResult.resultList = [];
|
||||||
|
}
|
||||||
|
removeGoBackListener(this.close);
|
||||||
|
},
|
||||||
|
intervalShortValidate() {
|
||||||
|
if (this.getIntervalTime() < 3 * 60 * 1000) {
|
||||||
|
// return false;
|
||||||
|
this.$info(this.$t('schedule.cron_expression_interval_short_error'));
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
resultListChange() {
|
||||||
|
this.$refs['from'].validate();
|
||||||
|
},
|
||||||
|
getIntervalTime() {
|
||||||
|
let resultList = this.$refs.crontabResult.resultList;
|
||||||
|
let time1 = new Date(resultList[0]);
|
||||||
|
let time2 = new Date(resultList[1]);
|
||||||
|
return time2 - time1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.inp {
|
.inp {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-form-item {
|
.el-form-item {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -29,17 +29,6 @@
|
||||||
|
|
||||||
<el-col :span="12" class="head-right">
|
<el-col :span="12" class="head-right">
|
||||||
|
|
||||||
<span class="head-right-tip" v-if="index + 1 === testCases.length">
|
|
||||||
{{ $t('test_track.plan_view.pre_case') }} : {{
|
|
||||||
testCases[index - 1] ? testCases[index - 1].name : ''
|
|
||||||
}}
|
|
||||||
</span>
|
|
||||||
<span class="head-right-tip" v-if="index + 1 !== testCases.length">
|
|
||||||
{{ $t('test_track.plan_view.next_case') }} : {{
|
|
||||||
testCases[index + 1] ? testCases[index + 1].name : ''
|
|
||||||
}}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<el-button plain size="mini" icon="el-icon-arrow-up"
|
<el-button plain size="mini" icon="el-icon-arrow-up"
|
||||||
:disabled="index + 1 <= 1"
|
:disabled="index + 1 <= 1"
|
||||||
@click="handlePre()"/>
|
@click="handlePre()"/>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0368a1888936d4ae75554e5341509379982e243c
|
Subproject commit 06d935cd1d22ab36f09763745c2aff8ad3fb08c1
|
Loading…
Reference in New Issue