|
@@ -76,14 +76,16 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="机器ID">
|
|
|
- <el-input clearable v-model="formInline.workId" :disabled="activeIndex == null" size="small" placeholder="请输入机器ID"></el-input>
|
|
|
+ <el-select :disabled="activeIndex == null" clearable size="small" v-model="formInline.workId" placeholder="请选择机器ID">
|
|
|
+ <el-option v-for="(item,index) in jqList" :key="index" :label="item.deployNodeName" :value="`${item.deployNodeID}`"></el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<div v-if="formInline.serviceType == 4" class="cj-form">
|
|
|
<div class="title">采集配置</div>
|
|
|
<el-form class="flex" style="flex-wrap: wrap;justify-content: flex-start;" :inline="true" :model="formInline">
|
|
|
- <el-form-item label="采集类型" style="margin-left: 50px;">
|
|
|
+ <el-form-item label="采集类型">
|
|
|
<el-select clearable size="small" style="width: 175px;" v-model="formInline.taskType" placeholder="请选择采集类型">
|
|
|
<el-option label="CRON表达式" :value="0"></el-option>
|
|
|
<el-option label="轮询方式" :value="1"></el-option>
|
|
@@ -97,7 +99,12 @@
|
|
|
<el-input clearable style="width:170px" v-model="formInline.frequencyCount" size="small" placeholder="请输入采集频率"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="频率单位" style="margin-left: 50px;">
|
|
|
- <el-input clearable style="width:170px" v-model="formInline.frequencyUnit" size="small" placeholder="请输入频率单位"></el-input>
|
|
|
+ <el-select clearable size="small" style="width: 175px;" v-model="formInline.frequencyUnit" placeholder="请选择频率单位">
|
|
|
+ <el-option label="毫秒" :value="1"></el-option>
|
|
|
+ <el-option label="秒" :value="1000"></el-option>
|
|
|
+ <el-option label="分钟" :value="60000"></el-option>
|
|
|
+ <el-option label="小时" :value="3600000"></el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
<template v-else-if="formInline.taskType == 0">
|
|
@@ -105,16 +112,16 @@
|
|
|
<el-input clearable style="width:300px" v-model="formInline.cronExpress" size="small" placeholder="请输入CRON表达式"></el-input>
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
- <el-form-item label="有效时间" prop="startTime" style="margin-left: 50px;">
|
|
|
+ <el-form-item label="有效时间" prop="startTime" :style="formInline.taskType ? 'margin-left: 0px':'50px'">
|
|
|
<el-date-picker size="small" style="width: 175px;" v-model="formInline.taskValid" type="datetime" format="yyyy-MM-dd HH:mm" value-format="yyyy-MM-dd HH:mm" placeholder="有效时间" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="失效时间" prop="stopTime" style="margin-left: 50px;">
|
|
|
+ <el-form-item label="失效时间" prop="stopTime" :style="formInline.taskType ? 'margin-left: 50px':'50px'">
|
|
|
<el-date-picker size="small" style="width: 175px;" v-model="formInline.taskInvalid" type="datetime" format="yyyy-MM-dd HH:mm" value-format="yyyy-MM-dd HH:mm" placeholder="有效时间" />
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div :style="formInline.serviceType != 4 ? 'height: calc(100% - 180px);':'height: calc(100% - 260px);'" class="newService-content-right-bottom">
|
|
|
+ <div :style="formInline.serviceType != 4 ? 'height: calc(100% - 180px);':'height: calc(100% - 305px);'" class="newService-content-right-bottom">
|
|
|
<Table :dataId="dataId" :dataContent="msgContent" width="860px" tableHeight="calc(100% - 30px)" dataTitle="算法配置" />
|
|
|
</div>
|
|
|
</div>
|
|
@@ -167,7 +174,8 @@ export default {
|
|
|
noMore: false,
|
|
|
loading: false,
|
|
|
dataId: 8,
|
|
|
- msgContent: {}
|
|
|
+ msgContent: {},
|
|
|
+ jqList: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -180,6 +188,7 @@ export default {
|
|
|
this.title = title
|
|
|
this.queryId = qid
|
|
|
this.getQuery(qid)
|
|
|
+ this.getMsgList(SERVICE_ID.getJqId)
|
|
|
},
|
|
|
updated () {
|
|
|
this.scrollDown()
|
|
@@ -220,6 +229,21 @@ export default {
|
|
|
this.loading = false;
|
|
|
}
|
|
|
},
|
|
|
+ async getMsgList (id) {
|
|
|
+ try {
|
|
|
+ const { code, returnData } = await Query({
|
|
|
+ serviceId: id,
|
|
|
+ page: 1,
|
|
|
+ pageSize: 99,
|
|
|
+ dataContent: {},
|
|
|
+ })
|
|
|
+ if (code == 0) {
|
|
|
+ this.jqList = returnData
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ this.jqList = []
|
|
|
+ }
|
|
|
+ },
|
|
|
load () {
|
|
|
if (!this.noMore) {
|
|
|
this.getQuery(this.queryId);
|