mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
190 lines
6.4 KiB
Vue
190 lines
6.4 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :inline="true" :model="searchFormData" class="demo-form-inline" size="mini">
|
|
<el-form-item label="serviceId">
|
|
<el-input v-model="searchFormData.serviceId" :clearable="true" placeholder="serviceId" style="width: 250px;" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" @click="onSearchTable">查询</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-table
|
|
:data="tableData"
|
|
style="width: 100%;margin-bottom: 20px;"
|
|
border
|
|
row-key="id"
|
|
>
|
|
<el-table-column
|
|
prop="serviceId"
|
|
label="服务名称"
|
|
width="200"
|
|
>
|
|
<template slot-scope="scope">
|
|
<span v-html="renderServiceName(scope.row)"></span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="ipPort"
|
|
label="IP端口"
|
|
width="250"
|
|
/>
|
|
<el-table-column
|
|
prop="metadata"
|
|
label="当前环境"
|
|
width="100"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="scope.row.parentId > 0 && scope.row.metadata.env === 'pre'" type="warning">预发布</el-tag>
|
|
<el-tag v-if="scope.row.parentId > 0 && scope.row.metadata.env === 'gray'" type="info">灰度</el-tag>
|
|
<el-tag v-if="scope.row.parentId > 0 && !scope.row.metadata.env" type="success">线上</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="metadata"
|
|
label="metadata"
|
|
width="250"
|
|
>
|
|
<template slot-scope="scope">
|
|
<span v-if="scope.row.parentId > 0">{{ JSON.stringify(scope.row.metadata) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="status"
|
|
label="服务状态"
|
|
width="100"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="scope.row.parentId > 0 && scope.row.status === 'UP'" type="success">已启用</el-tag>
|
|
<el-tag v-if="scope.row.parentId > 0 && scope.row.status === 'STARTING'" type="info">正在启动</el-tag>
|
|
<el-tag v-if="scope.row.parentId > 0 && scope.row.status === 'UNKNOWN'">未知</el-tag>
|
|
<el-tag v-if="scope.row.parentId > 0 && (scope.row.status === 'OUT_OF_SERVICE' || scope.row.status === 'DOWN')" type="danger">已禁用</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="updateTime"
|
|
label="最后更新时间"
|
|
width="160"
|
|
/>
|
|
<el-table-column
|
|
label="操作"
|
|
width="200"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-button v-if="scope.row.parentId > 0 && scope.row.metadata.env" type="text" size="mini" @click="onEnvOnline(scope.row)">上线</el-button>
|
|
<el-button v-if="scope.row.parentId > 0 && !scope.row.metadata.env" type="text" size="mini" @click="onEnvPre(scope.row)">预发布</el-button>
|
|
<el-button v-if="scope.row.parentId > 0 && !scope.row.metadata.env" type="text" size="mini" @click="onEnvGray(scope.row)">灰度发布</el-button>
|
|
<el-button v-if="scope.row.parentId > 0 && scope.row.status === 'UP'" type="text" size="mini" @click="onDisable(scope.row)">禁用</el-button>
|
|
<el-button v-if="scope.row.parentId > 0 && scope.row.status === 'OUT_OF_SERVICE'" type="text" size="mini" @click="onEnable(scope.row)">启用</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
searchFormData: {
|
|
serviceId: ''
|
|
},
|
|
tableData: []
|
|
}
|
|
},
|
|
created() {
|
|
this.loadTable()
|
|
},
|
|
methods: {
|
|
loadTable: function() {
|
|
this.post('service.instance.list', this.searchFormData, function(resp) {
|
|
this.tableData = this.buildTreeData(resp.data)
|
|
})
|
|
},
|
|
buildTreeData: function(data) {
|
|
data.forEach(ele => {
|
|
const parentId = ele.parentId
|
|
if (parentId === 0) {
|
|
// 是根元素 ,不做任何操作,如果是正常的for-i循环,可以直接continue.
|
|
} else {
|
|
// 如果ele是子元素的话 ,把ele扔到他的父亲的child数组中.
|
|
data.forEach(d => {
|
|
if (d.id === parentId) {
|
|
let childArray = d.children
|
|
if (!childArray) {
|
|
childArray = []
|
|
}
|
|
childArray.push(ele)
|
|
d.children = childArray
|
|
}
|
|
})
|
|
}
|
|
})
|
|
// 去除重复元素
|
|
data = data.filter(ele => ele.parentId === 0)
|
|
return data
|
|
},
|
|
onSearchTable: function() {
|
|
this.loadTable()
|
|
},
|
|
onDisable: function(row) {
|
|
this.confirm('确定要禁用【' + row.serviceId + '】吗?', function(done) {
|
|
this.post('service.instance.offline', row, function() {
|
|
this.tip('下线成功')
|
|
done()
|
|
})
|
|
})
|
|
},
|
|
onEnable: function(row) {
|
|
this.confirm('确定要启用【' + row.serviceId + '】吗?', function(done) {
|
|
this.post('service.instance.online', row, function() {
|
|
this.tip('上线成功')
|
|
done()
|
|
})
|
|
})
|
|
},
|
|
onEnvOnline: function(row) {
|
|
this.confirm('确定要上线【' + row.serviceId + '】吗?', function(done) {
|
|
this.post('service.instance.env.online', row, function() {
|
|
this.tip('上线成功')
|
|
done()
|
|
})
|
|
})
|
|
},
|
|
onEnvPre: function(row) {
|
|
this.confirm('确定要预发布【' + row.serviceId + '】吗?', function(done) {
|
|
this.post('service.instance.env.pre', row, function() {
|
|
this.tip('预发布成功')
|
|
done()
|
|
})
|
|
})
|
|
},
|
|
onEnvGray: function(row) {
|
|
this.confirm('确定要灰度发布【' + row.serviceId + '】吗?', function(done) {
|
|
this.post('service.instance.env.gray', row, function() {
|
|
this.tip('灰度发布发成功')
|
|
done()
|
|
})
|
|
})
|
|
},
|
|
renderServiceName: function(row) {
|
|
let instanceCount = ''
|
|
if (row.children && row.children.length > 0) {
|
|
const onlineCount = row.children.filter(el => {
|
|
return el.status === 'UP'
|
|
}).length
|
|
instanceCount = ` (${onlineCount}/${row.children.length})`
|
|
}
|
|
return row.serviceId + instanceCount
|
|
},
|
|
renderMetadata: function(row) {
|
|
const metadata = row.metadata
|
|
const html = []
|
|
for (const key in metadata) {
|
|
html.push(key + '=' + metadata[key])
|
|
}
|
|
return html.join('<br />')
|
|
}
|
|
}
|
|
}
|
|
</script>
|