fix: 测试计划的定时任务,下次执行时间不是实时的问题;系统设置-批量添加用户到工作空间添加角色功能优化
测试计划的定时任务,下次执行时间不是实时的问题;系统设置-批量添加用户到工作空间添加角色功能优化
This commit is contained in:
parent
524259dc5e
commit
70d15e2ee1
|
@ -1,5 +1,6 @@
|
|||
<template>
|
||||
<el-dialog :close-on-click-modal="false" width="60%" class="schedule-edit" :visible.sync="dialogVisible" :append-to-body='true'
|
||||
<el-dialog :close-on-click-modal="false" width="60%" class="schedule-edit" :visible.sync="dialogVisible"
|
||||
:append-to-body='true'
|
||||
@close="close">
|
||||
<template>
|
||||
<div>
|
||||
|
@ -18,12 +19,10 @@
|
|||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<schedule-switch :schedule="schedule" @scheduleChange="scheduleChange"></schedule-switch>
|
||||
<schedule-switch :schedule="schedule" :corn-value="form.cronValue" @resultListChange="getExecuteTimeTemplate" @scheduleChange="scheduleChange"></schedule-switch>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
|
||||
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-link :disabled="isReadOnly" type="primary" @click="showCronDialog">
|
||||
|
@ -66,7 +65,13 @@ const noticeTemplate = requireComponent.keys().length > 0 ? requireComponent("./
|
|||
|
||||
export default {
|
||||
name: "MsScheduleMaintain",
|
||||
components: {CrontabResult, ScheduleSwitch,Crontab, MsScheduleNotification, "NoticeTemplate": noticeTemplate.default},
|
||||
components: {
|
||||
CrontabResult,
|
||||
ScheduleSwitch,
|
||||
Crontab,
|
||||
MsScheduleNotification,
|
||||
"NoticeTemplate": noticeTemplate.default
|
||||
},
|
||||
|
||||
props: {
|
||||
customValidate: {
|
||||
|
@ -111,7 +116,7 @@ export default {
|
|||
form: {
|
||||
cronValue: ""
|
||||
},
|
||||
paramRow:{},
|
||||
paramRow: {},
|
||||
activeName: 'first',
|
||||
rules: {
|
||||
cronValue: [{required: true, validator: validateCron, trigger: 'blur'}],
|
||||
|
@ -122,19 +127,19 @@ export default {
|
|||
currentUser: () => {
|
||||
return getCurrentUser();
|
||||
},
|
||||
scheduleChange(){
|
||||
scheduleChange() {
|
||||
let flag = this.schedule.enable;
|
||||
let param = {};
|
||||
param.taskID = this.schedule.id;
|
||||
param.enable = flag;
|
||||
let that = this;
|
||||
if(flag == false) {
|
||||
if (flag == false) {
|
||||
this.$confirm(this.$t('api_test.home_page.running_task_list.confirm.close_title'), this.$t('commons.prompt'), {
|
||||
confirmButtonText: this.$t('commons.confirm'),
|
||||
cancelButtonText: this.$t('commons.cancel'),
|
||||
type: 'warning',
|
||||
beforeClose(action, instance, done) {
|
||||
if(action == 'cancel') { // 否则在 messageBox 点击取消后,switch 按钮仍然会被关闭
|
||||
if (action == 'cancel') { // 否则在 messageBox 点击取消后,switch 按钮仍然会被关闭
|
||||
that.schedule.enable = param.enable = true;
|
||||
}
|
||||
done(); // done 是关闭 messageBox 的行为
|
||||
|
@ -143,12 +148,11 @@ export default {
|
|||
this.updateTask(param);
|
||||
}).catch(() => {
|
||||
});
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
this.updateTask(param);
|
||||
}
|
||||
},
|
||||
updateTask(param){
|
||||
updateTask(param) {
|
||||
this.result = this.$post('/api/schedule/updateEnableByPrimyKey', param, response => {
|
||||
let paramTestId = "";
|
||||
if (this.paramRow.redirectFrom == 'testPlan') {
|
||||
|
@ -203,7 +207,7 @@ export default {
|
|||
findSchedule() {
|
||||
var scheduleResourceID = this.testId;
|
||||
var taskType = this.scheduleTaskType;
|
||||
this.result = this.$get("/schedule/findOne/" + scheduleResourceID + "/" +taskType, response => {
|
||||
this.result = this.$get("/schedule/findOne/" + scheduleResourceID + "/" + taskType, response => {
|
||||
if (response.data != null) {
|
||||
this.schedule = response.data;
|
||||
} else {
|
||||
|
@ -240,14 +244,14 @@ export default {
|
|||
param = this.schedule;
|
||||
param.resourceId = this.testId;
|
||||
let url = '/api/automation/schedule/create';
|
||||
if(this.scheduleTaskType === "TEST_PLAN_TEST"){
|
||||
if (this.scheduleTaskType === "TEST_PLAN_TEST") {
|
||||
param.scheduleFrom = "testPlan";
|
||||
//测试计划页面跳转的创建
|
||||
url = '/schedule/create';
|
||||
if (param.id) {
|
||||
url = '/schedule/update';
|
||||
}
|
||||
}else {
|
||||
} else {
|
||||
param.scheduleFrom = "scenario";
|
||||
if (param.id) {
|
||||
url = '/api/automation/schedule/update';
|
||||
|
@ -297,7 +301,9 @@ export default {
|
|||
let time2 = new Date(resultList[1]);
|
||||
return time2 - time1;
|
||||
},
|
||||
|
||||
getExecuteTimeTemplate(executeTileArr){
|
||||
alert(executeTileArr);
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
isTesterPermission() {
|
||||
|
|
|
@ -5,8 +5,6 @@
|
|||
<i class="el-icon-date" size="small"></i>
|
||||
<span class="character">SCHEDULER</span>
|
||||
</span>
|
||||
<!-- <el-switch :disabled="!schedule.value || isReadOnly" v-model="schedule.enable" @change="scheduleChange"/>-->
|
||||
<!-- <el-switch :disabled="!schedule.value || isReadOnly" v-model="schedule.enable" />-->
|
||||
<el-switch :disabled="!schedule.value" v-model="schedule.enable" @change="scheduleChange"/>
|
||||
</div>
|
||||
<div>
|
||||
|
@ -14,7 +12,7 @@
|
|||
{{ $t('schedule.next_execution_time') }}:
|
||||
<span :class="{'disable-character': !schedule.enable}"
|
||||
v-if="!schedule.enable">{{ $t('schedule.not_set') }}</span>
|
||||
<crontab-result v-if="schedule.enable" :enable-simple-mode="true" :ex="schedule.value" ref="crontabResult"/>
|
||||
<crontab-result v-if="schedule.enable" :enable-simple-mode="true" :ex="cornValue" ref="crontabResult"/>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -33,6 +31,7 @@ export default {
|
|||
props: {
|
||||
testId: String,
|
||||
schedule: Object,
|
||||
cornValue:String,
|
||||
isReadOnly: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
|
|
|
@ -2,19 +2,24 @@
|
|||
<el-dialog class="user-casecader" :title="title" :visible.sync="dialogVisible"
|
||||
@close="close">
|
||||
<div class="block" >
|
||||
<!-- <el-row>-->
|
||||
<!-- <span class="demonstration" v-html="lable"></span>-->
|
||||
<!-- </el-row>-->
|
||||
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">
|
||||
<el-form-item prop="workspace" label-width="0px">
|
||||
<el-cascader
|
||||
:options="options"
|
||||
:props="props"
|
||||
v-model="selectedIds"
|
||||
ref="cascaderSelector"
|
||||
style="width:100%"
|
||||
:key="isResouceShow"
|
||||
clearable></el-cascader>
|
||||
<!-- <el-cascader-->
|
||||
<!-- :options="options"-->
|
||||
<!-- :props="props"-->
|
||||
<!-- v-model="selectedIds"-->
|
||||
<!-- ref="cascaderSelector"-->
|
||||
<!-- style="width:100%;"-->
|
||||
<!-- :key="isResouceShow"-->
|
||||
<!-- clearable></el-cascader>-->
|
||||
|
||||
<el-cascader-panel :options="options"
|
||||
:props="props"
|
||||
v-model="selectedIds"
|
||||
ref="cascaderSelector"
|
||||
style="width:100%;"
|
||||
:key="isResouceShow"
|
||||
clearable></el-cascader-panel>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
|
@ -37,7 +42,7 @@ export default {
|
|||
components: {ElUploadList, MsTableButton,MsDialogFooter},
|
||||
data() {
|
||||
var validateSelect = (rule, value, callback) => {
|
||||
let checkNodes = this.$refs.cascaderSelector.checkedNodes;
|
||||
let checkNodes = this.$refs.cascaderSelector.getCheckedNodes(true);
|
||||
if(checkNodes.length==0){
|
||||
callback(new Error(this.$t('workspace.select')));
|
||||
}
|
||||
|
@ -95,7 +100,7 @@ export default {
|
|||
confirm(){
|
||||
this.$refs.ruleForm.validate((valid) => {
|
||||
if (valid) {
|
||||
let checkNodes = this.$refs.cascaderSelector.checkedNodes;
|
||||
let checkNodes = this.$refs.cascaderSelector.getCheckedNodes(true);
|
||||
let selectValueArr = [];
|
||||
for (let i = 0; i < checkNodes.length; i++) {
|
||||
selectValueArr.push(checkNodes[i].value);
|
||||
|
@ -116,9 +121,19 @@ export default {
|
|||
<style scoped>
|
||||
|
||||
.user-casecader >>> .el-dialog {
|
||||
width: 400px;
|
||||
width: 600px;
|
||||
}
|
||||
/deep/ .el-form-item__content{
|
||||
margin-left: 0px;
|
||||
}
|
||||
/*.el-cascader-menu {*/
|
||||
/* height: 300px;*/
|
||||
/*}*/
|
||||
/*.el-cascader >>> .el-input--suffix {*/
|
||||
/* max-height: 200px;*/
|
||||
/*}*/
|
||||
/*.el-cascader >>> .el-cascader__tags {*/
|
||||
/* max-height: 190px;*/
|
||||
/* overflow: auto;*/
|
||||
/*}*/
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue