|
@@ -35,21 +35,21 @@
|
|
|
<div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)">
|
|
|
<div v-for="(item,index) in dataList" :key="index" @click.stop="handleClick(item,index)" :class="index == activeIndex ? 'active':''" class="contents flex">
|
|
|
<div class="left">
|
|
|
- <span :class="item.runState ? 'success' : 'error'" class="box"></span>
|
|
|
+ <span :class="item.deploystate ? 'success' : 'error'" class="box"></span>
|
|
|
<el-tooltip class="item" effect="dark" :content="item.deployNodeName" placement="top">
|
|
|
<span class="txt">{{ item.deployNodeName }}</span>
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
<div v-show="activeIndex == index" class="right">
|
|
|
- <!-- <template v-if="!flag && item.deployNodeID">
|
|
|
+ <template v-if="!flag && item.deployNodeID">
|
|
|
<template v-if="item.serviceType == 4">
|
|
|
- <span @click.stop="handleStart" v-if="!item.runState" class="start">启用</span>
|
|
|
+ <span @click.stop="handleStart" v-if="!item.deploystate" class="start">启用</span>
|
|
|
<span @click.stop="handleStop" v-else class="stop">停用</span>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<span @click.stop="handleRest(item)" class="rest">重置</span>
|
|
|
</template>
|
|
|
- </template> -->
|
|
|
+ </template>
|
|
|
<span @click.stop="handleError" class="error">删除</span>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -68,16 +68,24 @@
|
|
|
<el-button type="primary" @click="handleSave" :disabled="flag" class="bcButton" size="small">保存</el-button>
|
|
|
</div>
|
|
|
<div class="demo-form">
|
|
|
- <el-form :inline="true" :model="formInline" class="flex">
|
|
|
- <el-form-item label="机器名称">
|
|
|
- <el-input clearable v-model="formInline.deployNodeName" :disabled="activeIndex == null" size="small" placeholder="请输入服务名称"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="IP及端口">
|
|
|
- <el-input clearable v-model="formInline.serviceURL" :disabled="activeIndex == null" size="small" placeholder="请输入IP及端口"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="部署位置">
|
|
|
- <el-input clearable v-model="formInline.filepath" :disabled="activeIndex == null" size="small" placeholder="请输入部署位置"></el-input>
|
|
|
- </el-form-item>
|
|
|
+ <el-form label-width="70px" :model="formInline">
|
|
|
+ <el-row :gutter="40">
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="机器名称">
|
|
|
+ <el-input clearable v-model="formInline.deployNodeName" :disabled="activeIndex == null" size="small" placeholder="请输入服务名称"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="IP及端口">
|
|
|
+ <el-input clearable v-model="formInline.serviceURL" :disabled="activeIndex == null" size="small" placeholder="请输入IP及端口"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="部署位置">
|
|
|
+ <el-input clearable v-model="formInline.filepath" :disabled="activeIndex == null" size="small" placeholder="请输入部署位置"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
</div>
|