|
@@ -1,6 +1,6 @@
|
|
|
<!--
|
|
|
* @Date: 2022-03-24 09:55:13
|
|
|
- * @LastEditTime: 2022-04-28 10:33:02
|
|
|
+ * @LastEditTime: 2022-04-29 14:21:16
|
|
|
* @LastEditors: your name
|
|
|
* @Description: 服务管理-编辑服务
|
|
|
* have a nice day!
|
|
@@ -18,6 +18,7 @@
|
|
|
size="small"
|
|
|
type="primary"
|
|
|
class="btn-save"
|
|
|
+ @click="btnSaveClickHandler"
|
|
|
>保存</el-button>
|
|
|
</header>
|
|
|
<main class="content">
|
|
@@ -31,27 +32,27 @@
|
|
|
>
|
|
|
<el-form-item
|
|
|
label="服务名称"
|
|
|
- prop="name"
|
|
|
+ prop="serviceName"
|
|
|
>
|
|
|
<el-input
|
|
|
- v-model="serviceForm.name"
|
|
|
+ v-model="serviceForm.serviceName"
|
|
|
width="240px"
|
|
|
placeholder="请输入服务名称"
|
|
|
clearable
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="是否同步">
|
|
|
- <el-radio-group v-model="serviceForm.sync">
|
|
|
- <el-radio :label="1">是</el-radio>
|
|
|
- <el-radio :label="0">否</el-radio>
|
|
|
+ <el-radio-group v-model="serviceForm.isAsynchronous">
|
|
|
+ <el-radio :label="0">是</el-radio>
|
|
|
+ <el-radio :label="1">否</el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
|
label="服务描述"
|
|
|
- prop="desc"
|
|
|
+ prop="serviceDescribe"
|
|
|
>
|
|
|
<el-input
|
|
|
- v-model="serviceForm.desc"
|
|
|
+ v-model="serviceForm.serviceDescribe"
|
|
|
placeholder="请输入描述"
|
|
|
type="textarea"
|
|
|
:autosize="{ minRows: 5, maxRows: 5 }"
|
|
@@ -75,26 +76,26 @@
|
|
|
<div class="service-edit-card">
|
|
|
<div
|
|
|
class="card-btn-add"
|
|
|
- @click="showDialog('machine')"
|
|
|
+ @click="showOperateDialog('node')"
|
|
|
>
|
|
|
<i class="el-icon-plus" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col
|
|
|
- v-for="(machine, index) in checkedMachineList"
|
|
|
- :key="machine.id"
|
|
|
+ v-for="node in checkedNodeList"
|
|
|
+ :key="node.deployNodeID"
|
|
|
:span="8"
|
|
|
>
|
|
|
<div class="service-edit-card">
|
|
|
<div
|
|
|
class="card-btn-close"
|
|
|
- @click="removeItem(index, 'machine')"
|
|
|
+ @click="showDeleteDialog(node, 'node')"
|
|
|
>
|
|
|
<i class="el-icon-close" />
|
|
|
</div>
|
|
|
<div class="card-header">
|
|
|
- <span>{{ machine.machineName }}</span>
|
|
|
+ <span>{{ node.deployNodeName }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -119,24 +120,24 @@
|
|
|
>
|
|
|
<el-form-item
|
|
|
label="来源"
|
|
|
- prop="source"
|
|
|
+ prop="protocolID"
|
|
|
>
|
|
|
- <el-select v-model="inputForm.source">
|
|
|
+ <el-select v-model="inputForm.protocolID">
|
|
|
<el-option
|
|
|
- v-for="item in sourceOptions"
|
|
|
- :key="item.id"
|
|
|
- :value="item.value"
|
|
|
- :label="item.label"
|
|
|
+ v-for="protocol in protocolList"
|
|
|
+ :key="protocol.protocolID"
|
|
|
+ :value="protocol.protocolID"
|
|
|
+ :label="protocol.protocolName"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
|
label="并发线程数"
|
|
|
- prop="concurrent"
|
|
|
+ prop="threads"
|
|
|
label-width="86px"
|
|
|
>
|
|
|
<el-input
|
|
|
- v-model="inputForm.concurrent"
|
|
|
+ v-model="inputForm.threads"
|
|
|
width="166px"
|
|
|
placeholder="请输入并发线程数"
|
|
|
clearable
|
|
@@ -144,10 +145,10 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
|
label="来源配置"
|
|
|
- prop="config"
|
|
|
+ prop="connectConfig"
|
|
|
>
|
|
|
<el-input
|
|
|
- v-model="inputForm.config"
|
|
|
+ v-model="inputForm.connectConfig"
|
|
|
placeholder="请输入来源配置"
|
|
|
type="textarea"
|
|
|
:autosize="{ minRows: 4, maxRows: 4 }"
|
|
@@ -167,26 +168,26 @@
|
|
|
<div class="service-edit-card">
|
|
|
<div
|
|
|
class="card-btn-add"
|
|
|
- @click="showDialog('source')"
|
|
|
+ @click="showOperateDialog('source')"
|
|
|
>
|
|
|
<i class="el-icon-plus" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col
|
|
|
- v-for="item in checkedSourceList"
|
|
|
- :key="item.id"
|
|
|
+ v-for="source in checkedSourceList"
|
|
|
+ :key="source.sourceDataID"
|
|
|
:span="8"
|
|
|
>
|
|
|
<div class="service-edit-card">
|
|
|
<div
|
|
|
class="card-btn-close"
|
|
|
- @click="removeItem(index, 'source')"
|
|
|
+ @click="showDeleteDialog(source, 'source')"
|
|
|
>
|
|
|
<i class="el-icon-close" />
|
|
|
</div>
|
|
|
<div class="card-header">
|
|
|
- <span>{{ item.sourceName }}</span>
|
|
|
+ <span>{{ source.dataName }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -202,35 +203,40 @@
|
|
|
</header>
|
|
|
<main class="content">
|
|
|
<div class="scrollbar">
|
|
|
- <el-row :gutter="16">
|
|
|
- <el-col :span="8">
|
|
|
- <div class="service-edit-card">
|
|
|
- <div
|
|
|
- class="card-btn-add"
|
|
|
- @click="showDialog('process')"
|
|
|
- >
|
|
|
- <i class="el-icon-plus" />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- <el-col
|
|
|
- v-for="item in checkedProcessList"
|
|
|
- :key="item.id"
|
|
|
- :span="8"
|
|
|
- >
|
|
|
- <div class="service-edit-card">
|
|
|
- <div
|
|
|
- class="card-btn-close"
|
|
|
- @click="removeItem(index, 'process')"
|
|
|
- >
|
|
|
- <i class="el-icon-close" />
|
|
|
+ <template v-if="processList.length">
|
|
|
+ <el-row :gutter="16">
|
|
|
+ <el-col :span="8">
|
|
|
+ <div class="service-edit-card">
|
|
|
+ <div
|
|
|
+ class="card-btn-add"
|
|
|
+ @click="showOperateDialog('process')"
|
|
|
+ >
|
|
|
+ <i class="el-icon-plus" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div class="card-header">
|
|
|
- <span>{{ item.processName }}</span>
|
|
|
+ </el-col>
|
|
|
+ <el-col
|
|
|
+ v-for="process in checkedProcessList"
|
|
|
+ :key="process.id"
|
|
|
+ :span="8"
|
|
|
+ >
|
|
|
+ <div class="service-edit-card">
|
|
|
+ <div
|
|
|
+ class="card-btn-close"
|
|
|
+ @click="showDeleteDialog(process, 'process')"
|
|
|
+ >
|
|
|
+ <i class="el-icon-close" />
|
|
|
+ </div>
|
|
|
+ <div class="card-header">
|
|
|
+ <span>{{ process.processName }}</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <NoData />
|
|
|
+ </template>
|
|
|
</div>
|
|
|
</main>
|
|
|
</div>
|
|
@@ -243,37 +249,43 @@
|
|
|
size="small"
|
|
|
type="primary"
|
|
|
class="btn-white"
|
|
|
- @click="showDialog('output')"
|
|
|
+ @click="showOperateDialog('output')"
|
|
|
>新增</el-button>
|
|
|
</header>
|
|
|
<main class="content">
|
|
|
<div class="scrollbar">
|
|
|
<el-row :gutter="16">
|
|
|
<el-col
|
|
|
- v-for="(item, index) in targetList"
|
|
|
- :key="item.id"
|
|
|
+ v-for="outputTarget in outputList"
|
|
|
+ :key="outputTarget.serviceOutputID"
|
|
|
:span="24"
|
|
|
>
|
|
|
<div
|
|
|
class="service-edit-card"
|
|
|
style="height: 160px"
|
|
|
>
|
|
|
- <div class="card-btn-close" @click="removeOutputTarget(index)">
|
|
|
+ <div
|
|
|
+ class="card-btn-close"
|
|
|
+ @click="showDeleteDialog(outputTarget, 'output')"
|
|
|
+ >
|
|
|
<i class="el-icon-close" />
|
|
|
</div>
|
|
|
<div class="card-header">
|
|
|
- <span>{{ item.protocolType }}</span>
|
|
|
- <i class="icon-edit" @click="btnEditClickHandler(index, 'output')" />
|
|
|
+ <span>{{ outputTargetProtocolName(outputTarget.protocolID) }}</span>
|
|
|
+ <i
|
|
|
+ class="icon-edit"
|
|
|
+ @click="btnEditClickHandler(outputTarget, 'output')"
|
|
|
+ />
|
|
|
</div>
|
|
|
<div class="card-main">
|
|
|
<div class="flex">
|
|
|
<div class="left">目标配置:</div>
|
|
|
<div
|
|
|
class="multiple-ellipsis"
|
|
|
- :title="item.protocolConfig"
|
|
|
- >{{ item.protocolConfig }}</div>
|
|
|
+ :title="outputTarget.dataOutputConfig"
|
|
|
+ >{{ outputTarget.dataOutputConfig }}</div>
|
|
|
</div>
|
|
|
- <span>{{ item.targetData }}</span>
|
|
|
+ <span>{{ outputTargetDataName(outputTarget.targetdataID) }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -285,19 +297,19 @@
|
|
|
</el-row>
|
|
|
</div>
|
|
|
<Dialog
|
|
|
- :flag="dialogVisible"
|
|
|
+ :flag="operateDialogVisible"
|
|
|
width="500px"
|
|
|
>
|
|
|
- <template v-if="['machine', 'source', 'process'].includes(dialogContentType)">
|
|
|
+ <template v-if="['node', 'source', 'process'].includes(operateDialogType)">
|
|
|
<div class="dialog-checkbox">
|
|
|
- <div class="title">{{ getDataInMap(dialogContentType, 'title') }}</div>
|
|
|
+ <div class="title">{{ dataInMap(operateDialogType, 'title') }}</div>
|
|
|
<main class="content">
|
|
|
<el-checkbox-group v-model="tempCheckedKeys">
|
|
|
<el-checkbox
|
|
|
- v-for="item in getDataInMap(dialogContentType, 'list')"
|
|
|
- :key="item.id"
|
|
|
- :label="item[getDataInMap(dialogContentType, 'label')]"
|
|
|
- />
|
|
|
+ v-for="item in dataInMap(operateDialogType, 'list')"
|
|
|
+ :key="item[dataInMap(operateDialogType, 'key')]"
|
|
|
+ :label="item[dataInMap(operateDialogType, 'key')]"
|
|
|
+ >{{ item[dataInMap(operateDialogType, 'label')] }}</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</main>
|
|
|
<div class="foot">
|
|
@@ -305,17 +317,17 @@
|
|
|
size="medium"
|
|
|
type="primary"
|
|
|
class="r25 r26"
|
|
|
- @click="checkedSubmitHandler(dialogContentType)"
|
|
|
+ @click="checkedSubmitHandler"
|
|
|
>提交</el-button>
|
|
|
<el-button
|
|
|
size="medium"
|
|
|
class="r26"
|
|
|
- @click="closeDialog"
|
|
|
+ @click="hideOperateDialog"
|
|
|
>取消</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <template v-if="dialogContentType === 'output'">
|
|
|
+ <template v-if="operateDialogType === 'output'">
|
|
|
<div id="dialog-form">
|
|
|
<div class="title">数据输出编辑</div>
|
|
|
<main class="content">
|
|
@@ -329,23 +341,23 @@
|
|
|
>
|
|
|
<el-form-item
|
|
|
label="协议类型"
|
|
|
- prop="protocolType"
|
|
|
+ prop="protocolID"
|
|
|
>
|
|
|
- <el-select v-model="outputForm.protocolType">
|
|
|
+ <el-select v-model="outputForm.protocolID">
|
|
|
<el-option
|
|
|
- v-for="item in protocolTypeOptions"
|
|
|
- :key="item.id"
|
|
|
- :value="item.value"
|
|
|
- :label="item.label"
|
|
|
+ v-for="item in protocolList"
|
|
|
+ :key="item.protocolID"
|
|
|
+ :value="item.protocolID"
|
|
|
+ :label="item.protocolName"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
|
label="协议配置"
|
|
|
- prop="protocolConfig"
|
|
|
+ prop="dataOutputConfig"
|
|
|
>
|
|
|
<el-input
|
|
|
- v-model="outputForm.protocolConfig"
|
|
|
+ v-model="outputForm.dataOutputConfig"
|
|
|
type="textarea"
|
|
|
placeholder="请输入协议配置"
|
|
|
:autosize="{ minRows: 4, maxRows: 4 }"
|
|
@@ -355,14 +367,14 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
|
label="目标数据"
|
|
|
- prop="targetData"
|
|
|
+ prop="targetdataID"
|
|
|
>
|
|
|
- <el-select v-model="outputForm.targetData">
|
|
|
+ <el-select v-model="outputForm.targetdataID">
|
|
|
<el-option
|
|
|
- v-for="item in targetDataOptions"
|
|
|
- :key="item.id"
|
|
|
- :value="item.value"
|
|
|
- :label="item.label"
|
|
|
+ v-for="item in targetList"
|
|
|
+ :key="item.targetdataID"
|
|
|
+ :value="item.targetdataID"
|
|
|
+ :label="item.tdataName"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
@@ -391,238 +403,223 @@
|
|
|
<el-button
|
|
|
size="medium"
|
|
|
class="r26"
|
|
|
- @click="closeDialog"
|
|
|
+ @click="hideOperateDialog"
|
|
|
>取消</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</Dialog>
|
|
|
+ <!--删除弹框-->
|
|
|
+ <Dialog :flag="deleteDialogVisible">
|
|
|
+ <div class="dialog-delete">
|
|
|
+ <div class="del-title">删除{{ dataInMap(deleteDialogType, 'deleteTitle') }}</div>
|
|
|
+ <div class="content er">
|
|
|
+ <div class="log">
|
|
|
+ 你是否确认删除{{ delObj[dataInMap(deleteDialogType, 'label')] || '这一项' }}?
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="del-foot right t30">
|
|
|
+ <el-button
|
|
|
+ size="medium"
|
|
|
+ class="r25 r26"
|
|
|
+ type="danger"
|
|
|
+ @click="deleteSubmitHandler"
|
|
|
+ >删除</el-button>
|
|
|
+ <el-button
|
|
|
+ size="medium"
|
|
|
+ class="r26"
|
|
|
+ @click="hideDeleteDialog"
|
|
|
+ >取消</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </Dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import NoData from '@/components/nodata'
|
|
|
import Dialog from '@/layout/components/Dialog'
|
|
|
import query from './mixins/query'
|
|
|
+import operate from './mixins/operate'
|
|
|
|
|
|
const keyMap = {
|
|
|
- machine: {
|
|
|
+ node: {
|
|
|
title: '部署机器选择',
|
|
|
- list: 'machineList',
|
|
|
- checked: 'checkedMachineKeys',
|
|
|
- label: 'machineName'
|
|
|
+ deleteTitle: '机器',
|
|
|
+ key: 'deployNodeID',
|
|
|
+ label: 'deployNodeName',
|
|
|
+ list: 'nodeList',
|
|
|
+ checked: 'checkedNodeKeys',
|
|
|
+ operate: 'updateServiceNode'
|
|
|
},
|
|
|
source: {
|
|
|
title: '源数据',
|
|
|
+ deleteTitle: '源数据',
|
|
|
+ key: 'sourceDataID',
|
|
|
+ label: 'dataName',
|
|
|
list: 'sourceList',
|
|
|
checked: 'checkedSourceKeys',
|
|
|
- label: 'sourceName'
|
|
|
+ operate: 'updateServiceSource'
|
|
|
},
|
|
|
process: {
|
|
|
title: '数据处理',
|
|
|
+ deleteTitle: '数据处理流程',
|
|
|
+ key: 'processID',
|
|
|
+ label: 'processName',
|
|
|
list: 'processList',
|
|
|
checked: 'checkedProcessKeys',
|
|
|
- label: 'processName'
|
|
|
+ operate: 'updateServiceProcess'
|
|
|
+ },
|
|
|
+ output: {
|
|
|
+ deleteTitle: '输出目标',
|
|
|
+ key: 'serviceOutputID',
|
|
|
+ list: 'outputList',
|
|
|
+ operate: 'updateServiceOutput'
|
|
|
}
|
|
|
}
|
|
|
|
|
|
export default {
|
|
|
- components: { Dialog },
|
|
|
- mixins: [query],
|
|
|
+ components: { NoData, Dialog },
|
|
|
+ mixins: [query, operate],
|
|
|
data() {
|
|
|
return {
|
|
|
serviceID: this.$route.query.serviceID,
|
|
|
- dialogContentType: null,
|
|
|
+ operateDialogType: null,
|
|
|
+ delObj: {},
|
|
|
+ deleteDialogType: null,
|
|
|
tempCheckedKeys: [],
|
|
|
serviceForm: {
|
|
|
- name: '',
|
|
|
- sync: 1,
|
|
|
- desc: ''
|
|
|
+ serviceName: '',
|
|
|
+ isAsynchronous: null,
|
|
|
+ serviceDescribe: ''
|
|
|
},
|
|
|
inputForm: {
|
|
|
- source: '',
|
|
|
- concurrent: null,
|
|
|
- config: ''
|
|
|
+ protocolID: null,
|
|
|
+ threads: null,
|
|
|
+ connectConfig: ''
|
|
|
},
|
|
|
outputForm: {
|
|
|
- protocolType: null,
|
|
|
- protocolConfig: '',
|
|
|
- targetData: null,
|
|
|
+ protocolID: null,
|
|
|
+ dataOutputConfig: '',
|
|
|
+ targetdataID: null,
|
|
|
outputCondition: ''
|
|
|
},
|
|
|
- protocolTypeOptions: [
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- value: 'Kafka',
|
|
|
- label: 'Kafka'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- value: 'Mysql',
|
|
|
- label: 'Mysql'
|
|
|
- }
|
|
|
- ],
|
|
|
- targetDataOptions: [
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- value: 'BSM报文',
|
|
|
- label: 'BSM报文'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- value: 'BSM解析结果',
|
|
|
- label: 'BSM解析结果'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 2,
|
|
|
- value: '行李基础数据',
|
|
|
- label: '行李基础数据'
|
|
|
- }
|
|
|
- ],
|
|
|
- sourceOptions: [
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- value: 0,
|
|
|
- label: '来源1'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- value: 1,
|
|
|
- label: '来源2'
|
|
|
- }
|
|
|
- ],
|
|
|
- machineList: [
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- machineName: '主动采集服务器'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- machineName: '备用采集服务器'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 2,
|
|
|
- machineName: '解析服务器'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 3,
|
|
|
- machineName: '存储服务器'
|
|
|
- }
|
|
|
- ],
|
|
|
- checkedMachineKeys: [],
|
|
|
- sourceList: [
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- sourceName: 'BSM',
|
|
|
- desc: '行李源报文'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- sourceName: 'BPM',
|
|
|
- desc: '行李处理报文'
|
|
|
- }
|
|
|
- ],
|
|
|
+ targetList: [],
|
|
|
+ protocolList: [],
|
|
|
+ nodeList: [],
|
|
|
+ checkedNodeKeys: [],
|
|
|
+ sourceList: [],
|
|
|
checkedSourceKeys: [],
|
|
|
- processList: [
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- processName: '数据包合法性检测'
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- processName: '数据解析'
|
|
|
- }
|
|
|
- ],
|
|
|
+ processList: [],
|
|
|
checkedProcessKeys: [],
|
|
|
- targetList: [
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- protocolType: 'Kafka',
|
|
|
- protocolConfig:
|
|
|
- '"bootstrap.servers": "192.168.3.74:9092","key.serializer": "org.apache.kafka.common.serialization.StringSerializer","value.serializerXXXXXXXXXXXXXXXXXXXXXXX',
|
|
|
- targetData: 'BSM报文',
|
|
|
- outputCondition: ''
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- protocolType: 'Kafka',
|
|
|
- protocolConfig:
|
|
|
- '"bootstrap.servers": "192.168.3.74:9092","key.serializer": "org.apache.kafka.common.serialization.StringSerializer","value.serializerXXXXXXXXXXXXXXXXXXXXXXX',
|
|
|
- targetData: 'BSM解析结果',
|
|
|
- outputCondition: ''
|
|
|
- },
|
|
|
- {
|
|
|
- id: 2,
|
|
|
- protocolType: 'Mysql',
|
|
|
- protocolConfig:
|
|
|
- '"bootstrap.servers": "192.168.3.74:9092","key.serializer": "org.apache.kafka.common.serialization.StringSerializer","value.serializerXXXXXXXXXXXXXXXXXXXXXXX',
|
|
|
- targetData: '行李基础数据',
|
|
|
- outputCondition: ''
|
|
|
- }
|
|
|
- ]
|
|
|
+ outputList: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
- dialogVisible() {
|
|
|
- return Boolean(this.dialogContentType)
|
|
|
+ dataInMap() {
|
|
|
+ return function (type, keyType) {
|
|
|
+ if (type === null) {
|
|
|
+ return null
|
|
|
+ }
|
|
|
+ if (['title', 'deleteTitle', 'key', 'label'].includes(keyType)) {
|
|
|
+ return keyMap[type][keyType]
|
|
|
+ } else {
|
|
|
+ return this[keyMap[type][keyType]]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ operateDialogVisible() {
|
|
|
+ return Boolean(this.operateDialogType)
|
|
|
},
|
|
|
- checkedMachineList() {
|
|
|
- return this.machineList.filter(item => this.checkedMachineKeys.includes(item.machineName))
|
|
|
+ deleteDialogVisible() {
|
|
|
+ return Boolean(this.deleteDialogType)
|
|
|
+ },
|
|
|
+ checkedNodeList() {
|
|
|
+ return this.nodeList.filter(item => this.checkedNodeKeys.includes(item.deployNodeID))
|
|
|
},
|
|
|
checkedSourceList() {
|
|
|
- return this.sourceList.filter(item => this.checkedSourceKeys.includes(item.sourceName))
|
|
|
+ return this.sourceList.filter(item => this.checkedSourceKeys.includes(item.sourceDataID))
|
|
|
},
|
|
|
checkedProcessList() {
|
|
|
return this.processList.filter(item => this.checkedProcessKeys.includes(item.processName))
|
|
|
+ },
|
|
|
+ outputTargetProtocolName() {
|
|
|
+ return function (protocolID) {
|
|
|
+ return this.protocolList.find(protocol => protocol.protocolID === protocolID).protocolName
|
|
|
+ }
|
|
|
+ },
|
|
|
+ outputTargetDataName() {
|
|
|
+ return function (targetdataID) {
|
|
|
+ return this.targetList.find(target => target.targetdataID === targetdataID).tdataName
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- getDataInMap(type, keyType) {
|
|
|
- if (['title', 'label'].includes(keyType)) {
|
|
|
- return keyMap[type][keyType]
|
|
|
- } else {
|
|
|
- return this[keyMap[type][keyType]]
|
|
|
- }
|
|
|
+ async btnSaveClickHandler() {
|
|
|
+ this.$refs['serviceForm'].validate(valid => {
|
|
|
+ if (!valid) return
|
|
|
+ })
|
|
|
+ this.$refs['inputForm'].validate(valid => {
|
|
|
+ if (!valid) return
|
|
|
+ })
|
|
|
+ await this.updateService()
|
|
|
+ this.queryAll()
|
|
|
},
|
|
|
- showDialog(type) {
|
|
|
- if (Object.keys(keyMap).includes(type)) {
|
|
|
- this.tempCheckedKeys = [...this[keyMap[type]['checked']]]
|
|
|
+ showOperateDialog(type) {
|
|
|
+ if (['node', 'source', 'process'].includes(type)) {
|
|
|
+ this.tempCheckedKeys = [...this.dataInMap(type, 'checked')]
|
|
|
}
|
|
|
- this.dialogContentType = type
|
|
|
+ this.operateDialogType = type
|
|
|
},
|
|
|
- btnEditClickHandler(index, type) {
|
|
|
- if (type === 'output') {
|
|
|
- Object.entries(this.targetList[index]).forEach(arr => {
|
|
|
- const [key, value] = arr
|
|
|
- this.outputForm[key] = value
|
|
|
- })
|
|
|
- }
|
|
|
- this.showDialog(type)
|
|
|
+ btnEditClickHandler(obj, type) {
|
|
|
+ Object.entries(obj).forEach(arr => {
|
|
|
+ const [key, value] = arr
|
|
|
+ this.outputForm[key] = value
|
|
|
+ })
|
|
|
+ this.showOperateDialog(type)
|
|
|
},
|
|
|
- checkedSubmitHandler() {
|
|
|
- this[keyMap[this.dialogContentType]['checked']] = [...this.tempCheckedKeys]
|
|
|
- this.closeDialog()
|
|
|
+ async checkedSubmitHandler() {
|
|
|
+ const addKeys = this.tempCheckedKeys.filter(
|
|
|
+ key => !this.dataInMap(this.operateDialogType, 'checked').includes(key)
|
|
|
+ )
|
|
|
+ const removeKeys = this.dataInMap(this.operateDialogType, 'checked').filter(
|
|
|
+ key => !this.tempCheckedKeys.includes(key)
|
|
|
+ )
|
|
|
+ const createArr = addKeys.map(key => this.dataInMap(this.operateDialogType, 'operate')('create', key))
|
|
|
+ const deleteArr = removeKeys.map(key => this.dataInMap(this.operateDialogType, 'operate')('delete', key))
|
|
|
+ try {
|
|
|
+ await Promise.all([...createArr, ...deleteArr])
|
|
|
+ this.$message.success('成功')
|
|
|
+ this.queryAll()
|
|
|
+ this.hideOperateDialog()
|
|
|
+ } catch (error) {
|
|
|
+ this.$message.error(error)
|
|
|
+ }
|
|
|
},
|
|
|
- outputSubmitHandler() {
|
|
|
- const target = {
|
|
|
+ async outputSubmitHandler() {
|
|
|
+ const outputTarget = {
|
|
|
...this.outputForm
|
|
|
}
|
|
|
- if (typeof target.id === 'undefined') {
|
|
|
- target.id = this.targetList.at(-1).id + 1
|
|
|
- this.targetList.push(target)
|
|
|
+ if (outputTarget.serviceOutputID) {
|
|
|
+ await this.updateServiceOutput('update', outputTarget)
|
|
|
} else {
|
|
|
- const index = this.targetList.findIndex(element => element.id === target.id)
|
|
|
- this.targetList[index] = target
|
|
|
+ await this.updateServiceOutput('create', outputTarget)
|
|
|
}
|
|
|
- this.closeDialog()
|
|
|
+ this.queryAll()
|
|
|
+ this.hideOperateDialog()
|
|
|
},
|
|
|
- closeDialog() {
|
|
|
- this.dialogContentType = null
|
|
|
+ hideOperateDialog() {
|
|
|
+ this.operateDialogType = null
|
|
|
},
|
|
|
- removeItem(index, type) {
|
|
|
- this[keyMap[type]['checked']].splice(index, 1)
|
|
|
+ showDeleteDialog(obj, type) {
|
|
|
+ this.delObj = obj
|
|
|
+ this.deleteDialogType = type
|
|
|
},
|
|
|
- removeOutputTarget(index) {
|
|
|
- this.targetList.splice(index, 1)
|
|
|
+ deleteSubmitHandler() {
|
|
|
+ this.dataInMap(this.deleteDialogType, 'operate')('delete', this.delObj)
|
|
|
+ },
|
|
|
+ hideDeleteDialog() {
|
|
|
+ this.deleteDialogType = null
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -706,7 +703,7 @@ export default {
|
|
|
height: calc(100% - 32px - 24px);
|
|
|
}
|
|
|
&.second-content {
|
|
|
- height: calc(100% - 297px)
|
|
|
+ height: calc(100% - 297px);
|
|
|
}
|
|
|
> .scrollbar {
|
|
|
margin: -12px -24px 0 0;
|
|
@@ -846,10 +843,13 @@ export default {
|
|
|
.dialog-checkbox {
|
|
|
.content {
|
|
|
margin-left: 16px;
|
|
|
- .el-checkbox {
|
|
|
- margin-bottom: 24px;
|
|
|
- font-family: Helvetica, Microsoft YaHei;
|
|
|
- color: #303133;
|
|
|
+ .el-checkbox-group {
|
|
|
+ margin-right: 24px;
|
|
|
+ .el-checkbox {
|
|
|
+ margin-bottom: 24px;
|
|
|
+ font-family: Helvetica, Microsoft YaHei;
|
|
|
+ color: #303133;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|